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
➜ Sometimes this trigger works...
|
Sometimes this trigger works...
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Jeagan
(2 posts) Bio
|
| Date
| Tue 22 Dec 2009 11:46 AM (UTC) |
| Message
| Alright... So I have the following trigger:
<triggers>
<trigger
enabled="y"
match="Player Name On For Idle Under Construction"
send_to="12"
sequence="800"
>
<send>world.EnableTriggerGroup "WHOISIDLE", 1</send>
</trigger>
</triggers>
And it matches perfectly fine, the issue is that it pops up a scripting error and doesn't compile I guess. I use a very very similar script to this one all the time, and I can't seem to figure out why it works and this one fails, so I really need help bad. I get the following error:
Error number: 0
Event: Compile error
Description: [string "Trigger: "]:1: unexpected symbol near ','
Called by: Immediate execution
I'm not super incredibly savvy at this, so any help would be great. Thanks. | | Top |
|
| Posted by
| Nick Gammon
Australia (23,173 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Tue 22 Dec 2009 06:24 PM (UTC) |
| Message
| In Lua arguments have to be in brackets, unless you have a single string argument, which you don't. Change:
world.EnableTriggerGroup "WHOISIDLE", 1
to:
world.EnableTriggerGroup ("WHOISIDLE", 1)
|
- Nick Gammon
www.gammon.com.au, www.mushclient.com | | Top |
|
| Posted by
| Jeagan
(2 posts) Bio
|
| Date
| Reply #2 on Tue 22 Dec 2009 06:59 PM (UTC) |
| Message
| | Annnnnd... That fixed it. Thanks Nick! | | 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,816 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top