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

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

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.