Contents

Introduction

This readme covers the most technical aspects of Wrye Bash, namely the Wizard scripting language and syntax for certain other file types. Information on the most commonly used aspects of Wrye Bash may be found in the General Readme, and the Advanced Readme holds information on more advanced and less commonly used features. Wrye Bash's version history is stored in the Version History document.

DarNified Books Wtxt Formatting

The DarNified Books setting in the Bashed Patch's tweaks allows the use of Wtxt formatting, which is applied if the first line of a book is == title ==

BAIN Wizards

Overview

BAIN Wizards allow mod authors to include a simple configuration script with their packages. Wizards run on a simple scripting language similar to OBMM script, contained in a wizard.txt file in the package. When run, the wizard will run through a series of windows to allow you to select options, then show a summary page at the end telling you which sub-packages and plugins will be selected, and any INI tweaks that will be applied.

Those using Notepad++ to write their install scripts may want to use Utumno's BAIN wizard Script Highlighter for Notepad plus plus as it features code folding and syntax highlighting to make spotting mistakes easier.

There is a similar BAIN Wizard Syntax for EmEditor syntax highlighter for EmEditor created by broken85.

Dialogs

You may use a number of different dialogs in a wizard. The available dialogs are described in this section.

Language Structure

Each line of a Wizard contains one statement. To carry a statement across multiple lines, end each line of the statement with a backslash \. This will cause BAIN to read the next line as if it were part of the first.

Wizard syntax is case-sensitive, apart from filenames. Make sure when writing Wizards that you use the correct case.

Variable names may contain any alphanumeric characters (a-z, A-Z, 0-9) and underscores (_), but cannot start with a number. You cannot declare a variable with the same name as a keyword, function or constant. Variables can be assigned values using an assignment operator, and can hold the following data types:

Constants are variables that are pre-defined by BAIN and cannot have their values changed. You cannot create new constants.

Comments are extra text ignored by the Wizard engine, to explain what the Wizard code does to other readers. Comments begin with a semicolon ; and last until the end of the line.

Expressions are evaluated using the standard order of operations, e.g. 3 + 6 * 2 will evaluate to 15.

Common Mistakes

Functions

CompareGameVersion - Used to test the installed version of the game Wrye Bash is running for against the version you specify. CompareGameVersion(version_string)

Return values:

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

Return values:

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:

CompareWBVersion - Used to test the installed version of Wrye Bash against the one you specify. CompareWBVersion(version_string)

Return values:

DataFileExists - Tests for the existence of a file in the Data directory. If the file you are testing for is a plugin, this will also detect ghosted versions of the file.

DataFileExists(file_name [, ..., file_name_n])

Return values:

GetPluginLoadOrder - Returns the current load order index of a plugin in the Data directory. You may want to combine this with GetPluginStatus to check if the plugin is enabled first.

GetPluginLoadOrder(file_name [, fallback_val])

Return values:

GetPluginStatus - Tests the current status of a plugin in the Data directory. Takes ghosting into account when testing the status.

GetPluginStatus(file_name)

Return values:

DisableINILine - Tells Wrye Bash to create an ini tweak file that disables the specified setting by commenting it out. Otherwise, behaves identically to EditINI.

DisableINILine(file_name, section, setting)

EditINI - Tells Wrye Bash to create an ini tweak file with some tweaks in it. If the file that you tell Wrye Bash to apply the tweak to is from the current installer or is the game's ini file, then Wrye Bash will also automatically apply the tweak, otherwise, it will just be generated for the user to apply manually. EditINI(file_name, section, setting, value [, comment])

Exec - This will cause the Wizard to execute lines that are passed to it. This is useful for creating dynamically generated menus. Exec(lines)

EndExec - Internal function used to mark the end of the lines executed by an Exec statement. Attempting to explicitly call it will result in an error.

EndExec(line_count)

str - Used to convert a value into a string, for example when trying to concantenate a integer or decimal to a string. str(value)

