- Found in:
- F4SE
Description
Wiki Description
Returns an array of installed plugins with the esl flag set.
Caveats
Examples
; get array of installed light plugins
Game:PluginInfo[] Plugins = Game.GetInstalledLightPlugins()
int i = 0
while ( i < Plugins.Length )
Debug.Trace("Light Plugin: " + Plugins[i].name + " at index: " + Plugins[i].index+ ":" + i + " is by " + Plugins[i].author)
Debug.Trace("description : " + Plugins[i].description)
i += 1
endwhile
; Note:
; member index will always be 0xFE.
; array index = plugin index i.e. FExxxAuto-Generated Example
Game:PluginInfo[] returnedValue = Game.GetInstalledLightPlugins()Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
