mirror of
https://github.com/billsonnn/nitro-converter.git
synced 2024-11-22 23:50:52 +01:00
More updates
This commit is contained in:
parent
e6a7f3dde5
commit
df4d9bda98
@ -5,6 +5,7 @@
|
|||||||
The converter currently supports the following files:
|
The converter currently supports the following files:
|
||||||
|
|
||||||
- furnidata.xml
|
- furnidata.xml
|
||||||
|
- figuredata.xml
|
||||||
- figuremap.xml
|
- figuremap.xml
|
||||||
- effectmap.xml
|
- effectmap.xml
|
||||||
- external_texts.txt
|
- external_texts.txt
|
||||||
@ -40,6 +41,7 @@ You may set any of the urls to a local path on your system or a remote url. A lo
|
|||||||
| convert.productdata | Either `0` to skip or `1` to run |
|
| convert.productdata | Either `0` to skip or `1` to run |
|
||||||
| convert.externaltexts | Either `0` to skip or `1` to run |
|
| convert.externaltexts | Either `0` to skip or `1` to run |
|
||||||
| convert.figure | Either `0` to skip or `1` to run |
|
| convert.figure | Either `0` to skip or `1` to run |
|
||||||
|
| convert.figuredata | Either `0` to skip or `1` to run |
|
||||||
| convert.effect | Either `0` to skip or `1` to run |
|
| convert.effect | Either `0` to skip or `1` to run |
|
||||||
| convert.furniture | Either `0` to skip or `1` to run |
|
| convert.furniture | Either `0` to skip or `1` to run |
|
||||||
| convert.pet | Either `0` to skip or `1` to run |
|
| convert.pet | Either `0` to skip or `1` to run |
|
||||||
@ -50,6 +52,6 @@ To run the converter open a new terminal / console window in the main converter
|
|||||||
|
|
||||||
**Make sure you run ``npm i`` before first use.**
|
**Make sure you run ``npm i`` before first use.**
|
||||||
|
|
||||||
Type `npm run start:dev` and the converter will start running, only errors will be outputted in the console.
|
Type `npm start` and the converter will start running, only errors will be outputted in the console.
|
||||||
|
|
||||||
The converter will skip any assets that already exist but will always reconvert your XMLs / copy your JSONS to the ``gamedata`` folder to ensure you always have the latest copy.
|
The converter will skip any assets that already exist but will always reconvert your XMLs / copy your JSONS to the ``gamedata`` folder to ensure you always have the latest copy.
|
||||||
|
@ -13,6 +13,7 @@ import { ProductDataConverter } from './converters/productdata/ProductDataConver
|
|||||||
(async () =>
|
(async () =>
|
||||||
{
|
{
|
||||||
checkNodeVersion();
|
checkNodeVersion();
|
||||||
|
|
||||||
const config = container.resolve(Configuration);
|
const config = container.resolve(Configuration);
|
||||||
await config.init();
|
await config.init();
|
||||||
|
|
||||||
|
@ -16,8 +16,8 @@
|
|||||||
"convert.productdata": "1",
|
"convert.productdata": "1",
|
||||||
"convert.externaltexts": "1",
|
"convert.externaltexts": "1",
|
||||||
"convert.figure": "1",
|
"convert.figure": "1",
|
||||||
|
"convert.figuredata": "1",
|
||||||
"convert.effect": "1",
|
"convert.effect": "1",
|
||||||
"convert.furniture": "1",
|
"convert.furniture": "1",
|
||||||
"convert.pet": "1",
|
"convert.pet": "1"
|
||||||
"convert.figuredata": "1"
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user