20.02.2011, 15:38
Quote:
I have created some Gang Zones
Code:
GangZoneCreate(1533.380615, -2408.402587, 1685.380615, -2264.402587); I don't understand GangZoneShowForAll |
pawn Code:
new gangzone;
public OnGameModeInit()
{
gangzone = GangZoneCreate(1533.380615, -2408.402587, 1685.380615, -2264.402587);
return 1;
}
public OnPlayerSpawn(playerid)
{
GangZoneShowForPlayer(playerid, gangzone, 0xFFFF0096);// This is only for player.
GangZoneShowForAll(gangzone,0xFFFF0096);// This is for all.
return 1;
}