Returns:

int - Used to convert a value to an integer, for example converting a value held in a string to a integer value. int(value)

Returns:

float - Used to convert a value to decimal, for example converting a value held in a string to a decimal value. float(value)

Return values:

len - Used to find the length of a string. len(string)

Return values:

endswith - Test what a string ends with. endswith(string, ending_1 [, ..., ending_n])

Return values:

startswith - Test what a string starts with. startswith(string, prefix_1 [, ..., prefix_n])

Return values:

lower - Convert a string to lower case. lower(string)

Return values:

find - Return index of first occurrence of a substring. find(string, substring [, start, stop])

Return values:

rfind - Return index of last occurrence of a substring. rfind(string, substring [, start, stop])

Return values:

GetFilename - For a string that contains a path, returns the filename part of the string. GetFilename(path_string)

Return values:

GetFolder - For a string that contains a path, returns the folder part of the string. GetFolder(path_string)

Return values:

Deprecated Functions

CompareObVersion - Use CompareGameVersion instead.

CompareOBSEVersion - Use CompareSEVersion instead.

CompareOBGEVersion - Use CompareGEVersion instead.

GetEspmStatus - Use GetPluginStatus instead.

Keywords

Keywords are like functions, but don't require brackets around their arguments, and are used for controlling the flow of a wizard or performing special tasks.

SelectSubPackage - Cause the specified sub-package to be selected for installation. This is equivalent to checking the sub-package and all the plugins in that sub-package in the BAIN window.

SelectSubPackage name

DeSelectSubPackage - Cause the specified sub-package to be de-selected from installation. This is equivalent to un-checking the sub-package in the BAIN window. DeSelectSubPackage name

SelectPlugin - Cause the specified plugin to be selected for installation. This is equivalent to checking the plugin in the Plugin Filter of the BAIN window.

SelectPlugin plugin_name

DeSelectPlugin - Cause the specified plugin to be deselected from installation. This is equivalent to un-checking the plugin in the Plugin Filter of the BAIN window.

DeSelectPlugin plugin_name

SelectAll - Cause all sub-packages and plugins to be selected for installation. This is equivalent to first checking all sub-packages in the BAIN window, then checking all plugins in the Plugin Filter of the BAIN window.

SelectAll

DeSelectAll - Cause all sub-packages and plugins to be de-selected from installation. This is equivalent to first un-checking all plugins in the Plugin Filter of the BAIN window, then un-checking all sub-packages in the BAIN window.

DeSelectAll

SelectAllPlugins - Cause all plugins to be selected for installation. This is equivalent to checking all plugins in the Plugin Filter of the BAIN window.

SelectAllPlugins

DeSelectAllPlugins - Cause all plugins to be de-selected from installation. This is equivalent to un-checking all plugins in the Plugin Filter of the BAIN window.

DeSelectAllPlugins

RenamePlugin - Change the installed name of a plugin. Note that the file extension must stay the same.

RenamePlugin original_name, new_name

ResetPluginName - Resets the name of a plugin back to its default name.

ResetPluginName original_name

ResetAllPluginNames - Resets the names of all plugins back to their default names.

ResetAllPluginNames

Note - Add a note to the user to be displayed at the end of the wizard, on the finish page. The '- ' will be added automatically. Note text

Return - Signals completion of the wizard. This will jump right to the finish page. Return

Cancel - Cancels the wizard, with an optional text to display in a dialog as to why the wizard was canceled. Cancel [text]

RequireVersions - Tests the users system against version requirements you specify. If the requirements are not met, a warning dialog will be shown asking if you wish to continue anyway. RequireVersions game_version [, se_version, ge_version, wrye_bash_version]

If-Elif-Else-EndIf - A basic If control block. If statement lines Elif statement lines Elif statement lines Else lines EndIf

While-Continue-Break-EndWhile - A while loop. While statement lines Continue lines Break lines EndWhile

