2023-10-25 10:46:54 +02:00
|
|
|
# TaikoArcadeLoader
|
|
|
|
|
|
|
|
This is a loader for Taiko no Tatsujin Nijiiro ver.
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
|
|
|
Copy the extracted contents of dist.zip to the same directory as Taiko.exe
|
|
|
|
|
|
|
|
### config.toml
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[amauth]
|
|
|
|
# connection server
|
|
|
|
server = "127.0.0.1"
|
2024-03-23 17:37:57 +01:00
|
|
|
# connection port
|
|
|
|
port = "54430"
|
|
|
|
# dongle serial
|
|
|
|
chassis_id = "284111080000"
|
|
|
|
# shop name
|
|
|
|
shop_id = "TAIKO ARCADE LOADER"
|
|
|
|
# game version
|
|
|
|
game_ver = "00.00"
|
|
|
|
# country code
|
|
|
|
country_code = "JPN"
|
2023-10-25 10:46:54 +02:00
|
|
|
|
|
|
|
[patches]
|
|
|
|
# patch version
|
|
|
|
# auto: hash detection (you need to use the original exe)
|
2024-03-23 17:37:57 +01:00
|
|
|
# jp_nov_2020: JPN 08.18
|
|
|
|
# jp_apr_2023: JPN 39.06
|
|
|
|
# cn_jun_2023: CHN 00.32 (JPN 32.09)
|
2023-10-25 10:46:54 +02:00
|
|
|
version = "auto"
|
|
|
|
# window resolution
|
|
|
|
res = { x = 1920, y = 1080 }
|
2023-11-05 12:47:07 +01:00
|
|
|
# window mode
|
|
|
|
windowed = false
|
2023-11-28 22:39:26 +01:00
|
|
|
# vertical sync
|
|
|
|
vsync = false
|
2024-03-26 19:04:23 +01:00
|
|
|
# auto change to english ime mode
|
|
|
|
auto_ime = false
|
2023-11-28 22:39:26 +01:00
|
|
|
# unlock all songs
|
|
|
|
unlock_songs = true
|
2023-10-25 10:46:54 +02:00
|
|
|
|
2024-03-24 11:47:10 +01:00
|
|
|
[patches.audio]
|
|
|
|
# wasapi shared mode
|
|
|
|
wasapi_shared = true
|
|
|
|
# use asio
|
|
|
|
asio = false
|
|
|
|
# asio driver name
|
|
|
|
asio_driver = ""
|
|
|
|
|
2023-10-25 10:46:54 +02:00
|
|
|
[patches.cn_jun_2023]
|
|
|
|
# sync test mode language to attract etc.
|
|
|
|
fix_language = false
|
|
|
|
# show demo movie
|
|
|
|
demo_movie = true
|
|
|
|
# enable one piece collab mode
|
|
|
|
mode_collabo025 = false
|
|
|
|
# enable ai soshina mode
|
|
|
|
mode_collabo026 = false
|
2024-03-24 20:38:57 +01:00
|
|
|
|
|
|
|
[card_reader]
|
|
|
|
# enable card reader emulation
|
|
|
|
enabled = true
|
2023-10-25 10:46:54 +02:00
|
|
|
|
|
|
|
[qr]
|
2024-03-24 20:38:57 +01:00
|
|
|
# enable qr emulation
|
|
|
|
enabled = true
|
2024-03-23 17:37:57 +01:00
|
|
|
# qr image path
|
|
|
|
image_path = ""
|
|
|
|
|
|
|
|
# qr data used for other events (ex. gaiden, custom folder)
|
|
|
|
[qr.data]
|
|
|
|
# qr serial
|
|
|
|
serial = ""
|
|
|
|
# qr type
|
|
|
|
# 0: default (serial only)
|
|
|
|
# 5: custom folder
|
|
|
|
type = 0
|
|
|
|
# song noes used for custom folder
|
|
|
|
song_no = []
|
2023-10-25 10:46:54 +02:00
|
|
|
|
|
|
|
[drum]
|
|
|
|
# input interval (if you are using taiko drum controller, it should be set to 0)
|
|
|
|
wait_period = 4
|
2024-03-23 17:37:57 +01:00
|
|
|
|
|
|
|
[controller]
|
|
|
|
# use analog input
|
|
|
|
analog = false
|
2023-10-25 10:46:54 +02:00
|
|
|
```
|