22.01.2011, 14:37
Troque sua stock por esta:
Espero ter ajudado
pawn Код:
stock IsPlayerInArea(playerid, Float:minx, Float:miny, Float:maxx, Float:maxy)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
if(x >= minx && y >= miny && x <= maxx && y <= maxy) return true;
else return false;
}
