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

Description

Wiki Description

Returns the beta version of SKSE. (This function requires SKSE)

Documentation Comment

get the beta version of SKSE


Caveats

CK Wiki - Notes

None


Examples

Int iBeta = SKSE.GetVersion()
Debug.Notification("SKSE beta version: " + iBeta)
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.GetVersionBeta()

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.