08.08.2010, 18:05
i know there is a /destroycar...but you have to be in the car for it to be gone...is there a command where say your specing a player it will destroy the car there in while you spec them?
if(IsPlayerInAnyVehicle(targetid))
{
new tvid = GetPlayerVehicleID(targetid);
DestroyVehicle(tvid);
}
hhmm wouldnt you have to integrate that with /destroycar to get it to work?
|
if(IsPlayerInAnyVehicle(targetid))
{
DestroyVehicle(GetPlayerVehicleID(targetid));
}