For-Continue-Break-EndFor - A For loop. For var from start_value to end_value [by increment_value] lines Continue lines Break lines EndFor For sub in SubPackages For file in sub lines EndFor EndFor

SelectOne - Shows a dialog where the user can select one option from a list of options. SelectOne 'description', \ 'option 1', 'description 1', 'image 1', \ 'option 2', 'description 2', 'image 2', \ ..., \ 'option n', 'description n', 'image n' Case 'option 1' lines Break Case 'option 2' lines Break Case 'option n' lines Break Default lines Break EndSelect

SelectMany - Shows a dialog where the user can select multiple options from a list. After the user presses the "Next" button, this begins a Select control block. See SelectOne for usage. SelectMany 'description', \ 'option 1', 'description 1', 'image 1', \ 'option 2', 'description 2', 'image 2', \ ..., \ 'option n', 'description n', 'image n' Case 'option 1' lines Break Case 'option 2' lines Break Case 'option n' lines Break EndSelect

Deprecated Keywords

SelectEspm - Use SelectPlugin instead.

DeSelectEspm - Use DeSelectPlugin instead.

SelectAllEspms - Use SelectAllPlugins instead.

DeSelectAllEspms - Use DeSelectAllPlugins instead.

RenameEspm - Use RenamePlugin instead.

ResetEspmName - Use ResetPluginName instead.

ResetAllEspmNames - Use ResetAllPluginNames instead.

Operators

Mathematical Operators

Note: For any of these operators, you can mix decimals and integers. In such a case, the integer will simply be promoted to a decimal, and the result will be a decimal as well.

Addition: +. Adds one integer or decimal to another, or concatenates two strings.

1 + 1 ; == 2 1 + 1.0 ; == 2.0 1.0 + 1 ; == 2.0 1.0 + 1.0 ; == 2.0 "foo" + "bar" ; == "foobar"

Subtraction: -. Substracts one integer or decimal from another.

1 - 1 ; == 0 1 - 1.0 ; == 0.0 1.0 - 1 ; == 0.0 1.0 - 1.0 ; == 0.0

Multiplication: *. Multiplies one integer or decimal with another, or copies a string multiple times (see example).

1 * 1 ; == 1 1 * 1.0 ; == 1.0 1.0 * 1 ; == 1.0 1.0 * 1.0 ; == 1.0 ; Multiplying a string by ; an integer just concatenates ; several copies of it: "foo" * 2 ; == "foofoo" 3 * "h" ; == "hhh" ; Note: the other type _must_ ; be an integer, decimals ; are not allowed: 2.0 * "a" ; error

Division: /. Divides one integer or decimal by another. Division by zero causes an error.

1 / 1 ; == 1 1 / 1.0 ; == 1.0 1.0 / 1 ; == 1.0 1.0 / 1.0 ; == 1.0 1 / 0 ; error 1.0 / 0.0 ; error

Modulo: %. Returns the remainder of dividing one integer or decimal by another. If the second argument is 0, an error is raised.

5 % 2 ; == 1 4 % 2 ; == 0 5 % 5 ; == 0 5.0 % 2.5 ; == 0.0 -7 % 4 ; == -3 1 % 0 ; error 1.0 % 0.0 ; error

Exponentiation: ^. Raises one integer or decimal to the power of another.

2 ^ 2 ; == 4 2 ^ 2.0 ; == 4.0 2.0 ^ 2 ; == 4.0 2.0 ^ 2.0 ; == 4.0

Assignment Operators

Assignment operators are used to assign values to variables. Compound assignment operators are a combination of assignment operator and mathematical operator, performing the operation and assigning it to a variable in one step.

Assignment: =

test = 3 ; test now has value 3 foo = "bar" ; foo now has value "bar"

Compound Assignment: +=, -=, *=, /=, ^=

Increment And Decrement Operators

