Background for Fallout 4
Member of the Game script
Game:PluginInfo[]functionGetInstalledPlugins()NativeGlobal

Description

Wiki Description

Returns an array of installed plugins with the esm or esp flag set.


Caveats


Examples

; get array of installed plugins that are not esl flagged.
Game:PluginInfo[] Plugins = Game.GetInstalledPlugins()
int i = 0
while ( i < Plugins.Length )
    Debug.Trace("Plugin: " + Plugins[i].name + " at index: " + Plugins[i].index + " is by " + Plugins[i].author)
    Debug.Trace("description: " + Plugins[i].description)
    i += 1
endwhile

; Note:
; i = Plugins[i].index, array index = plugin index

Auto-Generated Example

Game:PluginInfo[] returnedValue = Game.GetInstalledPlugins()

Related Pages


Additional References

View this function’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.