jump.tf Forums
Welcome B)

Collection of useful generic jumping scripts

ondkaja

  • Newbie
  • *
    • Posts: 38
    • Frags: +0/-0
    • View Profile
Ctap script:
Press m2 and m1 in quick succession to perform a ctap, no need to release m2 before pressing m1. It is slightly worse than doing a manual ctap.
Code: [Select]
alias +ctap "bind mouse1 +jumpshoot; +duck; spec_prev"
alias -ctap "-duck"

alias +jumpshoot "-duck; +jump; +attack"
alias -jumpshoot "+jump; -attack; bind mouse1 +attack"
bind mouse2 +attack

Null-canceling movement script:
Pressing two opposite movement buttons does not cancel movement.
Code: [Select]
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 ""

bind w +mfwd
bind s +mback
bind a +mleft
bind d +mright

Jumpbug:
Press c to crouch. This rebinds jump to uncrouch and jump at the same tick, which is a jumpbug.
Code: [Select]
alias jumpbug "+duck; bind space +jbjump"
alias +jbjump "-duck; +jump"
alias -jbjump "-jump; bind space +jump"
bind c jumpbug

JDS (jump-duck-shoot):
Jump, duck and shoot with mouse5. Useful for bounce setups.
Code: [Select]
alias +jds "+attack; +jump; +duck"
alias -jds "-attack; -jump; -duck"
bind mouse5 +jds

Third person toggle bind:
You can change cam_idealdist in this script to decide how far away the camera should be from the player. Default is 150, max is 450.
Code: [Select]
cam_ideallag 0
alias fp_on "firstperson; alias tp_fp_toggle tp_on"
alias tp_on "cam_idealdist 150; thirdperson; alias tp_fp_toggle fp_on"
alias tp_fp_toggle tp_on
bind f tp_fp_toggle

(f/b/l/r)shoot:
Type fshoot, rshoot, lshoot or bshoot in console to bind mouse5 to simultaneously shoot and walk forward, right, left or back, respectively. Useful for advanced bounce setups.
Code: [Select]
alias +fshoot "+attack; +forward"
alias -fshoot "-attack; -forward"
alias +lshoot "+attack; +moveleft"
alias -lshoot "-attack; -moveleft"
alias +bshoot "+attack; +back"
alias -bshoot "-attack; -back"
alias +rshoot "+attack; +moveright"
alias -rshoot "-attack; -moveright"

alias fshoot "bind mouse5 +fshoot"
alias bshoot "bind mouse5 +bshoot"
alias lshoot "bind mouse5 +lshoot"
alias rshoot "bind mouse5 +rshoot"



« Last Edit: July 06, 2021, 06:06:31 PM by ondkaja »