GetModDependencyCount - Game
SKSE Member of: Game Script
Returns the count of mods that the specified mod depends upon. (This function requires SKSE)
SyntaxEdit
int Function GetModDependencyCount(int modIndex) native global
ParameterEdit
- modIndex = index of the mod.
Return ValueEdit
Returns the count of mods that the indexed mod depends upon.
ExamplesEdit
Int DependencyCount
Function ModDependencyCount(int Index)
DependencyCount = Game.GetModDependencyCount(Index)
Debug.Trace("Mod at " + Index + " has " + DependancyCount + " dependencies")
EndFunction