Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ MUSHclient
➜ General
➜ alias syntax
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Neves
USA (78 posts) Bio
|
Date
| Sun 21 Nov 2010 04:57 AM (UTC) |
Message
| I want to make an alias that without an argument will list variables, with an argument will list that variable, and with two arguments will change the variable, and am wondering what the syntax would be for the alias.
The commands would be:
'nval' should list var1 = @var1, var2 = @var2
'nval 1' should just say var2 = @var2, or 'nval 1' would just do var1 = @var1.
'nval 1 blah' would change @var1 to equal blah, or 'nval 2 blah2' would change @var2 to blah2.
I cannot figure out what the alias should look like to be able to pick up with or without an alias, how would I do it? The actual code part I can do, it is just the syntax to make it trigger I am having issues with, and I prefer not to have to make it as three seperate aliases. If this was not clear let me know and I'll try to explain better.
-Neves | Top |
|
Posted by
| Nick Gammon
Australia (23,158 posts) Bio
Forum Administrator |
Date
| Reply #1 on Sun 21 Nov 2010 05:09 AM (UTC) |
Message
| Something like this:
<aliases>
<alias
match="^nval(?'which' \d+)?(?'newval' .*)?$"
enabled="y"
regexp="y"
send_to="2"
sequence="100"
>
<send>
which = %<which>
newval = %<newval>
</send>
</alias>
</aliases>
Note that the spaces will be part of the wildcard(s), you would want to trim that out. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | Top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
9,918 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top