Izhevsk 11 Posted September 24, 2015 Does anyone know how to turn on the ballistics tracing like you see in the virtual arsenal? I want to test out the 14.5mm KPVT on the BTRs from the RHS mod. I searched around and could only find some vague user made script that didn't make any sense. I have no clue how to script. I'm just looking for an option or addon or something, or the official BIS thing that traces each bullet path. Thank you! Share this post Link to post Share on other sites
Greenfist 1863 Posted September 24, 2015 It's the traceBullets function. You can execute it from the console or by adding it to the unit's init for example. 0 = [player, 20] spawn BIS_fnc_traceBullets; Share this post Link to post Share on other sites
Izhevsk 11 Posted September 25, 2015 It's the traceBullets function. You can execute it from the console or by adding it to the unit's init for example. 0 = [player, 20] spawn BIS_fnc_traceBullets; AHA! Thank you very much! That's exactly what I was looking for! Sadly, it only seems to work with handheld weapons, not vehicle guns or static weapons. Really wanted to see the penetration of that wicked 14.5mm round :( Share this post Link to post Share on other sites
Greenfist 1863 Posted September 25, 2015 If you want it on vehicle weapons, I think you need to add the actual vehicle in the function. Like, place an empty tank on map and name it 'tank1'. Then execute: 0 = [tank1, 20] spawn BIS_fnc_traceBullets; Then just get in the gunner seat and start shooting. Share this post Link to post Share on other sites