View Single Post
  #22  
Unread 04-08-2009, 11:19 PM
Zonx's Avatar
Zonx Zonx is offline
A Green Troll
This person is a EQ2Map developer.
Featured
 
Join Date: Dec 2004
Server: Blackburrow
Posts: 2,221
Send a message via Yahoo to Zonx
Default

You can use an alias inside of alias but none of the aliases are actually evaled until final execution.

Eample:

alias first_command : 1 + 2
alias second_command : 2 * 3
alias final_command : first_command / second_command

Running final_command is the same as...
1 + 2 / 2 * 3
not
3 / 6
Reply With Quote