PDA

View Full Version : Need a keypad Engineer script.


iFenix
12-24-2008, 07:48 PM
The engineer could use one for easier building, it is annoying selecting using right click.
Anyone willing to make one?

PartialSchism
12-24-2008, 10:01 PM
I don't play engineer much. This one is pretty basic.

// This key builds a sentry gun, then if close enough, pressing it will dismantle.
// Button 1 on Keypad
bind KP_END "sg"

// This key builds a dispenser, then if close enough, pressing it will dismantle.
// Button 2 on Keypad
bind KP_DOWNARROW "disp"

// This key detonates only the sentrygun.
// Button 3 on Keypad
bind KP_PGDN "detsentry"

// This key detonates only the dispenser.
// Button 4 on Keypad
bind KP_LEFTARROW "detdispenser"


alias sg "sentrygun;wait;dismantlesentry"

alias disp "dispenser;wait;dismantledispenser"

Nite]M[are
12-27-2008, 03:51 PM
Convenience format:


bind kp_leftarrow "sg"
bind kp_rightarrow "disp"
bind kp_end "detsentry"
bind kp_pgdn "detdispenser"
bind kp_5 "aimsentry"

alias sg "sentrygun;wait;dismantlesentry"
alias disp "dispenser;wait;dismantledispenser"


(That's in PartcialSchism's format, how I would have it if I had my engy script like that)

Radial format (right click menu, in keypad format)


bind kp_uparrow aimsentry
bind kp_pgup dispenser
bind kp_rightarrow detdispenser
bind kp_pgdn dismantledispenser
bind kp_end dismantlesentry
bind kp_leftarrow detsentry
bind kp_home sentrygun

iFenix
01-07-2009, 12:49 PM
I'm finding Nite]M[are 's more useful, but thanks for the first script Partial.

PartialSchism
01-07-2009, 06:47 PM
NP glad you got what you wanted. I don't use one so :P

MonoXideAtWork
01-07-2009, 06:53 PM
alias sgun "detsentry; sentrygun"
alias disp "det dispenser; dispenser"
bind "kp_ins" "sgun"
bind "kp_enter" "disp"