These operators increase or decrease a variable containing an integer or decimal by 1 and then return the changed value. They can be placed them before or after the variable that should be changed.

Warning: If you are familiar with other programming languages, you may expect ++var and var++ to behave differently. However, in wizards they both behave the same way, returning the new value (var + 1) in both cases. In other words, wizards only support pre-increment and pre-decrement operators.

Boolean Operators

Boolean operators can be used to test the logical truth of values.

And: &, and. Returns True if both sides of the expression are true and False otherwise. var1 & var2 var1 and var2

Or: |, or. Returns True if either side of the expression is true and False otherwise. var1 | var2 var1 or var2

Not: !, not. Returns True if the expression is False, and False if the expression is True. !value not value

In: in. Returns True if the left hand side of the expression is contained in the right hand side, and False otherwise. If value in SubPackages ; do something here EndIf

Comparison Operators

Comparison operators are used to compare two values or variables with one another.

Equal: ==. Returns True if the left hand side of the expression is equal to the right hand side of the expression, and False otherwise. var1 == var2

Not Equal: !=. Returns True if the left hand side of the expression is not equal to the right hand side of the expression, and False otherwise. var1 != var2

Greater Than or Equal: >=. Returns True if the left hand side of the expression is greater than or equal to the right hand side of the expression, and False otherwise. var1 >= var2

Greater Than: >. Returns True if the left hand side of the expression is greater than the right hand side of the expression, and False otherwise. var1 > var2

Less Than or Equal: <=. Returns True if the left hand side of the expression is less than or equal to the right hand side of the expression, and False otherwise. var1 <= var2

Less Than: <. Returns True if the left hand side of the expression is less than the right hand side of the expression, and False otherwise. var1 < var2

Case Insensitive Operators

Some of the operators have case insensitive versions, which function in the same way as their normal versions, but when comparing strings they ignore case. Case insensitive versions of operators end with a colon :. The following case insensitive operators are available:

Dot Operator

The dot operator can be used to call a function on a variable without having to specify the variable in the function's arguments. This functionality will be familiar to anyone with experience in object-oriented programming: ; These two are equivalent myStr.startswith("foo") startswith(myStr, "foo")

The following functions can be used with the dot operator:

Indexing and Slicing

Indexing is used to access a specific location in a sequence. Slicing is an extension of indexing that returns a part of the sequence. Currently only strings and string variables can be indexed / sliced. The syntax used is identical to Python's syntax.

Indexing:

string[index]

Slicing:

string[start:stop:step]

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 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 sub-packages 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:

Examples

Wizards In The Wild

The following mods have Wizard scripts that may be useful references: Animated Window Lighting System and Chimneys - AWLS, BAIN Conversion Files, Bananasplit Better Cities, Fast and Easy Frans WIZBAIN Archive Maker -ENGLISH ONLY-, Metallicow Cursor Mod, Unique Landscapes Compilation, Weather - All Natural.

Create A Package Overview

Every Wizard should have a short overview for the user to read before proceeding with the actual installation questions. Notice how in the example below there are no Case statements used and the default character | is before the Start Here_Readme. SelectOne "Welcome to the ExampleMod's mod Setup Wizard", \ "|Start Here_Readme", "If this is the first time you install this mod it's recommended that you carefully read the rest of the selections readme's to have an idea of what the optional parts of this mod do.", "", \ "ExampleMod Overview", "ExampleText bla bla bla \n\nBla Bla Bla \n\n Bla Bla\n Bla", "", \ "Changelog", "Example Fixes Release 1.01 \nExample Full Public 1.0 Release \nExample 2nd Beta Release 0.91 \n0.9 - Example Beta Release \n0.3 - Example Alpha Release \n0.01 - Example Initial Release", "", \ "Guidelines for a Example install", "", "", \ "ExampleMod Screenshots", "", "Screenshots\\ExampleScreenshot.jpg", \ "Credits\\Authors", "Wrye - For BAIN. Woooooooot! \nLojack - For the wonderful BAIN wizard installer feature. \nMetallicow - For chewing the cud.", "", \ "Language", "Language or Nationality this BAIN wizard was written in. \n\n English (USA)", "Wizard Images\\EnglishUSA.jpg" EndSelect

