06/01/2023 13:36
(Esta mensagem foi modificada pela última vez a: 06/01/2023 13:37 por MarcosBrazz.)
Sim, aqui tem elas ja criadas.
Código PHP:
stock IsPlayerInLS(playerid)
{
new Float:xls,Float:yls,Float:zls;
GetPlayerPos(playerid,xls,yls,zls);
if(xls > 0 && yls < 0) return 1;
return 0;
}
stock IsPlayerInSF(playerid)
{
new Float:xls,Float:yls,Float:zls;
GetPlayerPos(playerid,xls,yls,zls);
if(xls < 0) return 1;
return 0;
}
stock IsPlayerInLV(playerid)
{
new Float:xls,Float:yls,Float:zls;
GetPlayerPos(playerid,xls,yls,zls);
if(xls > 0 && yls > 0) return 1;
return 0;
}