Difference between revisions of "GetNVSERevision"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Odessa
(created page)
 
imported>Odessa
(typo)
 
Line 5: Line 5:
  |returnType = int
  |returnType = int
  |example = if GetNVSEVersion == 4 && GetNVSERevision < 3
  |example = if GetNVSEVersion == 4 && GetNVSERevision < 3
     MessageBoxEx "This mod requires revision 3 of NVSE 4, please upgrade"
     MessageBoxEx "This mod requires revision 3 or later of NVSE 4, please upgrade"
  endif
  endif
}}
}}
==See Also==
==See Also==
*[[GetNVSERVersion]]
*[[GetNVSEVersion]]
*[[GetNVSEBeta]]
*[[GetNVSEBeta]]
[[Category:Functions_(NVSE)]]
[[Category:Functions_(NVSE)]]

Latest revision as of 11:12, 13 April 2014

< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Returns the revision number of the installed version of NVSE. Added by NVSE V1.1.

Syntax

[help]
(int) GetNVSERevision

Example

if GetNVSEVersion == 4 && GetNVSERevision < 3
   MessageBoxEx "This mod requires revision 3 or later of NVSE 4, please upgrade"
endif

See Also