mirror of
https://gitea.tendokyu.moe/pinapelz/more-tachi-import-scripts.git
synced 2026-09-22 22:28:25 +03:00
CHUNITHM NEW and beyond. Both self-hosted and the primary AquaDX server is supported:
Arguments
| Argument | Short | Description | Default |
|---|---|---|---|
--file |
-f |
Specify the path to the playdata JSON file exported from AquaDX. Expected to be in the format of AquaNet CHUNITHM export | — |
--service |
-s |
Service description to be shown on Tachi (Note for where this score came from). | AquaDX Chuni Import |
--token |
-t |
Use your AquaNet Token to grab your play data directly from the API. Get it from the browser's Network tab. | — |
--url |
-u |
AquaNet API endpoint. No need to change this unless you self-host AquaDX. The full URL before /api is expected |
https://aquadx.net/aqua |
--output |
-o |
Output filename. | aquadx_chuni_tachi.json |
Important
You only need to specify either
--fileor--token/--url
How to get token?
As of now, your token doesn't change so once you get it once you can re-use it again. DO NOT SHARE THIS TOKEN WITH OTHER PEOPLE
The easy way
- Go to AquaDX
- CTRL+SHIFT+I (Open Dev Tools Panel)
- Under the
Consoletab, paste the following command
console.log(localStorage.getItem('token'));
The output will be your AquaDX token
The hard way
- Go to AquaDX
- CTRL+SHIFT+I (Open Dev Tools panel)
- Go to Network tab
- Refresh the page with the Dev Tools Panel Open
- Search for
/api/v2 - Click on any of the requests and check the url. There will be a part of the url that starts with
token= - Copy everything after the
=up until either the end of the URL or the next&
DO NOT SHARE THIS TOKEN WITH OTHER PEOPLE