GangZoneStopFlashForAll

From SA-MP Wiki

Jump to: navigation, search

GangZoneStopFlashForAll


GangZoneStopFlashForAll stops a gangzone flashing for all players.


Parameters:
(zone)
zoneThe zone to stop from flashing.


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 OnPlayerDeath(playerid, killerid, reason)
{
    GangZoneFlashForAll(gangzone, COLOR_RED);
    return 1;
}
 
public OnPlayerSpawn(playerid)
{
    GangZoneStopFlashForAll(gangzone);
    return 1;
}

Related Functions

The following functions might be useful as well, as they're related to this function in one way or another.

Personal tools