13.07.2011, 09:40
@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:
// Edit.
I am wondering about this
If you've not defined MAX_VEHICLUES, place instead
.
Everything should be OK with this.
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;
}
I am wondering about this
pawn Код:
car <= MAX_VEHICULES
pawn Код:
MAX_VEHICLES
Everything should be OK with this.