1
0
mirror of synced 2025-02-17 19:19:18 +01:00
TaikoLocalServer/README.md

49 lines
2.2 KiB
Markdown
Raw Normal View History

# Taiko Local Server
This is a server for Taiko no Tatsujin Nijiiro ver 08.18
## Setup
2022-09-13 00:51:01 +08:00
### Prerequisite
- A working game, with dongle and card reader emulation. You can use [TAL](https://github.com/BroGamer4256/TaikoArcadeLoader) for these if you haven't.
### Server setup
1. Download the server from release page, extract anywhere
2022-09-14 00:35:38 +08:00
2. From game's Data\x64\datatable folder, find music_attribute.bin, musicinfo.bin, music_order.bin and wordlist.bin, decompress them, add .json prefix to them.
The result is music_attribute.json, musicinfo.json, music_order.json and wordlist.json. Put music_attribute.json under wwwroot, the others under wwwroot/data folder in server.
3. Modify hosts, add the following entries:
2022-09-13 00:51:01 +08:00
```
server.ip tenporouter.loc
server.ip naominet.jp
server.ip v402-front.mucha-prd.nbgi-amnet.jp
server.ip vsapi.taiko-p.jp
```
where `server.ip` is your computers ip (or the server's ip)
2022-09-14 00:35:38 +08:00
4. Setup Apache as reverse proxy. Notice the following assumes a windows install, the server also works on Linux, but the guide only covers windows.
2022-09-13 00:51:01 +08:00
1. Download [Apache](https://www.apachelounge.com/download/), extract anywhere
2. Copy the content in Apache folder to Apache root folder (and replace)
2022-09-13 00:51:01 +08:00
5. Open the certs folder Apache root folder, then click on the localhost.crt file and import it to trusted root store.
2022-09-13 00:51:01 +08:00
If everything is correct, run bin/httpd.exe, a command prompt will open (and stay open, if it shut down, probably something is not setup correctly)
2022-09-14 00:35:38 +08:00
5. Now run the server, if everything is setup correctly, visit http://localhost:5000, you should be able to see the web ui up and running without errors.
2022-09-13 00:51:01 +08:00
2022-09-14 00:35:38 +08:00
6. Go to game folder, copy the config files (AMConfig.ini and WritableConfig.ini) in the AMCUS folder from server release to AMCUS folder and replace the original ones.
2022-09-13 00:51:01 +08:00
2022-09-14 00:35:38 +08:00
7. Open command prompt as admin, navigate to game root folder (where init.ps1 is). Run `regsvr32 .\AMCUS\iauthdll.dll`. It should prompt about success.
2022-09-13 00:51:01 +08:00
2022-09-14 00:35:38 +08:00
8. Run AMCUS/AMAuthd.exe, then run AMCUS/AMUpdater.exe. If the updater run and exits without issue, you are ready to run the game and connect to server.
2022-09-13 00:51:01 +08:00
2022-09-14 00:35:38 +08:00
9. Run the game, it should now connect to the server.
2022-09-13 00:51:01 +08:00