CMD:destroyncars(playerid, params[]){ #pragma unused params new count = 0; for(new i = 0; i < MAX_VEHICLES; i++) { if(NormalCar[i] == 1) DestroyVehicle(i); } if(!count) return SendClientMessage(playerid, COLOR_RED, "There Are No Vehicles To Delete."); return 1;}