<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.alteraeon.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nyx</id>
	<title>Alter Aeon Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.alteraeon.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nyx"/>
	<link rel="alternate" type="text/html" href="http://wiki.alteraeon.com/index.php/Special:Contributions/Nyx"/>
	<updated>2026-06-19T17:28:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>http://wiki.alteraeon.com/index.php?title=Alias&amp;diff=1090</id>
		<title>Alias</title>
		<link rel="alternate" type="text/html" href="http://wiki.alteraeon.com/index.php?title=Alias&amp;diff=1090"/>
		<updated>2013-01-23T05:03:35Z</updated>

		<summary type="html">&lt;p&gt;Nyx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Format:&lt;br /&gt;
 set alias &amp;lt;keyword&amp;gt;&lt;br /&gt;
 alias set &amp;lt;keyword&amp;gt;&lt;br /&gt;
 alias edit &amp;lt;keyword&amp;gt;&lt;br /&gt;
 alias show [keyword]&lt;br /&gt;
 aliases [keyword]&lt;br /&gt;
 unalias &amp;lt;keyword&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &#039;aliases&#039; and &#039;alias show&#039; commands will show you a list of all your&lt;br /&gt;
current aliases.  You can also see what each alias is by giving its&lt;br /&gt;
keyword, for example &#039;alias show nuke&#039; to see your &#039;nuke&#039; alias.&lt;br /&gt;
&lt;br /&gt;
The &#039;unalias&#039; command deletes an existing alias.&lt;br /&gt;
&lt;br /&gt;
Aliases can contain more than one command.  To begin setting an alias,&lt;br /&gt;
use the &#039;alias set&#039; command, for example:&lt;br /&gt;
&lt;br /&gt;
 alias set nuke&lt;br /&gt;
&lt;br /&gt;
Once you&#039;ve started setting the alias, you&#039;ll be prompted to enter&lt;br /&gt;
commands into the alias, one line at a time.  Simply type in the&lt;br /&gt;
commands you want for the alias, and when you&#039;re done finish the&lt;br /&gt;
alias with a &#039;/done&#039; command on the last line.&lt;br /&gt;
&lt;br /&gt;
To edit an alias, use the &#039;alias edit&#039; command.  For example:&lt;br /&gt;
&lt;br /&gt;
 alias edit nuke&lt;br /&gt;
&lt;br /&gt;
Note that aliases may invoke other aliases, but cannot invoke themselves&lt;br /&gt;
recursively.  The number of aliases that may be set is dependent on&lt;br /&gt;
character level.  Aliases may also take and pass around arguments.  See&lt;br /&gt;
&#039;help alias args&#039; for more information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Alias Arguments ==&lt;br /&gt;
&lt;br /&gt;
Up to 9 arguments may be used in aliases, each space delimited.  Inside the&lt;br /&gt;
alias, arguments are referenced by using $1 through $9, with $0 and $* both&lt;br /&gt;
representing all arguments.  Additionally, a &#039;shift&#039; command is available&lt;br /&gt;
inside aliases to shift higher arguments down to lower ones.  &lt;br /&gt;
&lt;br /&gt;
Here is a sample alias &#039;healtwo&#039; that takes arguments:&lt;br /&gt;
     say I will now heal $*&lt;br /&gt;
     cast heal $1&lt;br /&gt;
     shift 1&lt;br /&gt;
     cast heal $1&lt;br /&gt;
&lt;br /&gt;
The first line says all the arguments that the alias is invoked with.&lt;br /&gt;
&lt;br /&gt;
The second line attempts to cast heal using the first argument as a target.&lt;br /&gt;
&lt;br /&gt;
The third line shifts the arguments left by one.  This means that the second argument now becomes the first.&lt;br /&gt;
&lt;br /&gt;
The fourth line attempts to cast heal using the first argument as a target, but since we shifted the arguments it will not hit the same target as the second line.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Alias Comments ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Comments can be added to any line of an alias using the &#039;##&#039; separator.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
 get ae45 pocket ## this is a comment, ae45 is the uuid of my sword&lt;br /&gt;
&lt;br /&gt;
Any text after the &#039;##&#039; is ignored.&lt;br /&gt;
&lt;br /&gt;
== Useful Aliases ==&lt;br /&gt;
&lt;br /&gt;
Some aliases you might find of use.&lt;br /&gt;
&lt;br /&gt;
=== &#039;Any Set&#039; Saves Gear ===&lt;br /&gt;
&lt;br /&gt;
Some players will have a piece of equipment they would like to use regardless of whatever set of equipment they are in.  Some examples might include: &lt;br /&gt;
 Boots of Speed&lt;br /&gt;
 Any other Perma-spell Item (often [[infravision]], [[water breathing]], [[Haste]])&lt;br /&gt;
 Equipment with very high Saving Throws&lt;br /&gt;
&lt;br /&gt;
You will be taking advantage of the &#039;remove -(location)&#039; function as well as [[UUID]]s.&lt;br /&gt;
&lt;br /&gt;
You may want to use Boots of Speed in almost every set when taking down powerful mobs.  &lt;br /&gt;
&lt;br /&gt;
A quick example for Boots of Speed. You will replace the (Speed UUID) and (Container UUID) with the actual UUID of your items (remove the parentheses), which can be seen via the [[insult]] command.:&lt;br /&gt;
&lt;br /&gt;
 alias = f04&lt;br /&gt;
 &lt;br /&gt;
 remove -boots&lt;br /&gt;
 get (Speed UUID) (Container UUID)&lt;br /&gt;
 wear (Speed UUID)&lt;br /&gt;
