Difference between revisions of "GetVersion - F4SE"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
(Added F4SE member)
 
imported>Qazaaq
(see also)
Line 1: Line 1:
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:F4SE]]
'''F4SE Member of:''' [[F4SE Script]]
'''F4SE Member of:''' [[F4SE Script]]


Line 33: Line 30:
*[[GetScriptVersionRelease - F4SE]]
*[[GetScriptVersionRelease - F4SE]]
*[[GetPluginVersion - F4SE]]
*[[GetPluginVersion - F4SE]]
*[[GetF4SEVersion]]
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:F4SE]]

Revision as of 21:13, 20 January 2018

F4SE Member of: F4SE Script

Returns the major version of F4SE which is the first number of the version scheme.

Syntax

int Function GetVersion() Global Native

Parameters

None

Return Value

The major version of F4SE.

Examples

int iMajor = F4SE.GetVersion()
Debug.Notification("F4SE major version: " + iMajor)

Notes

  • The version scheme follows Major.Minor.Beta.Release (9.9.9.9)

See Also