Do you use the "Always Run" menu option? You shouldn't.

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) :( :o :shock: :? 8) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :!: :?: :idea: :arrow: :| :mrgreen:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Do you use the "Always Run" menu option? You shouldn't.

Re: Do you use the "Always Run" menu option? You shouldn't.

by Gunter » Mon Oct 23, 2017 11:00 am

You can give feature requests to Baker on the Mark V thread at func: http://www.celephais.net/board/view_thr ... start=1735

I think he's previously stated he might do something like Quakespasm, where if you do have "Always Run" enabled it will cause the usual +speed key to act as a +slow key.

Having multiple menu options for "Always Run" would be great, like , "Off," "Forward-Backward," "All Directions."

Re: Do you use the "Always Run" menu option? You shouldn't.

by LennyPen » Sun Oct 22, 2017 4:26 am

gulliver-trans wrote: Mon Sep 19, 2016 10:33 am maybe they should add another option for "Always Fast Strafe" and a third option for something like "Always Move Fast", which grays out the other 2 options in the menu.
An always fast strafe option would be a good idea!

Re: Do you use the "Always Run" menu option? You shouldn't.

by gulliver-trans » Mon Sep 19, 2016 10:33 am

Well if they want to keep the deceptive "Always Run" option (though I admit humans don't typically sidestep at high speeds, they don't usually run backwards either), maybe they should add another option for "Always Fast Strafe" and a third option for something like "Always Move Fast", which grays out the other 2 options in the menu.

But yeah... the Always Run (but don't strafe so fast!) option is quite useless, and can only serve to misguide or frustrate newbies.

Re: Do you use the "Always Run" menu option? You shouldn't.

by foq » Sun Sep 18, 2016 4:08 pm

There's definitely something going on here. I remember a long time ago reading about adding cl_forwardspeed 999, cl_backspeed 999, and cl_sidespeed 999 into autoexec.cfg, and I did it, but at the time I never noticed anything. And then, after coming back to Quake after being away for a while... the game felt very unresponsive... like swimming in tar. Adding these values made it feel right again. I don't know if it matters, but I was using the latest Proquake, and it still felt wrong, until I modified the cl_xspeed values myself.

Do you use the "Always Run" menu option? You shouldn't.

by Gunter » Sun Sep 18, 2016 10:50 am

I've always noticed that selecting "Always Run" in the menu makes your side-step speed way too slow, and I've recently thought about why this happens.

And after considering it more, I really think this is an error or oversight in the original Quake code that has gone unfixed for a long time (actually, Quakespasm has fixed it!), and it really should be fixed in modern clients. Unfortunatly, a lot of engine coders want to keep Quakes default behavior because they think it's what we, the players, want. So if you don't like this behavior, tell the developers to fix it!


Now here an illustration of the problem.

The default movement speeds in Quake are:

cl_forwardspeed 200
(and cl_backspeed 200)
cl_sidespeed 350


So basically the default "diagonal" (if you are moving forward + sideways) walking speed in Quake has you to move 2 steps forward and 3.5 steps to the side.

So imagine a line starting at the lower . and ending at the top right .
Just go ahead and draw a line on your monitor with a marker to connect the dots :D

Code: Select all

21.2.3. 
. 
1 
. 
That shows your line of motion -- the direction you will be traveling.


If you "run" using a Run key (+speed), those steps are both doubled, so you will be trying to take 4 steps forward and 7 steps to the side (the actual settings would effectively become 400 and 700).
Imagine your line of moment now starting at the lower . and ending at the 7

Code: Select all

41.2.3.4.5.6.7 
. 
3 
. 
2 
. 
1 
. 

You can see it is the same line of movement -- it just travels twice as far. Of course, you won't make it that whole distance, because there is an absolute speed limit of 320, but you will still be traveling along the exact same line, in the same direction as before, until you hit the speed limit.


Now, turning on "Always Run" in the menu simply sets your forward speed (and back speed) to 400 (doubling it) but it doesn't touch your side speed at all (leaving it at 350 -- not to mention it doesn't affect your cl_upspeed for swimming/flying up and down). With Quake's maximum speed limit being 320, you might think this would make little difference since the side speed was already higher than that....

However with "Always Run" ONLY modifying your forward speed, you will then be taking 4 steps forward and 3.5 steps to the side, which greatly alters your line of travel. Now you are traveling from the lower . to the upper right . again

Code: Select all

41.2.3. 
. 
3 
. 
2 
. 
1 
. 
It's a completely different line of movement you will be traveling along, and your sidestep speed suffers greatly.

The total distance you will end up moving will be the same (the absolute speed limit) but your position will be different because you are moving along a different line in each case....

You can still activate the run key (+speed) when "Always Run" is ON, but it will make no difference because, again, it effectively doubles the values that have been set, so you would end up with a forward speed of 800 and a side speed of 700, which would not make a difference because you would still be traveling along the same line and hitting the absolute speed limit.



I believe the first line of movement is the correct intention for Quake, since it applies to the default walking and running methods.

I think with the "Always Run" menu option, id simply overlooked that it was supposed to also apply to the sidestep speed, which IS supposed to be doubled along with the other speeds when running (along with up/down speed, which IS affected by +speed).


I'm betting most people, when they figure out how to make console settings, will not be using the "Always Run" menu option speeds alone, because they feel wrong in the game -- if you can't side-step fast, you will die a lot. Though I suppose some people just get used to the lower side-step speed and end up preferring it that way.....


How does everyone else set it up?

I make sure "Always Run" is off, then I simply issue a +speed command in the console (through a config file) so that I am always running correctly.

If you have "Always Run" ON, you can address the problem by also doubling your side speed with cl_sidespeed 700 (then you'll be moving along the correct line again, even though you will never make it a distance of 700 in one "step").

Another disadvantage of having "Always Run" ON is that you can't easily toggle it OFF. For example, I use a reverse +speed key so that I am running by default (with +speed applied), but when I press the key, -speed is applied so that I can walk (when I want to make small position adjustments), like this:

Code: Select all

+speed
alias +slow -speed
alias -slow +speed
bind x +slow
But if you have "Always Run" ON, the speed settings become useless -- doubling your speed would have no effect since you are already going faster than the speed limit, and you can't easily toggle all your speeds to a lower setting either, because your base speeds are set extra high....



So, yeah, "Always Run" = bad and wrong. Does anyone really use it and like the way you move?

Of course, the "quick fix" would be for Quake engine coders to have "Always Run" also set the cl_sidespeed (and cl_upspeed) to 700 along with setting the other speeds to 400.

Quakespasm goes a step farther and, if you have "Always Run" ON, it will cause your usual +speed key to automatically act as a +slow speed. That's a nice touch.

Top