GangZoneShowForPlayer
From SA-MP Wiki
GangZoneShowForPlayer
This function can be used to show a GangZone to a player.
(playerid, zone, color)
| playerid | The playerid you would like to show it to. |
| zone | The gang zone you would like to show. |
| color | The color it should be in. Should be in hex format. |
This function does not return a specific value, it's best to simply ignore it.
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 might be useful as well, as they're related to this function in one way or another.
- GangZoneCreate: Create a GangZone
- GangZoneDestroy: Destroy a GangZone.
- GangZoneShowForAll: Show a GangZone to all players.
- GangZoneHideForPlayer: Hide a GangZone for a player.
- GangZoneHideForAll: Hide a GangZone for all players.
- GangZoneFlashForPlayer: Make the GangZone flash for a player.
- GangZoneFlashForAll: Make the GangZone flash for all players.
- GangZoneStopFlashForPlayer: Make the GangZone stop flashing for a player.
- GangZoneStopFlashForAll: Make the GangZone stop flashing for all players.
