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
➜ Activating a trigger group outside of plugin
Activating a trigger group outside of plugin
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Wuggly
USA (112 posts) Bio
|
Date
| Wed 27 Jan 2016 07:36 PM (UTC) |
Message
| Needing some clarity.
If I use
World.EnableTriggerGroup("ftriggers", true)
from within a plugin, will that activate a trigger group outside of the plugin, activating the current worlds trigger group? | Top |
|
Posted by
| Nick Gammon
Australia (23,133 posts) Bio
Forum Administrator |
Date
| Reply #1 on Wed 27 Jan 2016 09:28 PM (UTC) |
Message
| No. Plugins are independent entities with their own groups, script space, etc.
It's documented here:
You can work around that by making an alias in the main world which "catches" attempts to enable all triggers from plugins.
Then "execute" that alias, by sending a command through the command-execution stream in the plugin, eg.
Execute ("enable_trigger_group foo")
Then the alias (in the main world) matches:
Which does:
EnableTriggerGroup ("%1") -- enable group in wildcard
|
- Nick Gammon
www.gammon.com.au, www.mushclient.com | Top |
|
Posted by
| Wuggly
USA (112 posts) Bio
|
Date
| Reply #2 on Wed 27 Jan 2016 09:50 PM (UTC) |
Message
| Ok, thanks.
And if I wanted to both enable/disable a trigger group, could I make it like this in regex?
Alias: ^enable\_trigger\_group (.*?) (.*?)$
EnableTriggerGroup ("%1", %2)
or would the %2 need to be "%2" | Top |
|
Posted by
| Wuggly
USA (112 posts) Bio
|
Date
| Reply #3 on Wed 27 Jan 2016 10:19 PM (UTC) |
Message
| Just wanted to say I tested and it works like that.
I tried to edit in
Execute ("enable_trigger_group ftriggers true")
Execute ("enable_trigger_group ftriggers false")
but couldn't edit for 20 minutes due to spam filter. | Top |
|
Posted by
| Nick Gammon
Australia (23,133 posts) Bio
Forum Administrator |
Date
| Reply #4 on Thu 28 Jan 2016 04:22 AM (UTC) |
Message
| You want it like you have it (no quotes on the true/false) because you want the literal word true, not "true" which is just a string with "true" in it.
As for the spam filter, it slowed down someone a couple of hours ago from posting his Complete Nonsense. |
- 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.
16,154 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top