Yes/No Question

Useful for when you want to ask the user a yes/no question. SelectOne and SelectSubPackage in the example below could be replaced by another keyword. SelectOne "Example: Yes/No Question?", \ "Yes", "Description", "Wizard Images\\Yes.jpg", \ "No", "Description", "Wizard Images\\No.jpg" Case "Yes" SelectSubPackage "00 Example Subpackage" ;;;Action/No Action Break Case "No" ;No Plugin ;;Action/No Action Break EndSelect

Check For A Plugin

Lets say that you want to check the users data folder for a specific plugin, to check if a patch (you might have created) should apply. If DataFileExists("ExamplePlugin.esp") Note "ExamplePlugin Detected." ;;;Action/No Action SelectPlugin "PatchPlugin.esp" ;;;Action/No Action Else ; ExamplePlugin.esp wasn't detected ; No Plugin ;;;Action/No Action EndIf

Use New BAIN Wizard Features Safely

Useful for when you use features available only in recent versions of Wrye Bash but want to retain support for users with older versions. If CompareWBVersion('292') >= 0 ; User is running 292+ ; Do some 292+ only stuff here, like... EditINI('Oblivion.ini', 'Display', 'bAllowScreenShot', 1) Else ; User is running < 292, so EditINI is unavailable. Note "Don't forget to enable screenshots in Oblivion.ini" EndIf

Misc. Function Examples

These: EditINI('TargetINI.ini', 'set', 'ANVars.UseEW', 1) EditINI('TargetINI.ini', 'setGS', 'fPCBaseMagickaMult', 1) EditINI('TargetINI.ini', 'SetNumericGameSetting', 'fPerkSneakAttackMarksmanNoviceMult', 1.5, "default is 2.0")

Would create INI Tweaks: set ANVars.UseEW to 1 setGS fPCBaseMagickaMult 1 SetNumericGameSetting fPerkSneakAttackMarksmanNoviceMult 1.5;default is 2.0

This: GetFilename("C:\Program Files\Bethesda Softworks\Oblivion\Oblivion.exe")

Would return "Oblivion.exe". This: GetFilename("C:\Program Files\Bethesda Softworks\Oblivion")

Would return an empty string.

This: GetFolder("Data\mine.esp")

Would return "Data". This: GetFolder("mine.esp")

Would return an empty string.

Wizards vs. OBMM Scripts

This section compares the functions and keywords available in Wizards against those available in OBMM scripts.

Functionality with direct correlation between OBMM scripts and Wizards

