10.04.2012, 13:51
Troque seu comando /destruirveiculos por este :
Espero ter ajudado .
pawn Код:
if(strcmp(cmd, "/destruirveiculos", true) == 0)
{
if(PlayerInfo[playerid][pAdmin] < 1338) return SendClientMessage(playerid, COLOR_GRAD1, " Voce nao tem permissao para usar esse comando!");
for(new x = 0; x < sizeof(CreatedCars); x++)
{
if(!CreatedCars[x]) break;
DestroyVehicle(CreatedCars[x]);
CreatedCars[x] = 0;
}
CreatedCar = 0;
SendClientMessage(playerid, COLOR_GREY, " Todos os veнculos criados foram destruнdos!");
return 1;
}
Espero ter ajudado .