DO/Modding/Tools/BTBXML

From Dark Omen Wiki

(Difference between revisions)
Jump to: navigation, search
Line 13: Line 13:
The XML Output file will be appear in the same Map Folder and is called out.xml,  double click to run and Internet Explorer will display its contents or edit with XML Editor and once finshed use the xmlbtb.py script to convert your out.xml file changes, back into B1_01.BTB
The XML Output file will be appear in the same Map Folder and is called out.xml,  double click to run and Internet Explorer will display its contents or edit with XML Editor and once finshed use the xmlbtb.py script to convert your out.xml file changes, back into B1_01.BTB
-
To Mod other Maps alter the Map Name (Coloured in Green Text) at the end of each script file and  
+
To Mod other Maps Edit the Map Name (Coloured in Green Text) at the end of each script file and  
-
paste these 2 python scritps into the same folder as .BTB file you want to alter.  
+
paste these 2 python scritps into the same folder as the .BTB file you want to alter.  
Example:
Example:
Line 20: Line 20:
B = BTB("B5_01B.BTB")
B = BTB("B5_01B.BTB")
 +
B.toXML()
B.toXML()
 +
xmlFile.close()
xmlFile.close()
-
Then Run ->Run Module (Prompts for Save) and will produce a new out.xml in :\Program Files\Dark Omen\GameData\1pbat\B5_01B and after you edit and save your changes in the new out.xml, open and run xmlbtb.py and the end of its script to
+
 
 +
Then Run ->Run Module (Prompts for Save) and will produce a new out.xml in :\Program Files\Dark Omen\GameData\1pbat\B5_01B and after you edit and save your changes in the new out.xml (using an XML Editor), open and edit the end of xmlbtb.py script
F = file("B5_01B.BTB","wb")
F = file("B5_01B.BTB","wb")
 +
F.write(out.getvalue())
F.write(out.getvalue())
-
F.close()
 
 +
F.close()
and again Run and Save and this will now convert the changes you made in out.xml directly into B5_01B.BTB (hover your mouse over the file to see a new a Modified Date appear thats confirms the successfull changes).
and again Run and Save and this will now convert the changes you made in out.xml directly into B5_01B.BTB (hover your mouse over the file to see a new a Modified Date appear thats confirms the successfull changes).

Revision as of 13:20, 23 March 2011

Download Rob's BTBXML Converter ->

http://en.dark-omen.org/downloads/view-details/1.-modding-tools/1.-map-editor/btbxml.html

Install latest Python -> http://www.python.org/download/

Install XML Editor like Microsoft's XML Notepad 2007

Unzip the BTBXML download into your desired Map Folder C:\Program Files\Dark Omen\GameData\1pbat\B1_01 and Right Click to select Edit with Idle on either btbxml.py (to convert B1_01.BTB to XML) or xmlbtb.py that will covert xml to .BTB

Once Edit with Idle has been select it will open the python file, so select Run at the top of the menu bar and then Run Module or press F5

The XML Output file will be appear in the same Map Folder and is called out.xml, double click to run and Internet Explorer will display its contents or edit with XML Editor and once finshed use the xmlbtb.py script to convert your out.xml file changes, back into B1_01.BTB

To Mod other Maps Edit the Map Name (Coloured in Green Text) at the end of each script file and paste these 2 python scritps into the same folder as the .BTB file you want to alter.

Example: Paste btbxml.py and xmlbtb.py into B5_01B and Edit the end of btbxml.py script

B = BTB("B5_01B.BTB")

B.toXML()

xmlFile.close()


Then Run ->Run Module (Prompts for Save) and will produce a new out.xml in :\Program Files\Dark Omen\GameData\1pbat\B5_01B and after you edit and save your changes in the new out.xml (using an XML Editor), open and edit the end of xmlbtb.py script

F = file("B5_01B.BTB","wb")

F.write(out.getvalue())

F.close()

and again Run and Save and this will now convert the changes you made in out.xml directly into B5_01B.BTB (hover your mouse over the file to see a new a Modified Date appear thats confirms the successfull changes).

Personal tools
communication