GangZoneShowForAll
From SA-MP Wiki
GangZoneShowForAll
GangZoneShowForAll shows a gangzone with the desired color to all players.
(zone, color)
| zone | The gangzone to show. |
| color | The color of the gangzone. |
This function does not return a specific value.
new gangzone; public OnGameModeInit() { gangzone = GangZoneCreate(1248.011, 2072.804, 1439.348, 2204.319); return 1; } public OnPlayerSpawn(playerid) { if(IsPlayerAdmin(playerid)) GangZoneShowForAll(gangzone,COLOR_RED); 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.
- GangZoneShowForPlayer: Show a gangzone for a player.
- GangZoneHideForPlayer: Hide a gangzone for a player.
- GangZoneHideForAll: Hide a gangzone for all players.
- GangZoneFlashForPlayer: Make a gangzone flash for a player.
- GangZoneFlashForAll: Make a gangzone flash for all players.
- GangZoneStopFlashForPlayer: Stop a gangzone flashing for a player.
- GangZoneStopFlashForAll: Stop a gangzone flashing for all players.
