From 06d95c8c5fa4881b28cdb66ac4d8597b0bd71fd6 Mon Sep 17 00:00:00 2001 From: Midorica Date: Sat, 7 Oct 2023 11:59:01 -0400 Subject: [PATCH] Adding details under the game specific info doc --- docs/game_specific_info.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/docs/game_specific_info.md b/docs/game_specific_info.md index e7d4d96..0d94e56 100644 --- a/docs/game_specific_info.md +++ b/docs/game_specific_info.md @@ -59,6 +59,28 @@ python read.py --game SDBT --version --binfolder /path/to/game/fold The importer for Chunithm will import: Events, Music, Charge Items and Avatar Accesories. +### Config + +Config file is located in `config/chuni.yaml`. + +| Option | Info | +|------------------|----------------------------------------------------------------------------------------------------------------| +| `name` | If this is set, all players that are not on a team will use this one by default. | +| `rank_scale` | Scales the in-game ranking based on the number of teams within the database | +| `use_login_bonus`| This is used to enable the login bonuses | +| `crypto` | This option is used to enable the TLS Encryption | + + +**If you would like to use network encryption, the following will be required underneath but key, iv and hash are required:** + +```shell +crypto: + encrypted_only: False + keys: + 12: ["0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000", "0000000000000000"] + 13: ["0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000", "0000000000000000"] +``` + ### Database upgrade Always make sure your database (tables) are up-to-date, to do so go to the `core/data/schema/versions` folder and see @@ -241,6 +263,9 @@ Config file is located in `config/diva.yaml`. | `unlock_all_modules` | Unlocks all modules (costumes) by default, if set to `False` all modules need to be purchased | | `unlock_all_items` | Unlocks all items (customizations) by default, if set to `False` all items need to be purchased | +### Custom PV Lists (databanks) + +In order to use custom PV Lists, simply drop in your .dat files inside of /titles/diva/data/ and make sure they are called PvList0.dat, PvList1.dat, PvList2.dat, PvList3.dat and PvList4.dat exactly. ### Database upgrade @@ -287,9 +312,20 @@ Config file is located in `config/ongeki.yaml`. | Option | Info | |------------------|----------------------------------------------------------------------------------------------------------------| | `enabled_gachas` | Enter all gacha IDs for Card Maker to work, other than default may not work due to missing cards added to them | +| `crypto` | This option is used to enable the TLS Encryption | Note: 1149 and higher are only for Card Maker 1.35 and higher and will be ignored on lower versions. +**If you would like to use network encryption, the following will be required underneath but key, iv and hash are required:** + +```shell +crypto: + encrypted_only: False + keys: + 6: ["0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000", "0000000000000000"] + 7: ["0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000", "0000000000000000"] +``` + ### Database upgrade Always make sure your database (tables) are up-to-date, to do so go to the `core/data/schema/versions` folder and see