09.11.2010, 20:46
This should work:
pawn Код:
new inarea = false;
for(new I;I<10;I++)
{
if(IsPlayerInRangeOfPoint(playerid,5.0,Thing[I][X],Thing[I][Y],Thing[I][Z]);
{
if(Somethihg)
{
Some stuff here
}
else return SendClientmessage(playerid,COLOR,TExt);
inarea = true;
}
else return SendClientmessage(playerid,COLOR,TExt);
}
if(!inarea) SendClientMessage(...);
return 1;

