GangZoneShowForAll

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 19:44, 18 April 2013
Smithy (Talk | contribs)

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

Next diff →
Line 1: Line 1:
{{Scripting}} {{Scripting}}
-{{Title}} 
{{Description|GangZoneShowForAll shows a gangzone with the desired color to all players.}} {{Description|GangZoneShowForAll shows a gangzone with the desired color to all players.}}
Line 39: Line 38:
[[Category:Scripting Functions]] [[Category:Scripting Functions]]
 +
 +[[fr:GangZoneShowForAll]]

Revision as of 22:14, 4 February 2014



Description:

GangZoneShowForAll shows a gangzone with the desired color to all players.


Parameters:
(zone, color)
zoneThe ID of the gangzone to show (returned by GangZoneCreate).
colorThe color of the gangzone.


Return Values:

1 if the gangzone was shown, otherwise 0 (non-existant).


new gangzone;
 
public OnGameModeInit()
{
    gangzone = GangZoneCreate(1248.011, 2072.804, 1439.348, 2204.319);
    return 1;
}
 
public OnPlayerSpawn(playerid)
{
    if(IsPlayerAdmin(playerid)) GangZoneShowForAll(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