05/02/2021 18:05
(05/02/2021 12:08)xbruno1000x Escreveu:Poderia me dar um exemplo, de como usar ele em um comando? Tentei aqui, mas n obtive sucesso!Código:ProximoVehicle(playerid, Float:range)
{
new Float:Pos[3];
for(new v; v != MAX_VEHICLES; ++v)
{
GetVehiclePos(v, Pos[0], Pos[1], Pos[2]);
if(IsPlayerInRangeOfPoint(playerid, range, Pos[0], Pos[1], Pos[2]))
return true;
}
return false;
}