I've got auto walk working on my G15, just record the forward key then stop recording it with out lifting off from the forward key. So in the keys window mine jsut has 'W' listed. To stop from autowalk i press W twice.
I've got auto walk working on my G15, just record the forward key then stop recording it with out lifting off from the forward key. So in the keys window mine jsut has 'W' listed. To stop from autowalk i press W twice.
actually this is a health issue with serious social repercusions. think about it, all that time spent pressing forward with the middle finger is gonna cause an imbalance of muscle build-up. the only way to balance it out of course, is an equal amount of time fully extending ones middle finger. the interpersonal conflicts brought to a players real life from this situation could be more devastating then a crack addiction. its time for a petition.
on a side note, is that lisa hunter in the bottom left corner of the face smack image?
Last edited by Rancmeat; Aug 9 2009 at 08:22.
Oblivion has auto walk....
How do I make my backwards key both work as an autowalk breaker and as a backwards key using AutoHotkey?
You don't mess with the Zohar!
http://www.blackfootstudios.com/forums/
http://www.blackfootstudios.com/foru...blog&blogid=2&
Arma 2 Israel - http://www.arma-il.info
My YouTube channel - http://www.youtube.com/user/galzohar
Not sure, and I haven't tried it, but start playing here.....
The folks talking about realism in the thread make me laugh. Where does pressing a button with your finger come into a discussion about walking realistically? Unless you have a treadmill hooked up to your computer as a controller, you just look silly making such claims.Code:$!w:: sleep 500 send {w down} send {s up} return $!s:: sleep 500 send {w up} send {s down} return
---------- Post added at 12:11 PM ---------- Previous post was at 11:59 AM ----------
Ignore my code above, it never lets you stop moving
I think you would need a 3rd stop key.
Last edited by Rancmeat; Aug 9 2009 at 19:01.
Yeah, I've just been stopping with the forward key.
After a while of using it it suddenly started to open the team switch menu rather than holding down the forward key, though restarting autohotkey and telling it to reload the script fixed the issue. Overall, though, it is very useful!
Speaking of autohotkey, anyone knows how to make a script that will work around the toggle zoom bug? That is, make a hotkey that will hold the zoom key when pressed once and release it when pressed again, and another key to do the same for the zoom out key? I would love to reduce my FOV in my player.arma2profile but the lack of ability to toggle zoom out with some weapons and with all vehicles to make up for it is killing the idea. Besides, sometimes you just want to stay zoomed in without holding a key.
I'd write it myself but I don't understand well enough how autohotkey works. I doubt it would be very complicated.
Tried the following script for zoom in/out toggle but it doesn't seem to work (the auto walk part does work though):
Any idea why?Code:zoomed=0 $+i:: send {i down} return h:: if (zoomed!=1) { zoomed=1 send {r down} } else { zoomed=0 send {r up} } return g:: if (zoomedout!=1) { zoomedout=1 send {e down} } else { zoomedout=0 send {e up} } return