Syntax: alias - lists your current aliases
alias <word> <command> - typing the word will instead perform the specified command (or partial command)
alias <word> - if <word> is one of your aliases, this shows what it's aliased to
unalias <word> - if <word> is one of your aliases, this deletes it
Aliases are very helpful to increase how quickly you can call upon a skill/spell. For example,
to cast the spell 'cure serious' takes a lot of typing, and just typing "cast cure" will tend to
call upon 'cure light' instead. The following keystrokes will alias all your cure spells:
alias cl cast 'cure light'
alias cs cast 'cure serious'
alias cc cast 'cure critical'
alias cm cast 'cure mortal'
alias cb cast 'cure blindness'
etc.
|