kosta1987 10 Posted February 25, 2014 I am currently modifying the GRAA MOD for my own personal usage but one thing that bugs me that I cant find anywhere else is that when tanks are destroyed there is a fire and smoke which I like but the burning smoke is way too high i want to lower the height of the smoke but what part of the config file does it show how to lower the smoke? Share this post Link to post Share on other sites
-rageQuit- 10 Posted February 27, 2014 One of the toggles (at the top of the GRAA config) is ENABLE_BURNING_VEH. Search for this and you will see that it adds an EventHandler to class LandVehicle : #ifdef ENABLE_BURNING_VEH class EventHandlers { killed="_this select 0 exec {\sanc_fx\burnn.sqs}"; }; #endif Thus when a vehicle is killed it runs the script burnn.sqs in the pbo in the GRAA Addons folder sanc_fx.pbo. You'd have to open the pbo and edit the script, which uses the Drop command. While it's still available, see Vektorboson's Drop Tutorial at OFPEC. It's not something I understand. Share this post Link to post Share on other sites