diff --git a/Mopy/Docs/Wrye Bash Technical Readme.html b/Mopy/Docs/Wrye Bash Technical Readme.html index a06ba9f6c4..d04bdafebb 100644 --- a/Mopy/Docs/Wrye Bash Technical Readme.html +++ b/Mopy/Docs/Wrye Bash Technical Readme.html @@ -170,7 +170,7 @@

Functions

CompareGEVersion - Used to test the installed version of the Graphics Extender of the game that Wrye Bash is running for against the one you specify. CompareGEVersion(version_string)

Return values:

+

Negative values for index, start and stop will be relative to the end of the sequence. For example, -1 would mean the first character from the end of the sequence.

+

Examples:

+"Hello"[0] ; returns "H" +"Hello"[2] ; returns "l" +"Hello"[0:] ; returns "Hello" +"Hello"[:] ; returns "Hello" +"Hello"[0:2] ; returns "He" +"Hello"[-1] ; returns "o" +"Hello"[1:3] ; returns "el" +"Hello"[-2:] ; returns "lo"

Standard Constants

-

Only two constants are defined in BAIN Wizards. -

True - True. Equal to boolean true (text representation) or 1 (binary representation). -

False - False. Equal to boolean false (text representation) or 0 (binary representation). +

Only three constants are defined in BAIN Wizards: +

True - True. Equal to boolean true (text representation) or 1 (binary representation).

+

False - False. Equal to boolean false (text representation) or 0 (binary representation).

+

SubPackages - A list of strings. Contains the names of the subpackages of the installer that this wizard belongs to. Can be iterated over with a For statement or used with the in operator.

Escape Sequences

Escape sequences are special sequences of characters you can use to get a different character outputted. The escape sequences allowed are: @@ -900,6 +965,7 @@

Functions in OBMM without equivalent methods in Wizards

Functions in Wizards without equivalent methods in OBMM

CompareWBVersion(version) GetEspmStatus(plugin) +DisableINILine(file_name, section, setting) str(value) int(value) float(value)