09.11.2012, 17:19
Lets say player see car left on middle of road and he /dl to check the vehicle id (no need to enter the vehicle ) then you can destroy/respawn if you wont here a little code
pawn Код:
CMD:destroy(playerid,params[])
{
new vehicleid;
if (sscanf(params, "d",vehicleid)) return SendClientMessage(playerid, -1, "Usage: /destroy [vehicleid]");
DestroyVehicle(vehicleid);
return 1;
}