config.yml- #配置文件版本,不得擅自修改
- version: 1 #do not modify this
- #whether GAC will be active in all levels (if not changed below) or not
- #是否检测所有世界(如果不,需要在下面配置排除的世界)
- default_active: true
- #add all worlds where AC should be in the opposite state than #default_active property
- #不检测的世界
- excluded_levels: [""]
- #例子:
- #excluded_levels: ["world1", "test", "survival world"]
- #if true, plugin will kick the player if detects cheats
- #是否检测到玩家作弊时踢出
- kick_players: true
- #if true, anticheat will checks even OP players
- #是否检测OP
- check_ops: false
- #manage all available checks (enable/disable)
- #检测项目
- checks:
- #加速(包括垂直移动与水平移动)
- speed: true #vertical and horizontal speed
- #飞行(包括无效移动)
- fly: true #fly and other invalid movement checks
- #秒挖
- speedmine: true
- #出窍(CPU占用高)
- nuker: false #checks if player can see the block (this check takes a bit more CPU than other checks)
- #轻功
- glide: true
- #传送
- teleport: true
- #穿墙
- noclip: true
- #刷屏
- spam: true
- #瞬移
- reach: true
- #自瞄
- aimbot: true
- settings:
- #刷屏延迟
- spam_delay: 8 #delay between messages #currently not implemented
- #最大攻击范围
- hit_range: 4 #max hit range
复制代码 |