15.04.2011, 23:29
He probably wants to use this script I just made
pawn Код:
stock IsPlayerIn2DArea(playerid, Float:fMin_Y, Float:fMax_Y, Float:fMin_Y, Float:fMax_Y) // Written by Admantis
{
new Float:fX, Float:fY;
if (fX > fMin_X && fX < fMax_X && fY > fMin_Y && fY < fMax_Y)
return true;
return false;
}