Background for Skyrim SE
Member of the Game script
intfunctionGetModDependencyCount(intmodIndex)NativeGlobal

Description

Wiki Description

Returns the count of mods that the specified mod depends upon. (This function requires SKSE)

Documentation Comment

gets the count of mods the specified mod depends upon


Caveats


Parameters

intmodIndex


Examples

Int DependencyCount

Function ModDependencyCount(int Index)
    DependencyCount = Game.GetModDependencyCount(Index)
    Debug.Trace("Mod at " + Index + " has " + DependancyCount + " dependencies")
EndFunction

Auto-Generated Example

int myInt__modIndex

int returnedValue = Game.GetModDependencyCount(myInt__modIndex)

Related Pages


Additional References

View this function’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.