|
LordFett213 Novice
Joined: 20 Aug 2008 Posts: 34
|
Posted: Tue Oct 20, 2009 3:37 am
expanding on #makeroom |
I have a couple aliases for alternative forms of movement (escape (like fleeing but you can specify a direction) and movealone (allows a person with PCs following to move in the specified direction without the players following). Using #makeroom dir makes an empty room, is there a way I can alias movealone to make a room when i move like n s e w u d?
This is my current alias for movealone.
Code: |
#ALIAS ma {movealone %1;#move %1} "Alias" |
And for creating a room when I move.
Code: |
#ALIAS mac {movealone %1;#makeroom %1} "Alias" |
|
|
|
|
Tarken Aurelius Apprentice
Joined: 23 Oct 2008 Posts: 120 Location: Cincinnati, Ohio
|
Posted: Fri Oct 23, 2009 6:37 pm |
You mean you want it to do #MAKEROOM when you move in one of those cardinal directions?
|
|
_________________ Tarken Aurelius, quality triggers since 2004! Trigger consulting since 2008! Content Developer at BatMUD (www.bat.org) |
|
|
|
Tech GURU
Joined: 18 Oct 2000 Posts: 2733 Location: Atlanta, USA
|
Posted: Sun Oct 25, 2009 12:33 pm |
If you want to use the alias you suggest I would think it would need to look like this.
Code: |
#ALIAS mac {#makeroom %1;movealone %1;} "Alias" |
Otherwise you'll be telling zMud to #MOVE to a room that doesn't exist yet. |
|
_________________ Asati di tempari! |
|
|
|
|
|