mirror of https://github.com/hykilpikonna/AquaDX
[+] Props for matching
parent
99983b1eb1
commit
9b21193be2
|
@ -46,16 +46,15 @@ aquaviewer.api.enable=false
|
||||||
game.chunithm.team-name=
|
game.chunithm.team-name=
|
||||||
|
|
||||||
## Chusan
|
## 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.
|
## This enables team function if you set team name here. Leave this blank to use default
|
||||||
## 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.
|
|
||||||
game.chusan.team-name=
|
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.
|
## 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
|
game.chusan.loginbonus-enable=false
|
||||||
|
|
||||||
## Ongeki
|
## Ongeki
|
||||||
|
|
|
@ -8,4 +8,6 @@ import org.springframework.context.annotation.Configuration
|
||||||
class ChusanProps {
|
class ChusanProps {
|
||||||
var teamName: String? = null
|
var teamName: String? = null
|
||||||
var loginBonusEnable = false
|
var loginBonusEnable = false
|
||||||
|
var externalMatching: String? = null
|
||||||
|
var reflectorUrl: String? = null
|
||||||
}
|
}
|
Loading…
Reference in New Issue