07.12.2014, 21:50
Can U Make this command to delete Empty Cars Only please?
+REP FOR HELPER
+REP FOR HELPER
pawn Код:
COMMAND:deletecars(playerid, params[])
{
if (playerid == -1) SendClientMessageToAll(0xFFFFFFFF, "Cars Removed");
{
for( new veh; veh < MAX_VEHICLES; veh ++ )
{
DestroyVehicle( veh );
}
return 1;
}
}