Ugrás a fő tartalomhoz

GangZoneHideForPlayer

Description

Hides a gangzone for a player.

NameDescription
playeridThe ID of the player to hide the gangzone for.
zoneidThe ID of the zone to hide.

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 OnPlayerSpawn(playerid)
{
GangZoneShowForPlayer(playerid, gGangZoneId, 0xFF0000FF);
return 1;
}

public OnPlayerDeath(playerid, killerid, WEAPON:reason)
{
GangZoneHideForPlayer(playerid, gGangZoneId);
return 1;
}