GangZoneFlashForAll

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 21:52, 29 December 2009
Mikep (Talk | contribs)

← Previous diff
Revision as of 22:16, 4 February 2014
Connor Mead (Talk | contribs)

Next diff →
Line 1: Line 1:
{{Scripting}} {{Scripting}}
-{{Title}} 
{{Description|GangZoneFlashForAll flashes a gangzone for all players.}} {{Description|GangZoneFlashForAll flashes a gangzone for all players.}}
Line 38: Line 37:
[[Category:Scripting Functions]] [[Category:Scripting Functions]]
 +
 +[[fr:GangZoneFlashForAll]]

Revision as of 22:16, 4 February 2014



Description:

GangZoneFlashForAll flashes a gangzone for all players.


Parameters:
(zone, flashcolor)
zoneThe zone to flash.
flashcolorThe color the zone will flash.


Return Values:

This function does not return any specific values.


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;
}

Related Functions

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

In other languages