Lewati ke konten utama

GangZoneShowForAll

Description

Shows a gangzone with the desired color to all players.

NameDescription
zoneidThe ID of the gangzone to show (returned by GangZoneCreate).
colourThe color to show the gang zone, as an integer or hex in RGBA color format. Alpha transparency supported.

Returns

1: The function executed successfully. The gang zone was shown for all players.

0: The function failed to execute. The gangzone does not exist.

Examples

new gGangZoneId;

public OnGameModeInit()
{
gGangZoneId = GangZoneCreate(1248.011, 2072.804, 1439.348, 2204.319);
return 1;
}

public OnPlayerSpawn(playerid)
{
if (IsPlayerAdmin(playerid))
{
GangZoneShowForAll(gGangZoneId, 0xFF0000FF);
}
return 1;
}