Scanner bind: Difference between revisions
From Vendetta Online Wiki
Jump to navigationJump to search
m Binds:Scanner moved to Scanner bind |
Kjm41483897 (talk | contribs) m →Code: added <nowiki> tags to make wiki treat text verbatim |
||
Line 5: | Line 5: | ||
alias AutoNTToggle "AutoNTOn" | alias AutoNTToggle "AutoNTOn" | ||
alias AutoNTOn "alias AutoNTToggle AutoNTOff; alias AutoNTClock 'wait 1 AutoNTarget'; AutoNTClock; ANTmsg1" | alias AutoNTOn "alias AutoNTToggle AutoNTOff; alias AutoNTClock 'wait 1 AutoNTarget'; AutoNTClock; ANTmsg1" | ||
alias AutoNTOff "alias AutoNTToggle AutoNTOn; alias AutoNTClock ''; ANTmsg2" | <nowiki>alias AutoNTOff "alias AutoNTToggle AutoNTOn; alias AutoNTClock ''; ANTmsg2"</nowiki> | ||
alias AutoNTClock "" | alias AutoNTClock "" | ||
alias AutoNTarget "RadarNextNearestEnemy; AutoNTClock" | alias AutoNTarget "RadarNextNearestEnemy; AutoNTClock" |
Latest revision as of 02:16, 21 March 2008
This bind basically will automatically target the nearest enemy, enabling you to keep abreast of who's around you without constantly pressing your nearest enemy key. The Scanner Bind is interesting in that Morbidly Wrong and Celkan both developed one, seemingly independantly of each other. Both versions are presented here.
Celkan's Version
Code
alias AutoNTToggle "AutoNTOn" alias AutoNTOn "alias AutoNTToggle AutoNTOff; alias AutoNTClock 'wait 1 AutoNTarget'; AutoNTClock; ANTmsg1" alias AutoNTOff "alias AutoNTToggle AutoNTOn; alias AutoNTClock ''; ANTmsg2" alias AutoNTClock "" alias AutoNTarget "RadarNextNearestEnemy; AutoNTClock" alias ANTmsg1 "echo 'Automatic Nearest Enemy Targetting Engaged.'" alias ANTmsg2 "echo 'Automatic Nearest Enemy Targetting Disengaged.'"
Aliases
Bind the following commands to the key of your choice:
Command | Description |
---|---|
AutoNTToggle | Toggles scanner. |
Credit
Created by Celkan.
Morbidly Wrong's Version
Code
alias scan2 "wait 1 'scan1'; RadarNextNearestEnemy" alias scanoff "alias scan1 'echo Scanner Off'; alias scanner scanon" alias scanon "alias scan1 'RadarNextNearestEnemy; scan2'; echo 'Scanner On'; scan1; alias scanner scanoff" alias scanner scanon
Aliases
Bind the following commands to the key of your choice:
Command | Description |
---|---|
scanner | Toggles scanner. |
Credit
Created by Morbidly Wrong