Skip to main content

GangZoneShowForPlayer

คำอธิบาย

Show a gangzone for a player. Must be created with GangZoneCreate first.

NameDescription
playeridThe ID of the player you would like to show the gangzone for..
zoneThe ID of the gang zone to show for the player. Returned by GangZoneCreate
colorThe color to show the gang zone, as an integer or hex in RGBA color format. Alpha transparency supported.

ส่งคืน

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

ตัวอย่าง

new Zone;

public OnGameModeInit()
{
Zone = GangZoneCreate(1082.962, -2787.229, 2942.549, -1859.51);
return 1;
}

public OnPlayerSpawn(playerid)
{
GangZoneShowForPlayer(playerid, Zone, 0xFFFF0096);
return 1;
}

ฟังก์ชั่นที่เกี่ยวข้องกัน