0 of 0

File information

Last updated

Original upload

Created by

ZoolooS

Uploaded by

Feeleen

Virus scan

Safe to use

Documentation

Readme

View as plain text

# ZoolooS' Config Generator for Space Engineers aka zcg-se

## zcg-se can do

- Generates Mods part for SE sbc-files (`Sandbox_config.sbc`, `Sandbox.sbc`) by modlist.
- For now thats all %).

## Prerequisites

- Installed `Python`. I think with 3.10+ all will work correct.
- ~~Installed `lxml`.~~ For now simple text generation.
- Project was build with `uv`, so you can use it too to make your live little bit easier.

## How to use

You need create modlist plaintext file named `modlist_in.txt`.
Or you can edit modlist generated by `zce-se` util.
Put `modlist_in.txt` file to `_in` folder (by default) near this script.
Run script (main.py). Like `uv run main.py` or `python main.py` or whatever.
Script will generate XML file `modlist_out.xml` in `_out` folder (by default) with Mods part which you can just copy/replace to SE sbc-files (`Sandbox_config.sbc`, `Sandbox.sbc`).
Modlist must be in format (Headers will be ignored):

```txt
[Header1]
-:|: FriendlyName1 :|: ModId1
-:|: FriendlyName2 :|: ModId2
[Header2]
-:|: FriendlyName3 :|: ModId3
-:|: FriendlyName4 :|: ModId4
...
```

You can change some settings in `settings.py` file.

---
- Copyright © 2025 Ilya Popov aka ZoolooS. All rights reserved.
- Author: Ilya Popov aka ZoolooS
- Description: This file is the part of "ZoolooS' Config Exporter for Space Engineers" application
---