GangZoneStopFlashForPlayer

GangZoneStopFlashForPlayer

Description:
Function GangZoneStopFlashForPlayer stops a gangzone flashing for a player.


Parameters:
(playerid, zone)
int playerid The ID of the player to stop the gangzone flashing for.
int zone The ID of the gangzonezone to stop flashing.


Return Values:
This function does not return any specific values.


Examples:
new gangzone;
 
public OnGameModeInit()
{
    gangzone = GangZoneCreate(1248.011, 2072.804, 1439.348, 2204.319);
    return 1;
}
 
public OnPlayerSpawn(playerid)
{
    GangZoneFlashForPlayer(playerid, gangzone, COLOR_RED);
    return 1;
}
 
public OnPlayerEnterVehicle(playerid, vehicleid)
{
    GangZoneStopFlashForPlayer(playerid, gangzone);
    return 1;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.