Script function
world.IsPluginInstalled
Read about scripting
Type
Method
Summary
Checks to see if a particular plugin is installed
Prototype
boolean IsPluginInstalled(BSTR PluginID);
View list of data type meanings
Description
Use IsPluginInstalled to find if a particular plugin (identified by its unique Plugin ID) has been installed into this session of MUSHclient.
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"));
Python example
world.note (world.IsPluginInstalled ("982581e59ab42844527eec80"))
Lua example
Note (IsPluginInstalled ("982581e59ab42844527eec80"))
Return value
True if the plugin has been installed.
False if not installed.
See Also ...
Topics
Aliases
Arrays
Plugins
Scripting
Timers
Triggers
Variables
Functions
(BroadcastPlugin) Broadcasts a message to all installed plugins
(CallPlugin) Calls a routine in a plugin
(EnablePlugin) Enables or disables the specified plugin
(GetPluginID) Returns the 24-character ID of the current plugin
(GetPluginInfo) Gets details about a specified plugin
(GetPluginList) Gets a list of installed plugins.
(GetPluginName) Returns the name of the current plugin
(GetPluginTimerInfo) Gets details about a named timer for a specified plugin
(GetPluginTimerList) Gets the list of timers in a specified plugin
(GetPluginVariable) Gets the contents of a variable belonging to a plugin
(GetPluginVariableList) Gets the list of variables in a specified plugin
(LoadPlugin) Loads a plugin from disk
(PluginSupports) Checks if a plugin supports a particular routine
(ReloadPlugin) Reloads an installed plugin
(SaveState) Saves the state of the current plugin
(UnloadPlugin) Unloads an installed plugin
(Help topic: function=IsPluginInstalled)