Respawn all cars
#2

@Up,
why do you need new one, if you currectly have already?

BTW. I do not think, that there is any plugin, which will allow You to respawn vehicles.
You need code, like this that you've posted:

pawn Код:
if(strcmp(cmd, "/respawnallcars", true) == 0 || strcmp(cmd, "/rac", true) == 0)
{

if(PlayerInfo[playerid][pAdmin] <= 2000)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vous n'кtes pas autorisez a utilisй cette commande!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "[BC] Tous les vйhicules inutilisй ont йtй respawn par %s.", sendername);
SendClientMessageToAll(COLOR_WHITE,string);
new bool:unwanted[CAR_AMOUNT];
for(new player=0; player<MAX_PLAYERS; player++)
{
if(IsPlayerInAnyVehicle(player))
{ unwanted[GetPlayerVehicleID(player)]=true; }
}
for(new car = 1; car <= MAX_VEHICULES; car++)
{
if(!unwanted[car]){SetVehicleToRespawn(car);}
}
return 1;
}
// Edit.

I am wondering about this
pawn Код:
car <= MAX_VEHICULES
If you've not defined MAX_VEHICLUES, place instead
pawn Код:
MAX_VEHICLES
.

Everything should be OK with this.
Reply


Messages In This Thread
Respawn all cars - by SydonaiCZ - 13.07.2011, 09:36
Re: Respawn all cars - by LetsOWN[PL] - 13.07.2011, 09:40
Re: Respawn all cars - by [MG]Dimi - 13.07.2011, 09:55

Forum Jump:


Users browsing this thread: 1 Guest(s)