PDA

View Full Version : Far Cry 2 aiming



sMikePL
06-03-2009, 03:38 PM
Hello,
I got a question, is there any way to change aiming in the game to toggle??
Thanks

sMikePL
06-03-2009, 03:38 PM
Hello,
I got a question, is there any way to change aiming in the game to toggle??
Thanks

gerg.nad
03-05-2010, 12:53 PM
Autohotkey can be used to toggle you ironsites. You can get the program here
http://download.cnet.com/AutoH...79446.html?tag=mncol

Once this is installed just create a new script file for yourself and copy and paste the following commands into it.


WinWait, Far Cry 2,
IfWinNotActive, Far Cry 2, , WinActivate, Far Cry 2,
WinWaitActive, Far Cry 2,
*LSHIFT::
GetKeyState, state, LSHIFT
if state = D
{
sleep 250
Send {LSHIFT UP}
}
else
{
sleep 250
Send {LSHIFT Down}
}
return



So this makes the Left Shift key Toggle the sights. You can change it to any key just by changing that parameter in the script.

Once you have created this script file double click on it and run the game. Once the game is running the script will work.

Also you may need to change the sleep (wait or delay time), depending on your computer performance. You will know to adjust the sleep miliseconds of the sleep parameter by whether it gets stuck in one position or not.

A little far to go for such a simple feature, but I know for me its less trouble playing the game without cramping up my fingers too much. I may now even map Iron Sights to a diffent key now that I can toggle it. Just remember to change autohotkey scrip as well.