hellstorm77 2 Posted August 31, 2013 I was wondering if there is away to disable Thermal Imaging on vehicles? Share this post Link to post Share on other sites
bangabob 45 Posted August 31, 2013 Yes. Stick this in the vehicle init THIS disableTIEquipment true; Share this post Link to post Share on other sites
hellstorm77 2 Posted August 31, 2013 thanks it worked Share this post Link to post Share on other sites
BL1P 35 Posted September 1, 2013 Is there a way to globally disable all thermals in a mission ? like script created vehicles and weapons. Maybe something we can place in the init.sqf or the description.ext ? Share this post Link to post Share on other sites
Coding 12 Posted September 1, 2013 { _x disableTIEquipment true; } forEach vehilces; if vehicles are spawned during mission try this: spawn { while {true} do { { _x disableTIEquipment true; } forEach vehilces; sleep 10; }; }; Share this post Link to post Share on other sites
BL1P 35 Posted September 1, 2013 Thanks coding that works great adding it to the script that creates the vehicle . was just hoping there was one global command that disabled all thermals. just in case a repair script re-adds the thermals or some other unforeseen thing re adds it. ---------- Post added at 11:04 AM ---------- Previous post was at 10:08 AM ---------- Also is there a way to turn off thermals on all weapons and Items ? Share this post Link to post Share on other sites
max power 21 Posted September 2, 2013 removeallweapons this; http://community.bistudio.com/wiki/Scripting_Commands_by_Functionality Share this post Link to post Share on other sites
BL1P 35 Posted September 3, 2013 removeallweapons this;http://community.bistudio.com/wiki/Scripting_Commands_by_Functionality ? how would removing the weapon its self help with removing the thermal optics option on that weapon ? Share this post Link to post Share on other sites
das attorney 858 Posted September 3, 2013 You can't disable TI on infantry weapons ATM in Arma - you have to remove the weapon or create a mod and alter the configs. Share this post Link to post Share on other sites
max power 21 Posted September 3, 2013 ? how would removing the weapon its self help with removing the thermal optics option on that weapon ? You're correct. I misread the question. Share this post Link to post Share on other sites