Skip to content

Commit

Permalink
chore: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrBox committed Feb 12, 2025
1 parent d35bf44 commit 08b3860
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ For X-Ray prevention, see [here](anti_x_ray.md).

```jsonc
{
"version": 9,
"version": 10,
"consoleLog": true,
"worldSafety": {
"fakeSeed": {
Expand Down Expand Up @@ -186,7 +186,7 @@ For X-Ray prevention, see [here](anti_x_ray.md).
"antiFakeName": false,
"antiSpawnXpOrbs": true,
"antiXpHack": true,
"antiBadPacketHack": false
"antiBadPacket": true
},
"bugFixes": {
"uiItemDuplicateFix": true,
Expand Down Expand Up @@ -218,7 +218,9 @@ For X-Ray prevention, see [here](anti_x_ray.md).
"antiSpam": {
"enable": true,
"maxChatLength": 300,
"maxRate": 2,
"maxCmdRate": 2, // Maximum command executing rate in 1 second
"chatRateDuration": 10, // Chat rate check duration, in seconds
"maxChatRate": 5, // Maximum chat rate in chatRateDuration seconds
"disableSelector": true
},
"itemNameLengthCheck": {
Expand All @@ -245,11 +247,13 @@ For X-Ray prevention, see [here](anti_x_ray.md).
"combat": {
"autoClickCheck": {
"enable": true,
"maxCps": 15,
"maxCps": 12,
"detectLevel": 10
},
"reachDistanceCheck": {
"enable": true,
"reachDistance": 3.200000047683716,
"reachDistanceCreative": 5.300000190734863,
"detectLevel": 7
}
},
Expand Down
12 changes: 8 additions & 4 deletions README.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ lip install github.com/LiteLDev/LeviAntiCheat

```jsonc
{
"version": 9, // 配置文件版本
"version": 10, // 配置文件版本
"consoleLog": true, // 是否在控制台记录日志
"worldSafety": { // 世界安全配置
"fakeSeed": { // 假种子配置
Expand Down Expand Up @@ -186,7 +186,7 @@ lip install github.com/LiteLDev/LeviAntiCheat
"antiFakeName": false, // 是否启用反假名
"antiSpawnXpOrbs": true, // 是否启用反生成经验球
"antiXpHack": true, // 是否启用反经验值作弊
"antiBadPacketHack": false // 是否启用反坏数据包
"antiBadPacket": true // 是否启用反坏数据包
},
"bugFixes": { // Bug 修复配置
"uiItemDuplicateFix": true, // UI物品复制修复
Expand Down Expand Up @@ -218,7 +218,9 @@ lip install github.com/LiteLDev/LeviAntiCheat
"antiSpam": { // 反垃圾信息
"enable": true, // 是否启用反垃圾信息
"maxChatLength": 300, // 最大聊天长度
"maxRate": 2, // 最大发送速率
"maxCmdRate": 2, // 一秒钟内最高指令速率
"chatRateDuration": 10, // 聊天速率检查间隔,以秒为单位
"maxChatRate": 5, // chatRateDuration秒内最高聊天速率
"disableSelector": true // 禁用选择器
},
"itemNameLengthCheck": { // 物品名称长度检查
Expand All @@ -245,11 +247,13 @@ lip install github.com/LiteLDev/LeviAntiCheat
"combat": { // 战斗检测
"autoClickCheck": { // 自动点击检测
"enable": true, // 是否启用自动点击检测
"maxCps": 15, // 最大每秒点击次数
"maxCps": 12, // 最大每秒点击次数
"detectLevel": 10 // 检测级别
},
"reachDistanceCheck": { // 攻击距离检测
"enable": true, // 是否启用攻击距离检测
"reachDistance": 3.200000047683716, // 除创造模式外最大攻击范围
"reachDistanceCreative": 5.300000190734863, // 创造模式最大攻击范围
"detectLevel": 7 // 检测级别
}
},
Expand Down

0 comments on commit 08b3860

Please sign in to comment.