19.12.2018, 18:11
Use:
Exemplo de como usar:
PHP код:
stock IsPlayerInPlace(playerid, Float:XMin, Float:YMin, Float:XMax, Float:YMax)
{
new
RetValue = 0,
Float:aX,
Float:aY,
Float:aZ
;
GetPlayerPos(playerid, aX, aY, aZ);
if(aX >= XMin && aY >= YMin && aX < XMax && aY < YMax)
{
RetValue = 1;
}
return RetValue;
}
PHP код:
IsPlayerInCacador(playerid)
{
if(IsPlayerInPlace(playerid, -1714.84375, -2298.828125, -1638.671875, -2146.484375))
return true;
else
return false;
}