- Found in:
- F4SE
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 indexAuto-Generated Example
Game:PluginInfo[] returnedValue = Game.GetInstalledPlugins()Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
