انتقل إلى المحتوى الرئيسي

GangZoneFlashForAll

Description

Flashes a gangzone for all players.

NameDescription
zoneidThe zone to flash.
flashColourThe color to flash the gang zone, as an integer or hex in RGBA color format. Alpha transparency supported.

Returns

This function does not return any specific values.

Examples

new gGangZoneId;

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

public OnPlayerDeath(playerid, killerid, WEAPON:reason)
{
GangZoneFlashForAll(gGangZoneId, 0xFF0000FF); // Red
return 1;
}