This repository has been archived by the owner on Jan 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathBOTConfig.xml
47 lines (46 loc) · 1.98 KB
/
BOTConfig.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8" ?>
<bot-config>
<!--
The name of the universe which we want to extract.
The file must has an extension of .unx .
-->
<universe-name>eFashion2.unx</universe-name>
<!--
The path where the universe is without the "Universes" folder.
For example you have a universe like: "Universes/example/path/universe.unx"
Then the universe-parent-folder should be "example/path".
If the universe is in the "Universes" folder, then the universe-parent-folder
should be empty.
-->
<universe-parent-folder></universe-parent-folder>
<!--
The targeted folder path within which the resources are created.
This should be any empty folder anywhere on your computer.
This folder should already exist, it will not be created by the app.
For example you created an empty folder like "C:\localUniverses".
Then the local-universe path should look like this:
<local-universe-path>C:\localUniverses</local-universe-path>
-->
<local-universe-path>C:\Path\To\Local\Universes</local-universe-path>
<!--
The folder where the JSON files should be saved.
This should be any empty folder anywhere on your computer.
This folder should already exist, it will not be created by the app.
For example you created an empty folder like "C:\UniverseMetadata".
Then the output path should look like this:
<output-path>C:\UniverseMetdata</output-path>
-->
<output-path>C:\UniverseMetadata</output-path>
<!--
The bo-server-login-info includes all the authentication data to the BO server.
The user-type and the authentication field is not mandatory.
-->
<bo-server-login-info>
<server-ip>SERVER</server-ip>
<server-port>6400</server-port>
<user-name>Administrator</user-name>
<password>Secret12</password>
<user-type>1</user-type>
<authentication>secEnterprise</authentication>
</bo-server-login-info>
</bot-config>