enter intro cutscene

This commit is contained in:
Naruse
2026-04-20 12:40:38 +08:00
parent 2826239284
commit 279da58dc1
81 changed files with 7279 additions and 0 deletions

42
Config/Config.json Normal file
View File

@@ -0,0 +1,42 @@
{
"HttpServer": {
"BindAddress": "0.0.0.0",
"PublicAddress": "127.0.0.1",
"Port": 21500
},
"GameServer": {
"BindAddress": "0.0.0.0",
"PublicAddress": "127.0.0.1",
"Port": 21000,
"KcpAliveMs": 45000,
"DatabaseName": "Miku.db",
"GameServerId": "MikuSB",
"GameServerName": "MikuSB"
},
"Path": {
"ResourcePath": "Resources",
"ConfigPath": "Config",
"DatabasePath": "Config/Database",
"HandbookPath": "Config/Handbook",
"LogPath": "Config/Logs",
"DataPath": "Config/Data"
},
"ServerOption": {
"Language": "EN",
"FallbackLanguage": "EN",
"DefaultPermissions": [
"Admin"
],
"ServerProfile": {
"Name": "Miku-chan",
"Uid": 80
},
"AutoCreateUser": true,
"SavePersonalDebugFile": false,
"AutoSendResponseWhenNoHandler": true,
"EnableDebug": true,
"DebugMessage": true,
"DebugDetailMessage": true,
"DebugNoHandlerPacket": true
}
}