20.07.2013, 08:32
Where is GangZoneShowForAll located? I would recommend you put it under OnPlayerSpawn, or use GangZoneShowForPlayer.
Example:
Or:
EDIT: Otherwise show us some of your code so we can figure out how to overcome this problem.
Example:
pawn Код:
public OnPlayerSpawn(playerid)
{
GangZoneShowForAll(gangzone, color);
return 1;
}
pawn Код:
public OnPlayerSpawn(playerid)
{
GangZoneShowForPlayer(playerid, gangzone, color);
return 1;
}

