2024-05-17 06:29:00 -04:00
# Aquaria Randomizer Setup Guide
## Required Software
2024-05-20 02:58:44 -04:00
- The original Aquaria Game (purchasable from most online game stores)
2024-12-19 20:17:56 -05:00
- The [Aquaria randomizer ](https://github.com/tioui/Aquaria_Randomizer/releases/latest )
2024-05-20 02:58:44 -04:00
## Optional Software
2024-12-19 20:17:56 -05:00
- For sending [commands ](/tutorial/Archipelago/commands/en ) like `!hint` : the TextClient from [the most recent Archipelago release ](https://github.com/ArchipelagoMW/Archipelago/releases/latest )
2024-10-17 03:34:10 +02:00
- [Aquaria AP Tracker ](https://github.com/palex00/aquaria-ap-tracker/releases/latest ), for use with
[PopTracker ](https://github.com/black-sliver/PopTracker/releases/latest )
2024-05-17 06:29:00 -04:00
## Installation and execution Procedures
### Windows
First, you should copy the original Aquaria folder game. The randomizer will possibly modify the game so that
the original game will stop working. Copying the folder will guarantee that the original game keeps on working.
Also, in Windows, the save files are stored in the Aquaria folder. So copying the Aquaria folder for every Multiworld
2024-05-20 02:58:44 -04:00
game you play will make sure that every game has its own save game.
2024-05-17 06:29:00 -04:00
2024-05-20 02:58:44 -04:00
Unzip the Aquaria randomizer release and copy all unzipped files in the Aquaria game folder. The unzipped files are:
2024-05-17 06:29:00 -04:00
- aquaria_randomizer.exe
- OpenAL32.dll
2025-10-04 23:08:34 -04:00
- randomizer_files (directory)
2024-05-17 06:29:00 -04:00
- SDL2.dll
- usersettings.xml
- wrap_oal.dll
- cacert.pem
2024-05-20 02:58:44 -04:00
If there is a conflict between files in the original game folder and the unzipped files, you should overwrite
the original files with the ones from the unzipped randomizer.
2024-05-17 06:29:00 -04:00
2025-10-04 23:08:34 -04:00
There is multiple way to start the game. The easiest one is using the launcher. To do that, just run
the `aquaria_randomizer.exe` file.
You can also launch the randomizer using the command line interface (you can open the command line interface
2024-05-20 02:58:44 -04:00
by typing `cmd` in the address bar of the Windows File Explorer). Here is the command line used to start the
2024-05-17 06:29:00 -04:00
randomizer:
```bash
aquaria_randomizer.exe --name YourName --server theServer:thePort
```
or, if the room has a password:
```bash
aquaria_randomizer.exe --name YourName --server theServer:thePort --password thePassword
```
### Linux when using the AppImage
2024-05-20 02:58:44 -04:00
If you use the AppImage, just copy it into the Aquaria game folder. You then have to make it executable. You
2025-10-04 23:08:34 -04:00
can do that from the command line by using:
2024-05-17 06:29:00 -04:00
```bash
chmod +x Aquaria_Randomizer-*.AppImage
```
2025-10-04 23:08:34 -04:00
or by using the Graphical file Explorer of your system (the permission can generally be set in the file properties).
To launch the randomizer using the integrated launcher, just execute the AppImage file.
2024-05-17 06:29:00 -04:00
2025-10-04 23:08:34 -04:00
You can also use command line arguments to set the server and slot of your game:
2024-05-17 06:29:00 -04:00
```bash
./Aquaria_Randomizer-*.AppImage --name YourName --server theServer:thePort
```
or, if the room has a password:
```bash
./Aquaria_Randomizer-*.AppImage --name YourName --server theServer:thePort --password thePassword
```
2024-05-20 02:58:44 -04:00
Note that you should not have multiple Aquaria_Randomizer AppImage file in the same folder. If this situation occurs,
2024-05-17 06:29:00 -04:00
the preceding commands will launch the game multiple times.
### Linux when using the tar file
First, you should copy the original Aquaria folder game. The randomizer will possibly modify the game so that
the original game will stop working. Copying the folder will guarantee that the original game keeps on working.
2024-05-20 02:58:44 -04:00
Untar the Aquaria randomizer release and copy all extracted files in the Aquaria game folder. The extracted files are:
2024-05-17 06:29:00 -04:00
- aquaria_randomizer
2025-10-04 23:08:34 -04:00
- randomizer_files (directory)
2024-05-17 06:29:00 -04:00
- usersettings.xml
- cacert.pem
2024-05-20 02:58:44 -04:00
If there is a conflict between files in the original game folder and the extracted files, you should overwrite
the original files with the ones from the extracted randomizer files.
2024-05-17 06:29:00 -04:00
2024-05-20 02:58:44 -04:00
Then, you should use your system package manager to install `liblua5` , `libogg` , `libvorbis` , `libopenal` and `libsdl2` .
2025-10-04 23:08:34 -04:00
On Debian base systems (like Ubuntu), you can use the following command:
2024-05-17 06:29:00 -04:00
```bash
sudo apt install liblua5.1-0-dev libogg-dev libvorbis-dev libopenal-dev libsdl2-dev
```
2024-05-20 02:58:44 -04:00
Also, if there are certain `.so` files in the original Aquaria game folder (`libgcc_s.so.1` , `libopenal.so.1` ,
2024-05-17 06:29:00 -04:00
`libSDL-1.2.so.0` and `libstdc++.so.6` ), you should remove them from the Aquaria Randomizer game folder. Those are
old libraries that will not work on the recent build of the randomizer.
2025-10-04 23:08:34 -04:00
To launch the randomizer using the integrated launcher, just execute the `aquaria_randomizer` file.
You can also use command line arguments to set the server and slot of your game:
2024-05-17 06:29:00 -04:00
```bash
./aquaria_randomizer --name YourName --server theServer:thePort
```
or, if the room has a password:
```bash
./aquaria_randomizer --name YourName --server theServer:thePort --password thePassword
```
2024-05-20 02:58:44 -04:00
Note: If you get a permission denied error when using the command line, you can use this command to be
2024-05-17 06:29:00 -04:00
sure that your executable has executable permission:
```bash
chmod +x aquaria_randomizer
```
2025-10-04 23:08:34 -04:00
### Steam deck
On the Steamdeck, go in desktop mode and follow the same procedure as the Linux Appimage.
### No sound on Linux/Steam deck
If your game play without problems, but with no sound, the game probably does not use the correct
driver for the sound system. To fix that, you can use `ALSOFT_DRIVERS=pulse` before your command
line to make it work. Something like this (depending on the way you launch the randomizer):
```bash
ALSOFT_DRIVERS=pulse ./Aquaria_Randomizer-*.AppImage --name YourName --server theServer:thePort
```
2024-10-17 03:34:10 +02:00
## Auto-Tracking
Aquaria has a fully functional map tracker that supports auto-tracking.
1. Download [Aquaria AP Tracker ](https://github.com/palex00/aquaria-ap-tracker/releases/latest ) and
[PopTracker ](https://github.com/black-sliver/PopTracker/releases/latest ).
2. Put the tracker pack into /packs/ in your PopTracker install.
3. Open PopTracker, and load the Aquaria pack.
4. For autotracking, click on the "AP" symbol at the top.
5. Enter the Archipelago server address (the one you connected your client to), slot name, and password.
This pack will automatically prompt you to update if one is available.