20.08.2009, 10:23
Interesting, as you keep lying
This is what you posted
apparently "your" code name is IsPlayerInArea, and not PlayerInAreaCheck as you say, you are just contradictory yourself.
This is what you posted
pawn Код:
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;
}