Background for Skyrim SE
Member of the SKSE script
intfunctionGetVersion()NativeGlobal

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()

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.