SA-MP Forums Archive
Popped tires - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Popped tires (/showthread.php?tid=573279)



Popped tires - TittyMcSwag - 06.05.2015

I remember there was a function for the damage status of a vehicle. Any ways of spawning a vehicle with popped tires?


Re: Popped tires - PowerPC603 - 06.05.2015

pawn Код:
new vid, panels, doors, lights, tires;

vid = CreateVehicle(...);
GetVehicleDamageStatus(vid, panels, doors, lights, tires);
UpdateVehicleDamageStatus(vid, panels, doors, lights, 15);



Re: Popped tires - TittyMcSwag - 06.05.2015

Ah, alright man. Thanks!