GetVersionBeta - SKSE

From the CreationKit Wiki
Revision as of 22:23, 5 July 2017 by imported>XJDHDR (→‎Examples: Current example throws an "Input string was not in a correct format." error when compiling. This new example works fine.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

SKSE Member of: SKSE Script

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

Minimum required SKSE Version: 1.05.02

Syntax[edit | edit source]

Int Function GetVersionBeta() Global Native

Parameters[edit | edit source]

None

Return Value[edit | edit source]

The beta version of SKSE (third number).

Examples[edit | edit source]

  • As used with SKSE version 1.7.3 rel 48 (SKSE beta version: 3)
Int iBeta = SKSE.GetVersion()
Debug.Notification("SKSE beta version: " + iBeta)
  • Obtain complete version number as a float.
Int fSKSE = SKSE.GetVersion() * 10000 + SKSE.GetVersionMinor() * 100 + SKSE.GetVersionBeta()
Debug.Trace("SKSE Version: " + fSKSE) ; Reads "SKSE Version: 10703"

Notes[edit | edit source]

None

See Also[edit | edit source]