08.12.2014, 00:42
You'll need the math plugin. Get it from here: https://sampforum.blast.hk/showthread.php?tid=270508.
pawn Код:
COMMAND:deletecars(playerid, params[])
{
for(new i = 1; i < MAX_VEHICLES; i ++)
if(MPGetVehicleDriverCount(i) == 0) DestroyVehicle(i);
return 1;
}

