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

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. FExxx

Auto-Generated Example

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

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.