Difference between revisions of "GetVersionMinor - SKSE"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>JohnB
(Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' SKSE Script Returns the minor version of SKSE. (This function requires SKSE) == Synt...")
 
imported>XJDHDR
(→‎Examples: Current example throws an "Input string was not in a correct format." error when compiling. This new example works fine.)
 
(One intermediate revision by one other user not shown)
Line 5: Line 5:


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


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


Line 18: Line 20:


== Examples ==
== Examples ==
<source lang="papyrus">
* As used with SKSE version 1.7.3 rel 48 (SKSE minor version: 7)
; as used with SKSE version 1.5.11 rel 27
<source lang="papyrus">Int iMinor = SKSE.GetVersion()
int vMinor = SKSE.GetVersion()
Debug.Notification("SKSE minor version: " + iMinor)</source>
Debug.Notification("SKSE minor version: " + vMinor)
*Obtain complete version number as an integer.
; SKSE minor version: 5
<source lang="papyrus">Int fSKSE = SKSE.GetVersion() * 10000 + SKSE.GetVersionMinor() * 100 + SKSE.GetVersionBeta()
</source>
Debug.Trace("SKSE Version: " + fSKSE) ; Reads "SKSE Version: 10703"</source>


== Notes ==
== Notes ==
Line 32: Line 34:
*[[GetVersion - SKSE]]
*[[GetVersion - SKSE]]
*[[GetVersionBeta - SKSE]]
*[[GetVersionBeta - SKSE]]
*[[GetVersionRelease - SKSE]]

Latest revision as of 21:23, 5 July 2017

SKSE Member of: SKSE Script

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

Minimum required SKSE Version: 1.05.02

Syntax[edit | edit source]

Int Function GetVersionMinor() Global Native

Parameters[edit | edit source]

None

Return Value[edit | edit source]

The minor version of SKSE (second number).

Examples[edit | edit source]

  • As used with SKSE version 1.7.3 rel 48 (SKSE minor version: 7)
Int iMinor = SKSE.GetVersion()
Debug.Notification("SKSE minor version: " + iMinor)
  • Obtain complete version number as an integer.
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]