Name IsPluginInstalled
Type Method
Summary Checks to see if a particular plugin is installed
Prototype boolean IsPluginInstalled(BSTR PluginID);
Description Use IsPluginInstalled to find if a particular plugin (identified by its unique Plugin ID) has been installed into this session of MUSHclient.


Note: Available in MUSHclient version 3.23 onwards.
VBscript example
world.note world.IsPluginInstalled ("982581e59ab42844527eec80")
Jscript example
world.note (world.IsPluginInstalled ("982581e59ab42844527eec80"));
PerlScript example
$world->note ($world->IsPluginInstalled ("982581e59ab42844527eec80"));
Returns True if the plugin has been installed.
False if not installed.

See also ...