katanamaru Posted October 4, 2008 Share Posted October 4, 2008 I'm trying to make a key that allows me to toggle 'always run.' I don't like having to hold down a key to accomplish this. I have tried two different methods that I have had no success with. First was with the '!'. On the filefront forums it was posted that the ! would allow a button to toggle a command. So I tried this: bind CTRL "cl_run !" That did not work for me. The second way was with 'vstr' commands in a .cfg. I tried this" bind CTRL vstr run1 "cl_run 1"; vstr walk1 bind CTRL vstr walk1 "cl_run 0"; vstr run1 That may not be exactly right since I'm at school and cannot pull up the actual text file, but it is close. If someone knows how to do this and willing to share I'd appreciate it. Link to comment Share on other sites More sharing options...
nizwiz Posted October 5, 2008 Share Posted October 5, 2008 Here you go: set toggle_run_on "set cl_run 1; set toggle_run vstr toggle_run_off" set toggle_run_off "set cl_run 0; set toggle_run vstr toggle_run_on" vstr toggle_run_off bind CTRL "vstr toggle_run" Link to comment Share on other sites More sharing options...
katanamaru Posted October 7, 2008 Author Share Posted October 7, 2008 Thanks Nizwiz. I can't wait to go home and try it. I had another idea as well. Is it possible to make a key that allows one to press a key to activate a command instead of holding the key? EX: By default press and hold crouch to crouch, release to stand up. Through a key bind press key crouch, press key again to stand up. I think this would work as an alternate bind for the 'run toggle' but apply to other keys like crouch and dodge. I don't really need a key for this, but I was wondering if it was possible. Link to comment Share on other sites More sharing options...
nizwiz Posted October 7, 2008 Share Posted October 7, 2008 You're welcome. As for your crouch toggling: set toggle_crouch_on "+movedown; set toggle_crouch vstr toggle_crouch_off" set toggle_crouch_off "-movedown; set toggle_crouch vstr toggle_crouch_on" vstr toggle_crouch_off bind <keycode> "vstr toggle_crouch" You get the idea. Basically, I guess this would work with every command that can be sustained (you can identify them with a look at the binds in your jaconfig.cfg: the sustainable commands are those with a plus sign in front of them). Link to comment Share on other sites More sharing options...
katanamaru Posted October 7, 2008 Author Share Posted October 7, 2008 Well this has been very helpful! Thanks I always wanted to learn more about the vstr command and applying it to key presses. Is there anything else the vstr command can do? Or are there other console commands that are neat? Link to comment Share on other sites More sharing options...
nizwiz Posted October 8, 2008 Share Posted October 8, 2008 Just found out that toggling "always run" can be done much easier without using vstr: bind CTRL "toggle cl_run" Simple as that, he he. You might wanna have a look at this: Quake 4 Dummies - Scripts Link to comment Share on other sites More sharing options...
katanamaru Posted October 9, 2008 Author Share Posted October 9, 2008 I was just about to post that the original vstr commands didn't work. I like the simple way, but I still want to play around with the vstr commands. I have a vstr command that I d/l'ed to press a button and cycle through the saber colors that looks almost exactly like the vstr you posted. Only difference is that it was missing the third line. I tried modifying it to match up more and still didn't get a result. Any ideas? Thanks for the guide! I can't hardly wait to get home and read that bad boy over. Link to comment Share on other sites More sharing options...
nizwiz Posted October 9, 2008 Share Posted October 9, 2008 Hmm, I tried both cfg's out on jasp and jamp, and they work fine with me. Can't tell why they didn't with you. Maybe a typo on your part? Otherwise, no idea. Link to comment Share on other sites More sharing options...
katanamaru Posted October 13, 2008 Author Share Posted October 13, 2008 I put the code in as a .cfg named run.cfg. Then when the game loaded I typed exec run.cfg. Then it didn't work. Did you use a similar method or type it into the console? Link to comment Share on other sites More sharing options...
nizwiz Posted October 13, 2008 Share Posted October 13, 2008 It did it just like that. Could you exec the cfg, enter 'toggle_run', 'toggle_run_on' and 'bind CTRL' on the console and post the responses here? Maybe then we can pinpoint the problem you're facing. Link to comment Share on other sites More sharing options...
katanamaru Posted October 14, 2008 Author Share Posted October 14, 2008 Ok, I'll try tonight. 1.I'll execute my cfg, in this case run.cfg 2.Open the console and enter 'toggle_run' enter, 'toggle_run_on' enter, and then 'bind CTRL' enter. Close console Link to comment Share on other sites More sharing options...
duster Posted September 14, 2012 Share Posted September 14, 2012 Just found out that toggling "always run" can be done much easier without using vstr: bind CTRL "toggle cl_run" Simple as that, he he. You might wanna have a look at this: Quake 4 Dummies - Scripts Both codes work but the first one when used and exit game to make it work must be typed again.Atleast that's in KOTF.I don't know why but jka shows "Couldn't load run.cfg".Thanks alot. Link to comment Share on other sites More sharing options...
ensiform Posted October 30, 2012 Share Posted October 30, 2012 bind CTRL "cl_run !" should work the same as the toggle key. It may forget when exiting still because I don't know if cl_run is CVAR_ARCHIVE or not. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.