- Found in:
- SKSE
Description
Wiki Description
Returns the minor version of SKSE. (This function requires SKSE)
Documentation Comment
get the minor version of SKSE
Caveats
CK Wiki - Notes
None
Examples
Int iMinor = SKSE.GetVersion()
Debug.Notification("SKSE minor version: " + iMinor)Int fSKSE = SKSE.GetVersion() * 10000 + SKSE.GetVersionMinor() * 100 + SKSE.GetVersionBeta()
Debug.Trace("SKSE Version: " + fSKSE) ; Reads "SKSE Version: 10703"Auto-Generated Example
int returnedValue = SKSE.GetVersionMinor()