GangZoneHideForPlayer

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 00:31, 30 December 2009
Mikep (Talk | contribs)
(Color)
← Previous diff
Current revision
Connor Mead (Talk | contribs)

Line 1: Line 1:
{{Scripting}} {{Scripting}}
-{{Title}} 
{{Description|Hides a gangzone for a player.}} {{Description|Hides a gangzone for a player.}}
Line 44: Line 43:
[[Category:Scripting Functions]] [[Category:Scripting Functions]]
 +
 +[[fr:GangZoneHideForPlayer]]

Current revision



Description:

Hides a gangzone for a player.


Parameters:
(playerid, zone)
playeridThe ID of the player to hide the gangzone for.
zoneThe ID of the zone to hide.


Return Values:

This function does not return any specific values.


new gangzone;
 
public OnGameModeInit()
{
    gangzone = GangZoneCreate(1248.011, 2072.804, 1439.348, 2204.319);
    return 1;
}
 
public OnPlayerSpawn(playerid)
{
    GangZoneShowForPlayer(playerid, gangzone, 0xFF0000FF);
    return 1;
}
 
public OnPlayerDeath(playerid, killerid, reason)
{
    GangZoneHideForPlayer(playerid,gangzone);
    return 1;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

In other languages