First commit

This commit is contained in:
才羽青空 2025-12-27 14:37:37 +08:00
commit 0a2f12846a
50 changed files with 29417 additions and 0 deletions

32
js/serverList.js Normal file
View file

@ -0,0 +1,32 @@
var serverList = [
{
//name 控制在大厅显示的名称。
name: "AS",
//description 默认不显示,但必须保留该参数。
description: "Asia Server",
//ip 控制玩家连接的服务器地址
ip: "43.248.139.242:8888"
},
{
//name 控制在大厅显示的名称。
name: "EU",
//description 默认不显示,但必须保留该参数。
description: "European Server",
//ip 控制玩家连接的服务器地址
ip: "185.254.158.46:7777"
},
{
//name 控制在大厅显示的名称。
name: "RU",
//description 默认不显示,但必须保留该参数。
description: "Russian Server",
//ip 控制玩家连接的服务器地址
ip: "81.177.135.63"
}
]