|
|
 |
10-04-2008, 03:06 PM
|
#1
|
Join Date: Aug 2002
Posts: 452
|
making a toggle key
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.
|
|
you may:
quote & reply,
|
10-05-2008, 04:07 PM
|
#2
|
|
Rookie
Join Date: Jul 2007
Posts: 159
|
Here you go:
Code:
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"
Last edited by nizwiz; 10-07-2008 at 06:33 PM.
|
|
you may:
quote & reply,
|
10-07-2008, 03:20 PM
|
#3
|
Join Date: Aug 2002
Posts: 452
|
Thanks
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.
|
|
you may:
quote & reply,
|
10-07-2008, 06:11 PM
|
#4
|
|
Rookie
Join Date: Jul 2007
Posts: 159
|
You're welcome.
As for your crouch toggling:
Code:
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).
Last edited by nizwiz; 10-07-2008 at 06:34 PM.
|
|
you may:
quote & reply,
|
10-07-2008, 07:31 PM
|
#5
|
Join Date: Aug 2002
Posts: 452
|
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?
|
|
you may:
quote & reply,
|
10-08-2008, 03:56 PM
|
#6
|
|
Rookie
Join Date: Jul 2007
Posts: 159
|
Just found out that toggling "always run" can be done much easier without using vstr:
Code:
bind CTRL "toggle cl_run"
Simple as that, he he.
You might wanna have a look at this: Quake 4 Dummies - Scripts
|
|
you may:
quote & reply,
|
10-09-2008, 03:38 PM
|
#7
|
Join Date: Aug 2002
Posts: 452
|
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.
|
|
you may:
quote & reply,
|
10-09-2008, 06:31 PM
|
#8
|
|
Rookie
Join Date: Jul 2007
Posts: 159
|
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.
|
|
you may:
quote & reply,
|
10-13-2008, 03:14 PM
|
#9
|
Join Date: Aug 2002
Posts: 452
|
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?
|
|
you may:
quote & reply,
|
10-13-2008, 06:20 PM
|
#10
|
|
Rookie
Join Date: Jul 2007
Posts: 159
|
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.
|
|
you may:
quote & reply,
|
10-14-2008, 03:21 PM
|
#11
|
Join Date: Aug 2002
Posts: 452
|
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
|
|
you may:
quote & reply,
|
09-14-2012, 05:55 PM
|
#12
|
|
Rookie
Join Date: Sep 2012
Location: I am!I am!I am!I am!
Posts: 191
Current Game: KOTOR II
|
Quote:
Originally Posted by nizwiz
Just found out that toggling "always run" can be done much easier without using vstr:
Code:
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. 
Last edited by duster; 09-14-2012 at 07:42 PM.
|
|
you may:
quote & reply,
|
10-30-2012, 03:52 PM
|
#13
|
|
The Stig
Join Date: Nov 2004
Location: Sawtooth Cauldron
Posts: 1,242
Current Game: Borderlands 2
|
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.
|
|
you may:
quote & reply,
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Forum Jump
|
|
|
|
|
|