GangZoneShowForPlayer

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 12:56, 24 January 2014
Smithy (Talk | contribs)

← Previous diff
Revision as of 22:06, 4 February 2014
Connor Mead (Talk | contribs)

Next diff →
Line 40: Line 40:
[[es:GangZoneShowForPlayer]] [[es:GangZoneShowForPlayer]]
 +[[fr:GangZoneShowForPlayer]]

Revision as of 22:06, 4 February 2014



Description:

Show a gangzone for a player. Must be created with GangZoneCreate first.


Parameters:
(playerid, zone, color)
playeridThe ID of the player you would like to show the gangzone for..
zoneThe ID of the gang zone to show for the player. Returned by GangZoneCreate
colorThe color to show the gang zone as. Alpha transparency supported.


Return Values:

1 if the gangzone was shown, otherwise 0 (non-existant).


new Zone;
 
public OnGameModeInit()
{
    Zone = GangZoneCreate(1082.962, -2787.229, 2942.549, -1859.51);
    return 1;
}
 
public OnPlayerSpawn(playerid)
{
    GangZoneShowForPlayer(playerid, Zone, 0xFFFF0096);
    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