note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
OnPlayerLeavePlayerGangZone
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Description
This callback is called when a player exited a player gangzone.
Name | Description |
---|---|
playerid | The ID of the player that exited the player gangzone. |
zoneid | The ID of the player gangzone the player exited. |
Returns
It is always called first in gamemode.
Examples
public OnPlayerLeavePlayerGangZone(playerid, zoneid)
{
new string[128];
format(string, sizeof(string), "You are leaving player gangzone %i", zoneid);
SendClientMessage(playerid, 0xFFFFFFFF, string);
return 1;
}
Related Callbacks
The following callbacks might be useful, as they're related to this callback in one way or another.
- OnPlayerEnterPlayerGangZone: This callback is called when a player exited a player gangzone.
Related Functions
The following functions might be useful, as they're related to this callback in one way or another.
- CreatePlayerGangZone: Create player gangzone.
- PlayerGangZoneDestroy: Destroy player gangzone.
- UsePlayerGangZoneCheck: Enables the callback when a player exited this zone.