How to alias the Cleric Mantras ----------------------------------------- CMUD: ------ #TRIGGER { (%w) *LOCATION} {LOCATIONVAR = %1;#GAG} Example: #TRIGGER { (%w) *Monastery of Rokoon, north of the training centre} {monastery = %1;#GAG} The trigger will capture the mantra as a paramater and transfer it to the respective variable. The variables will be crated automatically, so you don't have to set them up manually. To avoid the spam each time I type in "mantras" I additionally put in #GAG to delete the triggered line from my MUD window. The Client will read it nevertheless so that the line isn't there doesn't mean that you didn't receive it. Optionally you can create an alias later on that tells others the mantra, or simply fire your mantra alias and copy it from the echo =) After setting up the #TRIGGER and the resulting #VARIABLE, you now need to set aliases: #ALIAS ALIASNAME {enter portal;mantra @LOCATIONVAR} Example: #ALIAS ppmon {enter portal;mantra @monastery} Now you are set and can use your alias. If you want to create an alias to tell people the mantra (since we #GAG the lines out) without looking it up, you can do the following: #ALIAS ALIASNAME {say The mantra for LOCATION is @LOCATION} Example: #ALIAS tpmon {say The mantra for the monastery is @monastery} ZMUD: ------ #TRIGGER { (%w) *LOCATION} {@LOCATIONVAR = %1;#GAG} Example: #TRIGGER { (%w) *Monastery of Rokoon, north of the training centre} {@monastery = %1;#GAG} In ZMUD you have to put an "@" in front of the variablenames. This is just necessary to have the variables changed though. Setting up the aliases is the same as for CMUD.