[+] Props for matching

matching
Azalea 2024-12-29 07:07:47 -05:00
parent 99983b1eb1
commit 9b21193be2
2 changed files with 9 additions and 8 deletions

View File

@ -46,16 +46,15 @@ aquaviewer.api.enable=false
game.chunithm.team-name=
## Chusan
## The version of your client data. If this doesn't match with your game, you will not be able to play some game modes.
## Match this with data.conf file in latest option.
## For example, if data.conf says "VerMajor = 2, VerMinor = 5, VerRelease = 4" then this need to be 2.05.04
game.chusan.version=2.00.00
## The version of your client rom. Same applies as above.
## Match this with version in "Game system information" of test menu.
game.chusan.rom-version=2.00.01
## This enables team function if you set team name here. Leave this blank to disable it.
## This enables team function if you set team name here. Leave this blank to use default
game.chusan.team-name=
## This sets the reflector url for global matching
game.chusan.reflector-url=http://reflector.naominet.live:18080/
## This sets the matching server url.
## When this is set, we will sync with the external matching url so that we can match with more players.
game.chusan.external-matching=https://chu3-match.sega.ink/
## This enables user use login bonus function if set to true.
## NOTE: THIS IS NOT TESTED, it's implemented by someone very inexperienced and might not work.
game.chusan.loginbonus-enable=false
## Ongeki

View File

@ -8,4 +8,6 @@ import org.springframework.context.annotation.Configuration
class ChusanProps {
var teamName: String? = null
var loginBonusEnable = false
var externalMatching: String? = null
var reflectorUrl: String? = null
}