GetVersionMinor - SKSE
Revision as of 16:02, 19 August 2012 by 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...")
SKSE Member of: SKSE Script
Returns the minor version of SKSE. (This function requires SKSE)
Syntax
int Function GetVersionMinor() global native
Parameters
None
Return Value
The minor version of SKSE (second number).
Examples
; as used with SKSE version 1.5.11 rel 27
int vMinor = SKSE.GetVersion()
Debug.Notification("SKSE minor version: " + vMinor)
; SKSE minor version: 5
Notes
None