15.05.2015, 12:37
this is on my gamemode
PHP код:
if(strcmp(cmd, "/respawnallcars", true) == 0 || strcmp(cmd, "/rac", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pAdmin] <= 6)
{
SendClientMessage(playerid, COLOR_GREEN, "Error: You are not authorized to use this command.");
return 1;
}
for(new i;i<MAX_VEHICLES;i++)
{
if(IsUnusedVehicle(i) && IsVehicleConnected(i) && OwnedMashin[i] == 0 && OwnedMashin_2[i] == 0) SetVehicleToRespawn(i);
}
format(string,256,"All Vehicles Respawned By Owner %s",PINFO[playerid][pName]);
AdminWarn(string);
}
return 1;
}