Lewati ke konten utama

PlayerGangZoneFlash

peringatan

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Start player gangzone flash.

NameDescription
playeridThe ID of the player to whom player gangzone is bound.
zoneidThe ID of the player gangzone for in start flashing.
flashColourThe colour by which the player gangzone will be flashing.

Returns

1: The function executed successfully. Success is reported even if the player gangzone was flashing to begin with.

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

Examples

// This variable is used to store the id of the gangzone
// so that we can use it throught the script
new gGangZoneID[MAX_PLAYERS] = {INVALID_GANG_ZONE, ...};

public OnPlayerConnect(playerid)
{
// Create the gangzone
gGangZoneID[playerid] = CreatePlayerGangZone(playerid, 2236.1475, 2424.7266, 2319.1636, 2502.4348);

// Show the gangzone player
PlayerGangZoneShow(playerid, gGangZoneID[playerid]);

// Start player gangzone flash
PlayerGangZoneFlash(playerid, gGangZoneID[playerid], 0xFF00FFFF);
}