forums wiki bugs items helps changes map login play now

ALIAS ADVANCED

General
ALIAS ADVANCED
 
COMMANDS ARGUMENTS
SPECIAL CHARACTERS:
  There are three special characters used inside the alias:
  ";"- seperates commands within an alias
  "$"   - inserts the alias argument
  "%"   - escapes the next character explicitly (if you want to use ; or $ as text)
 
Example 1 (multiple commands):
alias cw cast 'word of recall';where pk
cw
Would execute:
cast 'word of recall'
where pk
 
Example 2 (multiple commands with arguments):
alias cas cast 'armor' $;cast 'shield' $
cas bob
Would execute:
cast 'armor' bob
cast 'shield' bob
 
Example 3 (escaping special characters):
alias ca %;casting armor on $.;cast 'armor' $;
ca bob
Would execute:
;casting armor on $.		//group talk 'casting armor on $'
cast 'armor' bob
 
USING ALIASES IN ALIAS
  You can use an alias in another alias for added functionality.
Example:
alias cw cast 'word of recall'
alias wh where pk
alias escape cw;wh
escape
Would execute:
cast 'word of recall'
where pk
 
See Also: HELP ALIAS