| Name | GetPluginTriggerList |
|---|---|
| Type | Method |
| Summary | Gets the list of triggers in a specified plugin |
| Prototype | VARIANT GetPluginTriggerList(BSTR PluginID); |
| Description | Returns
an array of all the named triggers currently defined for the nominated plugin.
You can then use GetPluginTriggerInfo to find out more details about each
one. If you want to find the list of triggers in the current plugin, use "GetTriggerList". If you are writing a plugin and want to find the "global" MUSHclient trigger list, use an empty plugin ID, eg. trList = world.GetPluginTriggerList ("") Note: Available in MUSHclient version 3.23 onwards. |
| VBscript example | |
| Jscript example | |
| PerlScript example | |
| Returns | If there are no triggers (with names) then the return value is empty. Use "IsEmpty" to test for this possibility. |
See also ...