Author Topic: Binding  (Read 1688 times)

Spydie

  • VM-68
  • Posts: 175
Binding
« on: June 18, 2006, 06:06:14 AM »
Hey guys. I want to bind my mouse3 button so it goes fov 60 when i press it and goes back to fov 90 when i do it again. is that possible?

If not, when i hold down mouse3 it wil fov 60 and on mouse3 letgo, it will go back to fov 90.

Thanks

bitmate

  • Autococker
  • Posts: 1248
Re: Binding
« Reply #1 on: June 18, 2006, 06:51:05 AM »
This is what you wanted to have: pressing mouse3 once it goes fov 60, pressing it once agains it goes fov 90.

Code: [Select]
bind "MOUSE3" "switchfov1"
alias switchfov1 "fov 60; bind MOUSE3 switchfov2"
alias switchfov2 "fov 90; bind MOUSE3 switchfov1"


This one is more or less zooming like in other FPS (scolling up and down with the mousewheel)

Code: [Select]
bind "MWHEELDOWN" "fov 90"
bind "MWHEELUP" "fov 60"

Spydie

  • VM-68
  • Posts: 175
Re: Binding
« Reply #2 on: June 18, 2006, 10:02:47 AM »
thx alot bitmate. I allready have mwheeldown/up used for hands. I really appreciate the help.

Spydie

  • VM-68
  • Posts: 175
Re: Binding
« Reply #3 on: June 19, 2006, 08:48:56 AM »
Ok, now i want to make it on first mouse3; sensitivity 2
and mouse3 again; sensitivty 2.5

WITH the zoom. can i do it?

Smokey

  • Autococker
  • Posts: 1172
Re: Binding
« Reply #4 on: June 19, 2006, 08:56:08 AM »
Code: [Select]
bind "MOUSE3" "switchfov1"
alias switchfov1 "fov 60; sensitivity 2; bind MOUSE3 switchfov2"
alias switchfov2 "fov 90; sensitivity 2.5; bind MOUSE3 switchfov1"

Spydie

  • VM-68
  • Posts: 175
Re: Binding
« Reply #5 on: June 19, 2006, 08:57:02 AM »
that's what i figured. heh. thanks