IsPluginInstalled

Revision as of 11:58, 13 September 2014 by imported>Odessa (created)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Returns true (1) if the specified NVSE plugin is loaded. Note that plugin names are set during registration and displayed in the file, nvse.log, it is not the file name. Added by NVSE 4.5.

Syntax

(bool) IsPluginInstalled PluginName:string

Example

if IsPluginInstalled "MCM Extensions" ; MCM
...
if IsPluginInstalled "Extensions for NVSE" ; NX
...
if IsPluginLoaded "lutana_nvse" ; Lutana
...

See Also