Difference between revisions of "GetVersion - SKSE"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>JohnB
imported>JustinOther
m (Linked GetVersionRelease/Prefixed Int vars with 'i'/Added second example with complete version number as a float/Added Minimum SKSE version)
Line 5: Line 5:


Returns the major version of SKSE.  (This function requires SKSE)
Returns the major version of SKSE.  (This function requires SKSE)
{{SKSEFunction|1.05.02}}


== Syntax ==
== Syntax ==
<source lang="papyrus">
<source lang="papyrus">
int Function GetVersion() global native
Int Function GetVersion() Global Native
</source>
</source>


Line 18: Line 20:


== Examples ==
== Examples ==
<source lang="papyrus">
* As used with SKSE version 1.5.11 rel 27 (SKSE major version: 1)
; as used with SKSE version 1.5.11 rel 27
<source lang="papyrus">Int vMajor = SKSE.GetVersion()
int vMajor = SKSE.GetVersion()
Debug.Notification("SKSE major version: " + iMajor)</source>
Debug.Notification("SKSE major version: " + vMajor)
*Obtain complete version number as a float.
; SKSE major version: 1
<source lang="papyrus">Float fSKSE = SKSE.GetVersion() + SKSE.GetVersionMinor() * 0.01 + SKSE.GetVersionBeta() * 0.0001
</source>
Debug.Trace("SKSE Version: " + fSKSE) ; Reads "SKSE Version: 1.0511"</source>
 
== Notes ==
== Notes ==
None
None
Line 32: Line 33:
*[[GetVersionMinor - SKSE]]
*[[GetVersionMinor - SKSE]]
*[[GetVersionBeta - SKSE]]
*[[GetVersionBeta - SKSE]]
*[[GetVersionRelease - SKSE]]

Revision as of 18:52, 6 October 2012

SKSE Member of: SKSE Script

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

Minimum required SKSE Version: 1.05.02

Syntax

Int Function GetVersion() Global Native

Parameters

None

Return Value

The major version of SKSE (first number).

Examples

  • As used with SKSE version 1.5.11 rel 27 (SKSE major version: 1)
Int vMajor = SKSE.GetVersion()
Debug.Notification("SKSE major version: " + iMajor)
  • 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

See Also