Announcement

Collapse
No announcement yet.

Qrack bug? cl_movespeedkey

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Qrack bug? cl_movespeedkey

    QRACK v1.60 Build 1590: 07-04-06
    I have "SHIFT" bound to "+speed" and use it to walk. I've enabled "always run" which sets:
    cl_backspeed 400
    cl_forwardspeed 400
    Then I make sure strafing is at the same speed with:
    cl_sidespeed 400

    To walk I set:
    cl_movespeedkey 0.3

    Normally it's:
    cl_movespeedkey 5

    As far as I know cl_movespeedkey is a multiplier to cl_backspeed, cl_forwardspeed and cl_sidespeed which means a setting of 2 is double speed and a setting of .5 is half speed. This works perfectly for me with multiple engines including darkplaces, telejano and joequake but not for Qrack. Is it a bug or has another command picked up the functionality of cl_movespeedkey?
    Last edited by noabody; 09-15-2006, 09:54 AM.

  • #2
    Rook is the only one that knows. Hopefully he will see this thread.
    Quakeone.com - Being exactly one-half good and one-half evil has advantages. When a portal opens to the antimatter universe, my opposite is just me with a goatee.

    So while you guys all have to fight your anti-matter counterparts, me and my evil twin will be drinking a beer laughing at you guys ...

    Comment


    • #3
      Well, I made it so that if u bind a key to +shift you can runalways with out and if u press shift it will walk
      // adjust for speed key
      //r00k modified
      Code:
      	if (in_speed.state & 1)
      	{
      		if (cl_forwardspeed.value < 320)
      		{
      			cmd->forwardmove *= cl_movespeedkey.value;
      			cmd->sidemove *= cl_movespeedkey.value;
      			cmd->upmove *= cl_movespeedkey.value;
      		}
      		else
      		{
      			if (cl_forwardspeed.value >= 320)
      			{
      				cmd->forwardmove /= cl_movespeedkey.value;
      				cmd->sidemove /= cl_movespeedkey.value;
      				cmd->upmove /= cl_movespeedkey.value;
      			}
      		}
      	}
      maybe i should up those values from 320 to 400
      www.quakeone.com/qrack | www.quakeone.com/cax| http://en.twitch.tv/sputnikutah

      Comment

      Working...
      X