Aller au contenu principal

GangZoneDestroy

Description

Destroy a gangzone.

NameDescription
zoneidThe ID of the zone to destroy.

Returns

1: The function executed successfully.

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

Examples

new gangZone;

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

public OnGameModeExit()
{
GangZoneDestroy(gangZone);
return 1;
}