宠汪汪赛跑增加控制参加多少人的赛跑比赛,默认还是2人,可通过BoxJs或者环境变量/secret进行控制。环境变量名称JOY_TEAM_LEVEL

This commit is contained in:
lxk0301
2020-12-05 14:46:18 +08:00
parent d4f7d55965
commit 15870032d9
4 changed files with 38 additions and 13 deletions

View File

@@ -406,10 +406,31 @@
},
{
"id": "joyRunFlag",
"name": "是否参加双人赛跑(默认参加)",
"name": "是否参加赛跑(默认参加)",
"val": true,
"type": "boolean",
"desc": "开启脚本将会为您自动参加双人赛跑"
"desc": "开启脚本将会为您自动参加赛跑(默认参加双人赛跑)"
},
{
"id": "JOY_TEAM_LEVEL",
"name": "宠汪汪赛跑级别选择",
"val": "2",
"type": "radios",
"desc": "参加多少人的赛跑比赛其中2代表参加双人PK赛10代表参加10人突围赛50代表参加50人挑战赛",
"items": [
{
"key": "2",
"label": "双人PK赛"
},
{
"key": "10",
"label": "10人突围赛"
},
{
"key": "50",
"label": "50人挑战赛"
}
]
},
{
"id": "joyFeedCount",