Jump to content
Sign in to follow this  
Apouh

FLIR v1.0

Recommended Posts

its a good addon..but i couldnt see properly any more than about 100meters, and when your in an AH1Z you need to be a little further away from that, past 100 meters (aroundabouts) it all become just a white mixture and nothing could be made out clearly.

has this or will it be fixed?

Share this post


Link to post
Share on other sites
Not sure if its been asked, But does this work on the Longbow ?

nope :( you can edit a file to get it working on the longbow but I ran into problems when zooming in.

Share this post


Link to post
Share on other sites

I was playing around with this mod yesterday, and I found that aside from the mapped A, E, and R keys, no other keyboard inputs (i.e., pause, zoom, etc.) will work. I unpacked the .pbo to take a look and found that a few lines will fix this issue. The keyEventD function can be modified as follows (NOTE: I only included what needs to be added/changed with its placement in the function as opposed to the entire function):

keyEventD =

{

private ["_handled",...

_handled = false;

...

switch (_KeyCode) do

{

case Apu_Flir_key_rev:

{

...

_handled = true;

};

case Apu_Flir_key_inc:

{

...

_handled = true;

};

case Apu_Flir_key_dec:

{

...

_handled = true;

};

};

_handled;

};

This way any keyboard input that is not FLIR-specific will be handled in the default manner.

Adam

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  

×