Skip to content

Instantly share code, notes, and snippets.

@echo off
del .\patched.xml
copy .\assets.xml .\patched.xml
SETLOCAL ENABLEDELAYEDEXPANSION
for /d %%g in ("*") DO (
call :processmod "%%g"
)
goto :eof
@taubenangriff
taubenangriff / unpack.bat
Created July 29, 2022 19:37
Unpack Anno 1800 island
@ECHO off
call :set_islandname "%cd%"
ECHO unpacking island
::A7M unpacking
START /W RdaConsole ^extract -f %island_name%_river_01.a7m -o %island_name% -y
CD /D %island_name%
@taubenangriff
taubenangriff / create.bat
Created July 29, 2022 19:37
Create Anno 1800 Island from patch
@ECHO off
::this just sets the island name to the executing directories name.
::if the island name should be fixed:
::set island_name="colony01_m_04"
call :set_islandname "%cd%"
ECHO Applying XML patches
CD /D %island_name%
START /W xmltest gamedata_original.xml gamedata_patch.xml
RDAConsole.exe -v 2 -f test abc.a7m -y -o test_output.rda -r
@taubenangriff
taubenangriff / README
Last active February 21, 2023 23:02 — forked from Equinox-/README
Very simple DDS plugin for GIMP that uses texconv to convert things behind the scenes to encode/decode BC7 - Edited to work with Anno 1800
1. Download the `file-dds-texconv.py` file. Edit BINARY to be the path to your texconv binary (located in the SE ModSDK, or elsewhere)
2. Copy the script into the GIMP plugins directory. For instance, `C:\Program Files\GIMP 2\lib\gimp\2.0\plug-ins`