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
➜ Lua
➜ More Wildcards
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Rojan QDel
USA (9 posts) Bio
|
| Date
| Thu 24 Jan 2008 02:07 AM (UTC) |
| Message
| | How can I use more than 9 wildcards with LUA? I'm trying to make my prompt show on the info bar but it has 12 wildcards necessary. | | Top |
|
| Posted by
| Nick Gammon
Australia (23,173 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Thu 24 Jan 2008 02:33 AM (UTC) |
| Message
| First, I don't want to nitpick, but it is Lua not LUA. See:
http://www.lua.org/about.html#name
Lua is a name, not an acronym.
When you say "with Lua", do you mean in a script file? Script files get a wildcard argument, like this:
function ExampleTrigger (thename, theoutput, wildcards, line)
print ("12th wildcard is", wildcards [12])
end -- of ExampleTrigger
You can simply index into the wildcards array for any wildcard number. Or you can use named wildcards and use the name.
However if you just mean in the "send" field, you can do this:
Send: this is wildcard %<12>
I am sure it mentions this somewhere in the help file, but can't see it right now.
Thus the wildcards would be:
%1
%2
%3
%4
%5
%6
%7
%8
%9
%<10>
%<11>
%<12>
Of course, wildcard 1 can also be written as %<1>.
|
- 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.
11,636 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top