chuni doc updates
This commit is contained in:
parent
f5205801a8
commit
4a701a5755
@ -77,20 +77,21 @@ In order to use the importer locate your game installation folder and execute:
|
|||||||
python read.py --game SDBT --version <version ID> --binfolder /path/to/game/folder --optfolder /path/to/game/option/folder
|
python read.py --game SDBT --version <version ID> --binfolder /path/to/game/folder --optfolder /path/to/game/option/folder
|
||||||
```
|
```
|
||||||
|
|
||||||
The importer for Chunithm will import: Events, Music, Charge Items and Avatar Accesories.
|
The importer for Chunithm will import: Events, Music, Charge Items, Avatar Accesories, Nameplates, Characters, Trophies, Map Icons, and System Voices.
|
||||||
|
|
||||||
### Config
|
### Config
|
||||||
|
|
||||||
Config file is located in `config/chuni.yaml`.
|
Config file is located in `config/chuni.yaml`.
|
||||||
|
|
||||||
| Option | Info |
|
| Option | Info |
|
||||||
|------------------|---------------------------------------------------------------------------------------------------------------------|
|
|-----------------------|------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| `news_msg` | If this is set, the news at the top of the main screen will be displayed (up to Chunithm Paradise Lost) |
|
| `news_msg` | If this is set, the news at the top of the main screen will be displayed (up to Chunithm Paradise Lost) |
|
||||||
| `name` | If this is set, all players that are not on a team will use this one by default. |
|
| `name` | If this is set, all players that are not on a team will use this one by default. |
|
||||||
| `use_login_bonus`| This is used to enable the login bonuses |
|
| `use_login_bonus` | This is used to enable the login bonuses |
|
||||||
| `stock_tickets` | If this is set, specifies tickets to auto-stock at login. Format is a comma-delimited list of IDs. Defaults to None |
|
| `stock_tickets` | If this is set, specifies tickets to auto-stock at login. Format is a comma-delimited list of IDs. Defaults to None |
|
||||||
| `stock_count` | Ignored if stock_tickets is not specified. Number to stock of each ticket. Defaults to 99 |
|
| `stock_count` | Ignored if stock_tickets is not specified. Number to stock of each ticket. Defaults to 99 |
|
||||||
| `crypto` | This option is used to enable the TLS Encryption |
|
| `forced_item_unlocks` | Frontend UI customization overrides the allow all items of given types to be used (instead of just those unlocked/purchased by the user) |
|
||||||
|
| `crypto` | This option is used to enable the TLS Encryption |
|
||||||
|
|
||||||
|
|
||||||
If you would like to use network encryption, add the keys to the `keys` section under `crypto`, where the key
|
If you would like to use network encryption, add the keys to the `keys` section under `crypto`, where the key
|
||||||
@ -153,12 +154,15 @@ INSERT INTO aime.chuni_profile_team (teamName) VALUES (<teamName>);
|
|||||||
Team names can be regular ASCII, and they will be displayed ingame.
|
Team names can be regular ASCII, and they will be displayed ingame.
|
||||||
|
|
||||||
### Favorite songs
|
### Favorite songs
|
||||||
You can set the songs that will be in a user's Favorite Songs category using the following SQL entries:
|
Favorites can be set through the Frontend Web UI for songs previously played. Alternatively, you can set the songs that will be in a user's Favorite Songs category using the following SQL entries:
|
||||||
```sql
|
```sql
|
||||||
INSERT INTO aime.chuni_item_favorite (user, version, favId, favKind) VALUES (<user>, <version>, <songId>, 1);
|
INSERT INTO aime.chuni_item_favorite (user, version, favId, favKind) VALUES (<user>, <version>, <songId>, 1);
|
||||||
```
|
```
|
||||||
The songId is based on the actual ID within your version of Chunithm.
|
The songId is based on the actual ID within your version of Chunithm.
|
||||||
|
|
||||||
|
### Profile Customization
|
||||||
|
The Frontend Web UI supports configuration of the userbox, avatar (NEW!! and newer), map icon (AMAZON and newer), and system voice (AMAZON and newer).
|
||||||
|
|
||||||
|
|
||||||
## crossbeats REV.
|
## crossbeats REV.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user