OBMM ScriptWizards
If <function> [...] IfNot <function> [...] If statement If not statement
Else EndIf Elif Else EndIf
If DialogYesNo <Message> [Title] SelectOne message, "Yes", yes_description, yes_image, "No", no_description, no_image Case "Yes" statements Break Case "NO" statements Break EndSelect
If DataFileExists <FileName> If DataFileExists(filename)
If ScriptExtenderPresent If CompareSEVersion("0.0.0.0") == 1
If ScriptExtenderNewerThan <version> If CompareSEVersion(version) == 1
If GraphicsExtenderPresent If CompareGEVersion("0.0.0.0") == 1
If GraphicsExtenderNewerThan <version> If CompareGEVersion(version) == 1
If OblivionNewerThan <version> If CompareGameVersion(version) == 1
If Equal <arg1> <arg2> If GreaterThan <arg1> <arg2> If GreaterEqual <arg1> <arg2> If fGreaterThan <arg1> <arg2> If fGreaterEqual <arg1> <arg2> If statement == statement If statement > statement If statement >= statement If statement > statement If statement >= statement
Select <Title> <Option1> [Option2] [...] SelectWithPreview <Title> <Option1> <ImagePath1> [Option2] [ImagePath2] [...] SelectWithDescriptions <Title> <Option1> <Description1> [Option2] [Description2] [...] SelectWithDescriptionsAndPreviews <Title> <Option1> <ImagePath1> <Description1> [Option2] [ImagePath2] [Description2] [...] SelectOne title, option1, description1, image1, option2, description2, image2 [...]
SelectMany <Title> <Option1> [Option2] [...] SelectManyWithPreview <Title> <Option1> <ImagePath1> [Option2] [ImagePath2] [...] SelectManyWithDescriptions <Title> <Option1> <Description1> [Option2] [Description2] [...] SelectManyWithDescriptionsAndPreviews <Title> <Option1> <ImagePath1> <Description1> [Option2] [ImagePath2] [Description2] [...] SelectMany title, option1, description1, image1 [...]
Case <option> Default Break EndSelect Case option Default Break EndSelect
For Count <Variable> <Start> <End> [Step] Continue Exit EndFor For variable from start to end by step Continue Break EndFor
Return Return
DontInstallPlugin <Plugin> InstallPlugin <Plugin> DeSelectPlugin plugin SelectPlugin plugin
CopyPlugin <CopyFrom> <CopyTo> RenamePlugin original_name new_name
EditINI <section> <key> <value> EditINI("Oblivion.ini", section, setting, value)
FatalError Cancel [message]
SetVar <Variable> <Value> variable = value
StringLength <Variable> <String> variable = len(string) variable = string.len()
iSet <Variable> <expression> fSet <Variable> <expression> variable = expression
ExecLines <lines> Exec(lines)
SubString <Variable> <String> <startfrom> [length] find(variable, string, start, stop) variable.find(string, start, stop)

Functions in OBMM with equivalent methods in Wizards

OBMM ScriptWizards
If VersionGreaterThan <version> If VersionLessThan <version> Use CompareWBVersion to check the Wrye Bash version.
Message <Message> [Title] DisplayImage <Image File Path> [Title] DisplayText <Text File Path> [Title] Similar functionality can be reproduced using Note and SelectOne or SelectMany keywords.
ConflictWith <ModName> [Comment] [Level] DependsOn <ModName> [Comment] [Level] Similar functionality can be reproduced using If DataFileExists(modname).
DontInstallDataFile <FileName> InstallDataFile <FileName> DontInstallDataFolder <FolderName> [RecurseSubfolders] InstallDataFolder <FolderName> [RecurseSubfolders] CopyDataFile <CopyFrom> <CopyTo> CopyDataFolder <CopyFrom> <CopyTo> [RecurseSubfolders] Similar functionality can be obtained by packaging the mod differently, and then using SelectSubPackage and DeSelectSubPackage.
For Each DataFolder <Variable> <FolderPath> [RecurseSubFolders] [SearchString] For Each DataFile <Variable> <FolderPath> [RecurseSubFolders] [SearchString] For Each PluginFolder <Variable> <FolderPath> [RecurseSubFolders] [SearchString] For Each Plugin <Variable> <FolderPath> [RecurseSubFolders] [SearchString] Use: For sub in SubPackages

and/or: For file in sub

to iterate over files and folders in an installer. Then use: file.lower().endswith(".esp") GetFilename(file) GetFolder(file)

and other string manipulation functions to test file names and folders.

Functions in OBMM without equivalent methods in Wizards

