Jump to content
Sign in to follow this  
hellstorm77

Thermal Imaging

Recommended Posts

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

{
   _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

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

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
? 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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×