-
Notifications
You must be signed in to change notification settings - Fork 1
zh 配置文件
Jasonzyt edited this page Sep 18, 2021
·
1 revision
配置文件存在于[BDS]/plugins/FakePlayerHelper/config.json
不存在会自动创建
下面是一个配置文件的样例:
{
"Skin": "random",
"Language": "zh-cn",
"Allow_TP": true,
"Kick_FP_when_summoner_left": false,
"Max_Global_FP": 5,
"Max_Player_FP": 2,
"WS_Port": 54321,
"Permission": {
"Allow": "ALL",
"Specified": [
1145141919810
]
}
}
- Skin:
字符串
指定或随机假人的皮肤,可以为("random","steve","alex")之一 - Language:
字符串
插件语言,默认支持"zh-cn"/"en",如需更多语言请自行完善langpack.json
- Allow_TP:
布尔值
是否允许使用传送假人 - Kick_FP_when_summoner_left:
布尔值
是否在添加者退出时移除假人(别问我为啥键这么长xD) - Max_Global_FP:
0-2147483647
最大全局假人数量,为0
表示不限 - Max_Player_FP:
0-2147483647
最大玩家添加假人数量,为0
表示不限 - WS_Port:
1-65535
FakePlayer
软件的WebSocket服务端端口 - Permission:
对象
权限- Allow:
字符串
允许谁使用假人相关命令 "ALL"表示所有玩家,"Specified"表示特定玩家,"ConsoleOnly"表示只有控制台能使用 - Specified:
数组
指定的玩家的Xuid数组(仅在Allow为Specified时需要)
- Allow:
Welcome to create Pull Requests/Issues