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
➜ Help with a simple matching/printing
|
Help with a simple matching/printing
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Deramius
(12 posts) Bio
|
| Date
| Sun 27 Apr 2014 09:29 PM (UTC) |
| Message
| I am trying to get a handle on how the scripting features of MUSHclient work and need some help.
What I want to do is this: whenever I look around I want to capture the available exits via a trigger. I think want to enumerate through those triggers with a script and print each of them to my screen (but not to the world).
Here is what I have:
Trigger:
<triggers>
<trigger
enabled="y"
group="Exits"
match="(!?exits).*(north|south|east|west)"
match_text_colour="y"
name="test_trigger"
regexp="y"
script="print_exits"
send_to="12"
sequence="100"
text_colour="10"
>
<send>"%0"</send>
</trigger>
</triggers>
Script:
function print_exits(name, line, wildcards)
print("You can go %wildcards[1]")
end
I've tried tweaking this in several ways, and I always receive an error message similar to this:
Compile error
World: Discworld
Immediate execution
[string "Trigger: test_trigger"]:1: unexpected symbol near '"exits: west and north"'
You can move: %wildcards[0]
Can someone please help? | | Top |
|
| Posted by
| Nick Gammon
Australia (23,173 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Mon 28 Apr 2014 09:50 AM (UTC) |
| Message
|
This line in particular is wrong:
print("You can go %wildcards[1]")
Maybe:
print("You can go " .. wildcards[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,674 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top