GetVersionBeta - SKSE
Revision as of 18:52, 6 October 2012 by imported>JustinOther (Linked GetVersionRelease/Prefixed Int vars with 'i'/Added second example with complete version number as a float/Added Minimum SKSE version)
SKSE Member of: SKSE Script
Returns the beta version of SKSE. (This function requires SKSE)
Minimum required SKSE Version: 1.05.02
Syntax
Int Function GetVersionBeta() Global Native
Parameters
None
Return Value
The beta version of SKSE (third number).
Examples
- As used with SKSE version 1.5.11 rel 27 (SKSE beta version: 11)
Int iBeta = SKSE.GetVersion()
Debug.Notification("SKSE beta version: " + iBeta)
- Obtain complete version number as a float.
Float fSKSE = SKSE.GetVersion() + SKSE.GetVersionMinor() * 0.01 + SKSE.GetVersionBeta() * 0.0001
Debug.Trace("SKSE Version: " + fSKSE) ; Reads "SKSE Version: 1.0511"
Notes
None