- Found in:
- SKSE
Description
Wiki Description
Returns the major version of SKSE. (This function requires SKSE)
Documentation Comment
get the major version of SKSE
Caveats
CK Wiki - Notes
None
Examples
Int iMajor = SKSE.GetVersion()
Debug.Notification("SKSE major version: " + iMajor)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.GetVersion()