SelectVar <Variable> SelectString <Variable> Goto <label> Label <label> LoadBefore <Plugin1> <Plugin2> LoadAfter <Plugin1> <Plugin2> UncheckESP <plugin> SetDeactivationWarning <plugin> <warning> ConflictsWith <ModName> <MinMajorVersion> <MinMinorVersion><MaxMajorVersion> <MaxMinorVersion> [Comment] [Level] ConflictsWithRegex <ModName> [Comment] [Level] ConflictsWithRegex <ModName> <MinMajorVersion> <MinMinorVersion><MaxMajorVersion> <MaxMinorVersion> [Comment] [Level] DependsOn <ModName> <MinMajorVersion> <MinMinorVersion><MaxMajorVersion> <MaxMinorVersion> [Comment] [Level] DependsOnRegex <ModName> [Comment] [Level] DependsOnRegex <ModName> <MinMajorVersion> <MinMinorVersion><MaxMajorVersion> <MaxMinorVersion> [Comment] [Level] RegisterBSA <FileName> UnregisterBSA <FileName> EditShader <ShaderPackage> <ShaderName> <BinaryObjectPath> SetGMST <file> <Editor ID> <new value> SetGlobal <file> <Editor ID> <new value> SetPluginByte <file> <offset> <new value> SetPluginByte <file> <offset> <new value> SetPluginShort <file> <offset> <new value> SetPluginLong <file> <offset> <new value> SetPluginFloat <file> <offset> <new value> GetFolderName <Variable> <path> GetFileName <Variable> <path> GetFileNameWithoutExtension <Variable> <path> CombinePaths <Variable> <path1> <path2> RemoveString <Variable> <String> <startfrom> [length] InputString <Variable> [Title] [Initial] ReadINI <Variable> <section> <value> ReadRenderInfo <Variable> <value> EditXMLLine <file> <line number> <new line> EditXMLReplace <file> <text to find> <text to replace>

Functions in Wizards without equivalent methods in OBMM

CompareWBVersion(version) GetPluginStatus(plugin) DisableINILine(file_name, section, setting) str(value) int(value) float(value) SelectAll DeSelectAll SelectAllPlugins DeSelectAllPlugins While expression Continue Break EndWhile RequireVersions oblivion, obse, obge, wrye_bash

Functions in OBMM that are meaningless in Wrye Bash

OBMM ScriptWizards
PatchDataFile <NewFile> <FileToPatch> [Create] PatchPlugin <NewFile> <FileToPatch> [Create] Unnecessary due to BAIN's conflict resolution abilities.
AllowRunOnLinesWizards support run-on lines as standard.

Trusted Binaries

This format is used for exporting and importing data by the Trusted Binaries settings page. It is a simple plaintext format, stored with UTF-8 encoding (do not include a BOM when writing, but be ready to handle a BOM when reading since versions of Wrye Bash before 309 wrote BOMs) in files with the .txt extension.

Each line is either a statement or a comment. If the line begins with one of they statement keywords, as described below, it is a statement. Otherwise, it is considered a comment and ignored completely. Almost all spaces (the exceptions are spaces inside string variables) are optional and ignored. Line terminators may be either Windows-style or Unix-style.

As you may be able to tell, the syntax is pretty ugly. That's because a lot of this was generated by simply writing out Python repr()s, and we can't change it for backwards compatibility reasons.

Statements

Structure

There is no hard and fast structure for this format. Two rules do have to be observed, however:

Breaking one of these rules is a syntax error, which will result in Wrye Bash showing an error popup if one attempts to import the file.

It is suggested to use only one goodDlls and badDlls block per file and only one dll statement per binary per block. The following is an example file exported by Wrye Bash 307:

goodDlls (those dlls that you have chosen to allow to be installed) dll:skse\plugins\chargen.dll: version 00: [u'RaceMenu v3-4-5-29624-3-4-5', 585216, 2162501321L] dll:skse\plugins\nioverride.dll: version 00: [u'RaceMenu v3-4-5-29624-3-4-5', 827904, 1370081254] dll:skse\plugins\additemmenule.dll: version 00: [u'AddItemMenuLE320_SKSE173-64905-3-2-1557583553', 268800, 1953112203] dll:skse\plugins\storageutil.dll: version 00: [u'Campfire 1.11-64798-1-11', 978944, 50366834] version 01: [u'PapyrusUtil - Scripting Utility Functions-58705-3-3', 978944, 50366834] badDlls (those dlls that you have chosen to NOT allow to be installed) None

