12.01.2018, 16:54
Fixed
Thanks
PHP код:
CMD:respawnallcars(playerid, params[])
{
new string[128];
new vehicleid = GetPlayerVehicleID(playerid);
if (PlayerInfo[playerid][pAdmin] < 3) return SendClientMessageEx(playerid, COLOR_GRAD1, "You are not authorized to use that command.");
{
for(new i = 1, j = GetVehicleModel(vehicleid); i <= j; i++) // vehicleids start at 1
{
SetVehicleToRespawn(i);
format(string, sizeof(string), "You have respawned vehicle ID %d.", i);
SendClientMessageEx(playerid, COLOR_GREY, string);
}
}
return 1;
}

