10.08.2010, 19:32
Ok, Here is my gang zone. It works perfect. Goes right over the spot i need it to over.
This is my IsPlayerInArea. It's the same cords as my gang zone except i put it in the format max x and min x and max y and min y.
Can someone please help
pawn Code:
gangzone = GangZoneCreate(1830.3060, -2460.9521, 1883.3285, -2406.4404);
Can someone please help
pawn Code:
forward CheckLSVSArea();
SetTimer("CheckLSVSArea",3000,1);
public CheckLSVSArea()
{
for(new i; i < MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i)) continue;
if(IsPlayerInArea(i,1883.3285,1830.3060,-2406.4404,-2460.9521))
{
SendClientMessage(i,0x1E90FFAA, "NOOB");
}
}
return 1;
}