Note the comments after the goodDlls and badDlls statements, as well as the None line - that is a comment too.

Importing this file would result in four binaries being added to the 'good' binaries list. BAIN would allow these to be installed according to the version entries they have. The following list illustrates this:

CSV Formats

This section covers CSV-based formats used by Wrye Bash. See Wikipedia's article on CSV files for an introduction to the format. All CSV files used by Wrye Bash must be encoded in UTF-8. They currently require a UTF-8 BOM, but this is for historical reasons and the BOMs will become optional in a future release.

All CSV files used by Wrye Bash use commas to separate values and double quotes to quote values. Usually all values are quoted, but CSV files created by older Wrye Bash versions may not have quotes around some values, so be prepared to handle those.

The names of the CSV columns are usually unimportant and may be localized. Only the context in which the CSV file is used and its contents determine the semantic meaning.

These properties define a WBCSV file, which is the term that will be used for the rest of this section.

Package Order

This format is used by Export Order... and Import Order... to export and import BAIN package order.

The format is a WBCSV file, with two columns. Each row specifies a single entry in the package order. The order of the rows specifies the order of the packages. Missing packages will be skipped when importing.

Package Order Format
Column Name Meaning Example Value
Package The name of the package. Alternate Start - Live Another Life 4.1.7.7z
Installed? (Y/N) Y if the package was installed, N if it wasn't. Y

Example File

"Package","Installed? (Y/N)"
"==Basics==","N"
"Vanilla Script Sources.zip","Y"
"SKSE Scripts 2.2.3.7z","Y"
"Address Libary - All in one (Anniversary Edition)-32444-8-1664465359.zip","Y"
"==Essentials==","N"
"Alternate Start - Live Another Life 4.1.7.7z","Y"
"Unofficial Skyrim Creation Club Content Patch-18975-7-2-1666561973.zip","Y"
"Unofficial Skyrim Special Edition Patch-266-4-2-8-1663527575.7z","Y"
"==SKSE Fixes & Plugins==","N"
"ConsoleUtilSSE-24858-1-4-0-1665802090.zip","Y"
"MfgFix-11669-1-6-1-1664520342.7z","Y"
"SSE Display Tweaks-34705-0-5-12-1664893623.zip","Y"
"SSEDT - Personal Config.7z","Y"
"SSE Engine Fixes for 1.6.629 and newer-17230-6-1-1-1664974106.7z","Y"
"Simple Item Spawner-64653-1-50-1653532324.zip","Y"
"==Body==","N"
"XP32 Maximum Skeleton Special Extended-1988-4-81-1660739371.7z","Y"
"==Characters==","N"
"Expressive Facial Animation - Female Edition-19181-1-7-1575746557.7z","Y"
"Expressive Facial Animation - Male Edition-19532-1-21-1575813430.7z","Y"
"RaceMenu Anniversary Edition v0-4-19-14-19080-0-4-19-14-1667000011.7z","Y"
"==Combat==","N"
"Armor Rating Rescaled Remake-35296-1-0-2-1663883868.zip","Y"
"==Crafting==","N"
"Ars Metallica 2.0.6.7z","Y"
"==Interface==","N"
"Immersive HUD - iHUD-12440-0-2b.7z","Y"
"SkyHUD v090B v4-463-0-90B.zip","Y"
"Better MessageBox Controls v1_2-1428-1-2.zip","Y"
"Dialogue Interface ReShaped-46546-1-03-1616150370.zip","Y"
"More Informative Console 1.1.0 AE (1.6.640 plus )-19250-1-1-0-1664127904.zip","Y"
"==Tools==","N"
"FNIS Behavior SE 7_6 XXL-3038-7-6-1582110624.7z","Y"
"My SkyHUD Preset.7z","Y"
"==Last==","N"