&lt;br /&gt;
A simple alias to switch back to whatever boots you were wearing.&lt;br /&gt;
&lt;br /&gt;
 alias = f05&lt;br /&gt;
 &lt;br /&gt;
 rem (Speed UUID)&lt;br /&gt;
 put (Speed UUID) (Container UUID)&lt;br /&gt;
 &lt;br /&gt;
 wear all&lt;br /&gt;
&lt;br /&gt;
Another example for saves equipment.  Perhaps you have two pieces of wrist, and one piece of leg equipment with really high fire saves:&lt;br /&gt;
&lt;br /&gt;
 alias = firesave&lt;br /&gt;
 &lt;br /&gt;
 rem -wrists     ##Removes both pieces of wrist equipment&lt;br /&gt;
 rem -legs&lt;br /&gt;
 &lt;br /&gt;
 put all container&lt;br /&gt;
  &lt;br /&gt;
 get (Bracer1 UUID) (Container UUID)&lt;br /&gt;
 get (Bracer2 UUID) (Container UUID)&lt;br /&gt;
 get (Leggings UUID) (Container UUID)&lt;br /&gt;
  &lt;br /&gt;
 wear all&lt;br /&gt;
&lt;br /&gt;
I would recommend using [[eqset]]s to switch back to your main sets from these multiple-piece equipment aliases.&lt;/div&gt;</summary>
		<author><name>Nyx</name></author>
	</entry>
	<entry>
		<id>http://wiki.alteraeon.com/index.php?title=Alias&amp;diff=1089</id>
		<title>Alias</title>
		<link rel="alternate" type="text/html" href="http://wiki.alteraeon.com/index.php?title=Alias&amp;diff=1089"/>
		<updated>2013-01-23T04:31:27Z</updated>

		<summary type="html">&lt;p&gt;Nyx: Created page with &amp;quot; Format:  set alias &amp;lt;keyword&amp;gt;  alias set &amp;lt;keyword&amp;gt;  alias edit &amp;lt;keyword&amp;gt;  alias show [keyword]  aliases [keyword]  unalias &amp;lt;keyword&amp;gt;  The &amp;#039;aliases&amp;#039; and &amp;#039;alias show&amp;#039; commands w...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Format:&lt;br /&gt;
 set alias &amp;lt;keyword&amp;gt;&lt;br /&gt;
 alias set &amp;lt;keyword&amp;gt;&lt;br /&gt;
 alias edit &amp;lt;keyword&amp;gt;&lt;br /&gt;
 alias show [keyword]&lt;br /&gt;
 aliases [keyword]&lt;br /&gt;
 unalias &amp;lt;keyword&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &#039;aliases&#039; and &#039;alias show&#039; commands will show you a list of all your&lt;br /&gt;
current aliases.  You can also see what each alias is by giving its&lt;br /&gt;
keyword, for example &#039;alias show nuke&#039; to see your &#039;nuke&#039; alias.&lt;br /&gt;
&lt;br /&gt;
The &#039;unalias&#039; command deletes an existing alias.&lt;br /&gt;
&lt;br /&gt;
Aliases can contain more than one command.  To begin setting an alias,&lt;br /&gt;
use the &#039;alias set&#039; command, for example:&lt;br /&gt;
&lt;br /&gt;
 alias set nuke&lt;br /&gt;
&lt;br /&gt;
Once you&#039;ve started setting the alias, you&#039;ll be prompted to enter&lt;br /&gt;
commands into the alias, one line at a time.  Simply type in the&lt;br /&gt;
commands you want for the alias, and when you&#039;re done finish the&lt;br /&gt;
alias with a &#039;/done&#039; command on the last line.&lt;br /&gt;
&lt;br /&gt;
To edit an alias, use the &#039;alias edit&#039; command.  For example:&lt;br /&gt;
&lt;br /&gt;
 alias edit nuke&lt;br /&gt;
&lt;br /&gt;
Note that aliases may invoke other aliases, but cannot invoke themselves&lt;br /&gt;
recursively.  The number of aliases that may be set is dependent on&lt;br /&gt;
character level.  Aliases may also take and pass around arguments.  See&lt;br /&gt;
&#039;help alias args&#039; for more information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Alias Arguments ==&lt;br /&gt;
&lt;br /&gt;
Up to 9 arguments may be used in aliases, each space delimited.  Inside the&lt;br /&gt;
alias, arguments are referenced by using $1 through $9, with $0 and $* both&lt;br /&gt;
representing all arguments.  Additionally, a &#039;shift&#039; command is available&lt;br /&gt;
inside aliases to shift higher arguments down to lower ones.  &lt;br /&gt;
&lt;br /&gt;
Here is a sample alias &#039;healtwo&#039; that takes arguments:&lt;br /&gt;
     say I will now heal $*&lt;br /&gt;
     cast heal $1&lt;br /&gt;
     shift 1&lt;br /&gt;
     cast heal $1&lt;br /&gt;
&lt;br /&gt;
The first line says all the arguments that the alias is invoked with.&lt;br /&gt;
&lt;br /&gt;
The second line attempts to cast heal using the first argument as a target.&lt;br /&gt;
&lt;br /&gt;
The third line shifts the arguments left by one.  This means that the second argument now becomes the first.&lt;br /&gt;
&lt;br /&gt;
The fourth line attempts to cast heal using the first argument as a target, but since we shifted the arguments it will not hit the same target as the second line.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Alias Comments ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Comments can be added to any line of an alias using the &#039;##&#039; separator.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
 get ae45 pocket ## this is a comment, ae45 is the uuid of my sword&lt;br /&gt;
&lt;br /&gt;
Any text after the &#039;##&#039; is ignored.&lt;/div&gt;</summary>
		<author><name>Nyx</name></author>
	</entry>
</feed>