06.06.2009, 20:19
Oh my GOOOOODDDDD! IsPlayerInArea is driving me crazyy!
Look what I am doing:
But IsPlayerInArea Always say: * You need to be at the planting area!
My IsPlayerInArea
Look what I am doing:
Код:
if(!IsPlayerInArea(playerid, -70.06725, -186.846, 105.1009, -11.67788)) return SendClientMessage(playerid,COLOR_RED,"* You need to be at the planting area!");
My IsPlayerInArea
Код:
stock IsPlayerInArea(playerid, Float:max_x, Float:min_x, Float:max_y, Float:min_y) { new Float:X, Float:Y, Float:Z; GetPlayerPos(playerid, X, Y, Z); if(X <= max_x && X >= min_x && Y <= max_y && Y >= min_y) return 1; return 0; }