Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- developer 1
- echo "default settings loaded"
- developer 0
- // viewmodel/combination script binds
- bind "0" "slot10"
- bind "mouse5" "slot1"
- bind "mouse3" "slot2"
- bind "mouse4" "slot3"
- bind "4" "slot4"
- bind "q" "lastinv"
- bind "mouse1" "+attack"
- bind "mouse2" "+attack2"
- // crosshair script binds
- bind "a" "+moveleft"
- bind "d" "+moveright"
- bind "s" "+back"
- bind "w" "+forward"
- bind "SPACE" "+jump"
- bind "ctrl" "+duck"
- sensitivity 2
- r_drawviewmodel 1
- // Null-cancelling movement script
- // (prevents you from pressing two opposing directions, which causes you to stop moving)
- bind w +mfwd
- bind s +mback
- bind a +mleft
- bind d +mright
- alias +mfwd "-back;+forward;alias checkfwd +forward"
- alias +mback "-forward;+back;alias checkback +back"
- alias +mleft "-moveright;+moveleft;alias checkleft +moveleft"
- alias +mright "-moveleft;+moveright;alias checkright +moveright"
- alias -mfwd "-forward;checkback;alias checkfwd none"
- alias -mback "-back;checkfwd;alias checkback none"
- alias -mleft "-moveleft;checkright;alias checkleft none"
- alias -mright "-moveright;checkleft;alias checkright none"
- alias checkfwd none
- alias checkback none
- alias checkleft none
- alias checkright none
- alias none ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement