15.04.2019, 09:49
Hi, how can I make the CMD to respawn unoccupied vehicles in a radius?
RespawnNearbyVehicles(playerid, Float:radi) {
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
for(new i = 1; i < MAX_VEHICLES; i++) {
if(GetVehicleModel(i)) {
new Float:posx, Float:posy, Float:posz;
new Float:tempposx, Float:tempposy, Float:tempposz;
GetVehiclePos(i, posx, posy, posz);
tempposx = (posx - x);
tempposy = (posy - y);
tempposz = (posz - z);
if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi))) {
SetVehicleToRespawn(i);
}
}
}
}
// Implement the rest of the code. For now everyone can use the command.
CMD:respawnnearbyvehicles(playerid, params[]) {
for(new i = 0; i < MAX_VEHICLES; i++) {
RespawnNearbyVehicles(playerid, 10); // Edit the radius if its not appropriate.
}
return 1;
}