GangZoneShowForPlayer
Description:
Function GangZoneShowForPlayer show a gangzone for a player. Must be created with GangZoneCreate first.
Parameters:
(playerid, zone, color)
int | playerid | The ID of the player you would like to show the gangzone for. |
int | zone | The ID of the gang zone to show for the player. Returned by GangZoneCreate. |
int | color | The color to show the gang zone, as an integer or hex in RGBA color format. Alpha transparency supported. |
Return Values:
1 if the gangzone was shown, otherwise 0 (non-existant).
Examples:
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.
Related Callbacks
The following callbacks might be useful as well, as they are related to this callback in one way or another.
- GangZoneCreate: Create a gangzone.
- GangZoneDestroy: Destroy a gangzone.
- GangZoneShowForAll: Show a gangzone for all players.
- 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.