06/01/2023 20:30
Tente com essas, acredito que sejam mais precisas:
Essas e as outras foram retiradas da internet.
Código PHP:
static stock IsPlayerInSF(playerid)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
if(x >= -2954.502 && y >= -3012.892 && x <= -957.5858 && y <= 1436.379) return 1;
else return 0;
}
static stock IsPlayerInLS(playerid)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
if(x >= -922.5522 && y >= -2791.012 && x <= 2954.502 && y <= 385.3699) return 1;
else return 0;
}
static stock IsPlayerInLV(playerid)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
if(x >= -1307.922 && y >= 490.4708 && x <= 2977.858 && y <= 3153.026) return 1;
else return 0;
}