View Single Post
Old 01-01-2009, 10:44 PM   #164
Nite]M[are
Scripting Trainee
 
Nite]M[are's Avatar
 
Join Date: Dec 2008
Location: Sitting with mah Sentry
Class/Position: Defensive Engineer
Gametype: OvD (Defense Preferred)
Affiliations: None yet
Posts Rated Helpful 0 Times
Send a message via Skype™ to Nite]M[are
Quote:
Originally Posted by MonoXideAtWork View Post
I'm glad you liked the toggle script!


General troubleshooting:

If a button does not work, replace the controller, and test. If the issue continues, it is script or engine related.

Things that work well on lan may not work online without using "wait".

Specific troubleshooting:

Test your commands! Try each command by itself in console. This will help you determine if you are using improper functions, syntax, or cvars.

the toggle script "+engy" will only map those keys while you are holding down the C key. This is the "is your computer plugged in" question.

This is what I use.

Code:
// Engineer easydet.

alias +engy detdispenser
alias -engy  dispenser

bind c +engy
Cool, thanks!

Also, I built a really cool pyro script. The perfect pyro jump, just look down and activate it. I'm sure there are others, but I built this looking at my own default config, user config, and pyro config =D

Note: Put this in pyro config. Change the binding from V to whatever key you want.

Code:
//      ---------
//---- FlameLeap ----
//      ---------

unbind v
bind v "+flameleap"
alias +flameleap "slot4;+jump;+attack"
alias -flameleap "slot4;-jump;-attack"
// Edit1: Medic Infection hotkey!

Code:
//     ----
//---- AIDS ----
//     ----
alias number1 "slot1;unbind v"

alias number2a "slot2;bind v number2b"
alias number2b "slot1;bind v number2a"
alias number3a "slot3;bind v number3b"
alias number3b "slot1;bind v number3a"
alias number4a "slot4;bind v number4b"
alias number4b "slot1;bind v number4a"

// Rebinding numbers to make this work.  Bind each key back to its normal slot
// in your cleanup.cfg :-)
bind 1 "number1"
bind 2 "number2a"
bind 3 "number3a"
bind 4 "number4a"

// You start out using slot4, so we want to start out at number4b.
bind v number4b
__________________
Current Projects:
1.) Become a better Engineer.
2.) Become a better bhopper.
3.) Become a better barrel-roller.

Last edited by Nite]M[are; 01-02-2009 at 03:51 AM.
Nite]M[are is offline   Reply With Quote