What's new

Discussion toggle dvar

  • Thread starter decima7e
  • Start date
  • Views 1,078
decima7e

decima7e

Contributor
Messages
1,844
Reaction score
949
Points
315
this question probably doesnt require its own thread but:

say i want to toggle game speed, so i want 3 diff game speeds to be binded to my left dpad or something. what would this look like?
 
N

nickbert01

Banned
Messages
123
Reaction score
6
Points
70
bind dpadup "timescale 2.5"
bind dpaddown "timescale 5.0"
bind dpadright "timescale 9.9"

hope this helps
 
Riley_

rile5

Enthusiast
Messages
53
Reaction score
1
Points
55
nickbert01 said:
bind dpadup "timescale 2.5"
bind dpaddown "timescale 5.0"
bind dpadright "timescale 9.9"

hope this helps
No thats not toggling
Edit: im pretty sure its something like this
bind dpaddown "toggle timescale 0.5 1 2"
 
Lost4468

Lost4468

Contributor
Messages
2,202
Reaction score
1,760
Points
310
nickbert01 said:
bind dpadup "timescale 2.5"
bind dpaddown "timescale 5.0"
bind dpadright "timescale 9.9"

hope this helps

No it is
bind dpad_down toggle timescale 1 5 10
Make sure you have 1 on there or you cant go back to the default speed.
 
Z

Z0mbiekiller779

Newbie
Messages
9
Reaction score
0
Points
35
this question probably doesnt require its own thread but:


say i want to toggle game speed, so i want 3 diff game speeds to be binded to my left dpad or something. what would this look like?
bind dpad_left toggle 1 2 0.2;
 
Dakota628

Dakota628

Enthusiast
Messages
430
Reaction score
158
Points
115
No it is
bind dpad_down toggle timescale 1 5 10
Make sure you have 1 on there or you cant go back to the default speed.

Lost is correct and everybody else in this thread is wrong, if it's in a config you can do the following also.

bind dpad_down "toggle timescale 1 5 10";
 
Lost4468

Lost4468

Contributor
Messages
2,202
Reaction score
1,760
Points
310
Lost is correct and everybody else in this thread is wrong, if it's in a config you can do the following also.

bind dpad_down "toggle timescale 1 5 10";
Lol that post was nearly 2 years old
 
X

xRemy

Enthusiast
Messages
216
Reaction score
19
Points
70
most of these will work, however i use:

"toggle timescale 1 2 .2"

Everytime you hit the button it will change speeds.

so lets say:

"bind dpad_up toggle timescale 1 2 .2"

The first time you hit the button it will make the game fast, the seconded time will be slow motion and the third time will be normal game speed.
 
Top Bottom
Login
Register