kocrachon 2 Posted May 27, 2015 Hello All, Basically, I have a vehicle that I want to spawn as a wreck already. However, when I set the health to 0, when it spawns it blows up in game. The problem with this, is it kills the units near it. I wan't to simulate an ambushed convoy. Also, is it possible to spawn a "crater" under them to make it seem like an IED went off? I know there is a wrecks category but they either A) Don't have the vehicle I want, or B) They look like they are old and rusted rather than a fresh wreck. Share this post Link to post Share on other sites
fight9 14 Posted May 27, 2015 http://killzonekid.com/arma-scripting-tutorials-how-to-make-a-wreck/ dont know about the crater Share this post Link to post Share on other sites
Greenfist 1863 Posted May 27, 2015 (edited) How deadly is it if you remove all ammo and fuel? Or use allowdamage false to units nearby? Could you kill it somewhere else and then setpos it to correct place? There's also at least 2 crater objects you might be able to create; CraterLong & CraterLong_small Edited May 27, 2015 by Greenfist Share this post Link to post Share on other sites
dscha 147 Posted May 27, 2015 Might be that usefull?: _Veh = cursorTarget; _Part = "HitBody", "HitEngine", "HitFuel", "HitLFWheel", "HitRFWheel", "HitLF2Wheel", "HitRF2Wheel" (choose one for an example) _Dmg = 1; _Veh setHitPointDamage [_Part,_Dmg]; Share this post Link to post Share on other sites
filamod 3 Posted May 27, 2015 this setDamage 1; this enableSimulation false; and for craters try to spawn it (CraterLong_small, CraterLong) Share this post Link to post Share on other sites