Yet another question about aliases

Posted by Vercalos on Tue 13 Dec 2011 09:41 AM — 3 posts, 13,456 views.

#0
I want to make an alias that sends a message including %0 to the MUD/MUSH. However, %0 automatically sends the original alias to the MUSH
(alias) -> (send) -> (resulting output)
I'm getting
alias command -> %0 -> alias command
I want to get
alias command -> %0 -> %0
I tried
alias command -> \%0-> alias command
USA Global Moderator #1
Use %%0. The first % escapes the second one and sends it literally.
Amended on Tue 13 Dec 2011 01:58 PM by Fiendish
#2
Thanks a lot!

Also helped me track down another problem that I needed to fix.(the alias also had a /)