deviantdigi 22 Posted July 13, 2012 Greetings, With much help from UPIA over @ the.logitechusers forums. I'm pleased to present you with an option to add a "auto run" function to Arma 2 via a script.1. Open the Logitech Gaming Software suite and select the giant G. Aka the profiler. You can find the software/drivers here: http://www.logitech....g-keyboard-g510 and download the software/driver package for your specific OS. I'm currently using version 8.30.86.3. Create or use a pre exsisting profile for Dayz (via the + symbol).4. Click the profile icon, use the drop down menu to select "scripting"5. Overwrite your entire defualt script with:toggleW = 0function OnEvent(event, arg, family)family = family or ""if family == "kb" and event == "G_PRESSED" and arg == 1 then if toggleW == 0 then toggleW = 1 PressKey("w") else toggleW = 0 ReleaseKey("w") endendendhttp://www.logitechu....html#post621546. To use the function: So currently, given the script. When you press G1 the script will depress the W key. When G1 is pressed again, the script will release the W key. You do not need to assign the G key as that is done by the script.You can use the Test profile feature next to where the scripting option is to make sure its working properly.7. To change the auto run script to another G key. Within scripting, change number 1 in the line "G_PRESSED" and arg == 1 then" to any number between 1-18. (As I've changed it to G2 in the pic = 2). Keep in mind you can still use the macros for that G key but it will still activate the auto run script pressing W. Have fun :D 2 Share this post Link to post Share on other sites
deviantdigi 22 Posted July 13, 2012 (edited) This script does the same function as above. But when you activate auto run it changes the color scheme to give a visual status of the auto run state. Red being on, green being off. As well as displaying a LCD text alert.toggleW = 0function OnEvent(event, arg, family)family = family or ""if family == "kb" and event == "G_PRESSED" and arg == 1 thenif toggleW == 0 thentoggleW = 1PressKey("w")OutputLCDMessage("Auto Run Enabled",5000)SetBacklightColor(255,0,0,"kb")elsetoggleW = 0ReleaseKey("w")OutputLCDMessage("Auto Run Disabled",5000)SetBacklightColor(0,255,0, "kb")endendend Edited July 13, 2012 by deviantdigi Share this post Link to post Share on other sites
radius 0 Posted July 13, 2012 Why not just double tap the forward key while moving? Much more efficiant, you don't have to move your fingers to a new position or anything. Share this post Link to post Share on other sites
deviantdigi 22 Posted July 13, 2012 (edited) Why not just double tap the forward key while moving? Much more efficiant, you don't have to move your fingers to a new position or anything.Not sure you're on the same page. This isn't about running or walking.Its solution to holding down the forward key for long periods of time. Adding, you can add the script to a G key that is accessible by your pinky so you don't have to move your hand postion while playing. I have the run/walk toggle mapped to my left shift key. Edited July 13, 2012 by deviantdigi Share this post Link to post Share on other sites
Copgun 2 Posted July 13, 2012 I can autorun by double tapping W and opening the steam overlay. While still holding W then simply release W, close the overlay, and I'm running on my own. 1 Share this post Link to post Share on other sites
BTT` 15 Posted July 13, 2012 (edited) I can auto run by switching between two computers with a KVM switch as I hold my forward button which I rebound to mouse button 5. I release and switch back. Can still free look...strafe...stop (holding back button..mouse button 4) and never lose the auto run till I hit mouse button 5 again. It is kinda handy for debug forest escapes and long trips on foot through the woods and I gottah grab another beer!! :) Edited July 13, 2012 by BTT` Share this post Link to post Share on other sites
Barronism 88 Posted July 27, 2012 Hey, that's awesome. have you heard of any LCD apps for Arma II or Dayz in general? I'm not skilled enough to make one myself, I could try but would love to know if there is one out already. I think it requires the game to allow it right? Sorry, not sure if you know about this but I googled it and found random profile options but nothing on the LCD app. Share this post Link to post Share on other sites
BigCountry 26 Posted August 8, 2012 YES!!!!Great post. Share this post Link to post Share on other sites
CaptainPlanet (DayZ) 23 Posted August 8, 2012 YAAAAAAAAAAAAWNHold run then press your Steam key.Done.Solved.No idea why people do these other things. Share this post Link to post Share on other sites
deren93@hotmail.com 95 Posted August 8, 2012 (edited) Who is silly enough to use Steam to launch the game? This is awesome, I'll try it out. Thanks OPwould be even better if this was only enabled whilst Arma II: OA is open:P Edited August 8, 2012 by DocTolly Share this post Link to post Share on other sites
teamRAVEGREEN 9 Posted August 8, 2012 (edited) YAAAAAAAAAAAAWNHold run then press your Steam key.Done.Solved.No idea why people do these other things.Because we don't use Steam? Edited August 8, 2012 by teamRAVEGREEN 1 Share this post Link to post Share on other sites
McLovinCR 29 Posted August 8, 2012 I'm guessing this also would work on a g15 keyboard, right? Share this post Link to post Share on other sites
Slayer86 4 Posted August 8, 2012 Why didn't I think of this... Thanks! Share this post Link to post Share on other sites
chilled 17 Posted November 2, 2012 (edited) 1. Make a macro, assign W to it.2. Set the macro on shift (under the section repeatoptions). (roughly translated from dutch)3. Done.You can toggle it on/off by pressing the key you bound it to.Works for me, for some months now I might add. Edited November 2, 2012 by chilled Share this post Link to post Share on other sites
jimboss 0 Posted January 5, 2013 this works good, can you also add left shift into the script? thanks Share this post Link to post Share on other sites
drake89 0 Posted January 10, 2013 (edited) Greetings, With much help from UPIA over @ the.logitechusers forums. I'm pleased to present you with an option to add a "auto run" function to Arma 2 via a script.1. Open the Logitech Gaming Software suite and select the giant G. Aka the profiler. You can find the software/drivers here: http://www.logitech....g-keyboard-g510 and download the software/driver package for your specific OS. I'm currently using version 8.30.86.3. Create or use a pre exsisting profile for Dayz (via the + symbol).4. Click the profile icon, use the drop down menu to select "scripting"5. Overwrite your entire defualt script with:6. To use the function: So currently, given the script. When you press G1 the script will depress the W key. When G1 is pressed again, the script will release the W key. You do not need to assign the G key as that is done by the script.You can use the Test profile feature next to where the scripting option is to make sure its working properly.7. To change the auto run script to another G key. Within scripting, change number 1 in the line "G_PRESSED" and arg == 1 then" to any number between 1-18. (As I've changed it to G2 in the pic = 2). Keep in mind you can still use the macros for that G key but it will still activate the auto run script pressing W. Have fun :Dhey,i have the corsair k90 and was wondering if i enter the same sequence and delay will that autorun for me too?if not has any1 figured out a k90 auto run yet?thanks Edited January 10, 2013 by drake89 Share this post Link to post Share on other sites
HappyMushroom 68 Posted January 10, 2013 Whatever happened to just sticking a penny between your keys? Share this post Link to post Share on other sites
drake89 0 Posted January 10, 2013 I bought a keyboard with macro keys... why wouldent I use why I paid for?Any help would be great guys.Thanks! Share this post Link to post Share on other sites
mitor 176 Posted January 10, 2013 (edited) Well,I have a G110, and I have a more sophisticated way to do it: :D Edited January 10, 2013 by Mitor Share this post Link to post Share on other sites
SkrooLoose (DayZ) 143 Posted January 10, 2013 Whatever happened to just sticking a penny between your keys?Not everyone can afford a penny. 2 Share this post Link to post Share on other sites
antykain 200 Posted February 26, 2015 (edited) (Can Delete plz) :P Edited February 26, 2015 by Antykain Share this post Link to post Share on other sites