Author Topic: Config help!  (Read 1161 times)

l1g

  • Stingray
  • Posts: 57
Config help!
« on: March 01, 2007, 09:31:44 PM »
Why doesn't this work?

bind "MWHEELDOWN" "hand 0"


Zorchenhimer

  • Autococker
  • Posts: 2614
Re: Config help!
« Reply #1 on: March 01, 2007, 09:51:01 PM »
That will just change the hand once, rendering it useless. Try this instead: Link.
That's {appy Hamper's hand change script that he posted while these forums where down.

GreenAffairz

  • Autococker
  • Posts: 515
Re: Config help!
« Reply #2 on: March 01, 2007, 11:31:18 PM »
i use z for left, x for mid, and c for right :)

Zorchenhimer

  • Autococker
  • Posts: 2614
Re: Config help!
« Reply #3 on: March 02, 2007, 09:20:47 AM »
Or just bind one button to "cvar_inc hand 1 0 2".
But mine has an echo in it so it looks like this:
Code: [Select]
bind "x" "hnd1"
alias hnd1 "echo left;hand 1;bind x hnd2"
alias hnd2 "echo center;hand 2;bind x hnd3"
alias hnd3 "echo right;hand 0;bind x hnd4"
alias hnd4 "echo center;hand 2;bind x hnd1"

l1g

  • Stingray
  • Posts: 57
Re: Config help!
« Reply #4 on: March 02, 2007, 11:11:15 AM »
No I fixed it.  I had it right, just the wrong hand.

jitspoe

  • Administrator
  • Autococker
  • Posts: 18802
Re: Config help!
« Reply #5 on: March 02, 2007, 01:49:00 PM »
Hand 0 would be the right hand. ;)

{appy Hamper

  • VM-68
  • Posts: 128
Re: Config help!
« Reply #6 on: March 02, 2007, 07:24:33 PM »

Code: [Select]
bind "x" "hnd1"
alias hnd1 "echo left;hand 1;bind x hnd2"
alias hnd2 "echo center;hand 2;bind x hnd3"
alias hnd3 "echo right;hand 0;bind x hnd4"
alias hnd4 "echo center;hand 2;bind x hnd1"

I think I like the going back to the center after going right or left...
I'll have to try that...