- Found in:
- SKSE
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")
EndFunctionAuto-Generated Example
int myInt__modIndex
int returnedValue = Game.GetModDependencyCount(myInt__modIndex)