Difference between revisions of "Category:Oblivion Script Extender"
Jump to navigation
Jump to search
m
Category:Oblivion Script Extender (edit)
Revision as of 19:43, 31 December 2007
, 19:43, 31 December 2007no "then" syntactic sugar in OBScript
imported>Behippo (Fix formatting and update forum thread.) |
imported>EggDropSoap m (no "then" syntactic sugar in OBScript) |
||
Line 48: | Line 48: | ||
When your mod loads, use the command GetOBSEVersion to make sure a compatible version of OBSE is installed. In general, make sure you're testing for any version later than the minimum version you support, as each update to OBSE will have a higher version number. Something like: | When your mod loads, use the command GetOBSEVersion to make sure a compatible version of OBSE is installed. In general, make sure you're testing for any version later than the minimum version you support, as each update to OBSE will have a higher version number. Something like: | ||
if GetOBSEVersion < 5 | if GetOBSEVersion < 5 | ||
MessageBox "This mod requires a newer version of OBSE." | MessageBox "This mod requires a newer version of OBSE." | ||
endif | endif |