最MC论坛

标题: [安全]SBC 0.1.0 —— 一个轻量级的反作弊插件[1.7.2 [打印本页]

作者: 1150019436    时间: 2015-4-18 07:14
标题: [安全]SBC 0.1.0 —— 一个轻量级的反作弊插件[1.7.2
这个插件可以干嘛?

SBC是个非常轻量反作弊的插件
monsterfix分离出来的插件
他有防止各种透视 小地图雷达 矿物追踪 更有spigot都不具备的 灵活动作的爬墙 加速跑 建筑小偷mod  

没错,就是怎么屌




可以防以下作弊MOD:
CJB
Zombe
Rei's minimap  小地图
Minecraft Automap
Smart Moving   灵活动作
Schematica  建筑小偷
如果你想开启某些功能可以在config里面添加一些代码来启用这些功能




代码列表:
  1. All block codes was obtained from public sources. If you have information about additional control codes for any mods, I will happy to include that codes in SBC.

  2. CJB

  3. §3 §9 §2 §0 §0 §2 - x-ray
  4. §3 §9 §2 §0 §0 §1 - fly
  5. §3 §9 §2 §0 §0 §3 - radar
  6. Zombe

  7. §f §f §2 §0 §4 §8 - z-cheat
  8. §f §f §4 §0 §9 §6 - noclip
  9. §f §f §1 §0 §2 §4 - fly
  10. Rei's minimap

  11. §0§0§1§e§f - cave enable
  12. §0§0§2§3§4§5§6§7§e§f - radar (all entities, players)
  13. Minecraft Automap

  14. §0§0§1§f§e - ore detector
  15. §0§0§2§f§e - indoor/cave mapping
  16. §0§0§3§4§5§6§7§8§f§e - entity and player radar
  17. Smart Moving

  18. §0§1§0§1§2§f§f - climbing
  19. §0§1§3§4§f§f - swimming:
  20. §0§1§5§f§f - crawling:
  21. §0§1§6§f§f - sliding:
  22. §0§1§8§9§a§b§f§f - jumping
  23. §0§1§7§f§f - alternative fly
复制代码


config设置内容(一般情况下完全不需要修改)
  1. You don't need to edit config.yml if you going to enable or disable currently supported mods. Use permissions instead. You must edit configuration only if you going to add new block-codes or edit current.

  2. Default config file will be created after first-time plugin startup:

  3. # SBC by fromgate, http://dev.bukkit.org/bukkit-plugins/sbc/
  4. # You can add new block codes in this file:
  5. # Field: <BlockCodeGroup>.<BlockCodeName>.code must contain a block code
  6. # Field: <BlockCodeGroup>.<BlockCodeName>.block is set to "true" if this code
  7. # required to block mod and to "false" if this code required to allow mod
  8. schematica:
  9.   printer:
  10.     code: '&0&2&0&0&e&f'
  11.     block: true
  12.   save:
  13.     code: '&0&2&1&0&e&f'
  14.     block: true
  15.   load:
  16.     code: '&0&2&1&1&e&f'
  17.     block: true
  18. cheats:
  19.   zmbzcheat:
  20.     code: '&f &f &2 &0 &4 &8 '
  21.     block: true
  22.   zmbnoclip:
  23.     code: '&f &f &4 &0 &9 &6 '
  24.     block: true
  25.   cjbxray:
  26.     code: '&3 &9 &2 &0 &0 &2 '
  27.     block: true
  28.   reicave:
  29.     code: '&0&0&1&e&f'
  30.     block: false
  31.   automap-ore:
  32.     code: '&0&0&1&f&e'
  33.     block: true
  34.   automap-cave:
  35.     code: '&0&0&2&f&e'
  36.     block: true
  37.   smart-climb:
  38.     code: '&0&1&0&1&2&f&f'
  39.     block: true
  40.   smart-swim:
  41.     code: '&0&1&3&4&f&f'
  42.     block: true
  43.   smart-crawl:
  44.     code: '&0&1&5&f&f'
  45.     block: true
  46.   smart-slide:
  47.     code: '&0&1&6&f&f'
  48.     block: true
  49.   smart-jump:
  50.     code: '&0&1&8&9&a&b&f&f'
  51.     block: true
  52. fly:
  53.   zmbfly:
  54.     code: '&f &f &1 &0 &2 &4 '
  55.     block: true
  56.   cjbfly:
  57.     code: '&3 &9 &2 &0 &0 &1 '
  58.     block: true
  59.   smart-fly:
  60.     code: '&0&1&7&f&f'
  61.     block: true
  62. radar:
  63.   cjbradar:
  64.     code: '&3 &9 &2 &0 &0 &3 '
  65.     block: true
  66.   reiradar:
  67.     code: '&0&0&2&3&4&5&6&7&e&f'
  68.     block: false
  69.   automap-radar:
  70.     code: '&0&0&3&4&5&6&7&8&f&e'
  71.     block: true
  72. Config sections is include group node (cheats, fly, radar, schematica) and permission node for single block code (zmbzcheat, zmbnoclip, cjbxray, reicave, zmbfly... etc). Parameter code of the section includes block-code. The inv parameters is defining when blockcode will be sent to player. If inv is set to true block code will be sent if player has not a permission "sbc.<group>" or "sbc.<group node>.<permission node>". If ".block" is set to true, block-code will be sent only if player has a required permission (it means that tartget block require block-code to disable the mod functionality).

  73. Add new block-code or message

  74. You can add new block-codes to config.yml file, and even you can use SBC to display on join message to player defined by his permission. Example of custom block-code/message:

  75. custom:
  76.   msg1:
  77.     code: 'custom message No1'
  78.     block: true
  79.   msg2:
  80.     code: 'custom message No2'
  81.     block: false
  82. If player has permission "sbc.custom" he will receive message "custom message No2". But if he has not permission "sbc.custom" he will receive message "custom message No2". Same for permissions "sbc.custom.msg1" and "sbc.custom.msg2". If player has permission "sbc.custom.msg1" he will not receive "custom message No1". If player has permission "sbc.custom.msg2" he will receive "custom message No2".
复制代码


权限列表:
sbc.cheats.zmbzcheat —允许zombe的zcheat透视
sbc.cheats.zmbnoclip —允许zombe的noclip飞行
sbc.cheats.cjbxray — 允许cjb的x-ray
sbc.cheats.reicave  允许reis map的洞穴透视
sbc.fly.zmbfly    允许zombe的飞行
sbc.fly.cjbfly — 允许cjb的飞行
sbc.radar.reiradar — 允许reis map的雷达
sbc.radar.cjbradar — 允许cjb的雷达
sbc.cheats.automap-ore — 允许automap的矿物追踪
sbc.cheats.automap-cave — 允许automap的洞穴透视
sbc.radar.automap-radar 允许automap显示怪物和玩家
sbc.cheats.smart-climb — 灵活动作 爬行 爬墙
sbc.cheats.smart-swim — 灵活动作 花式游泳
sbc.cheats.smart-crawl — 灵活动作 爬行 趴地上
sbc.cheats.smart-slide — 灵活动作 滑行
sbc.cheats.smart-fly — 灵活动作 飞行
sbc.cheats.smart-jump — 灵活动作 跳
sbc.schematica.printer — 建筑 打印
sbc.schematica.load — 读取建筑
sbc.schematica.save — 存储建筑




搬运好辛苦 啊!
求给金币!!

作者: 1150019436    时间: 2015-6-6 07:10
这个个。好
作者: jiangkan    时间: 2015-9-5 13:28
貌似没效果 1.72 测试 照样开狂追 飞行
作者: 2811016955    时间: 2016-5-21 09:47
怎么允许地图
作者: q3114193775    时间: 2016-7-22 01:52
2811016955 发表于 2016-5-21 09:47
怎么允许地图

33
作者: 131313sdad    时间: 2016-7-27 13:43
后面插件
作者: 131313sdad    时间: 2016-7-31 20:40
...

作者: 靓仔大大    时间: 2017-4-18 06:11
2333333333333333333
作者: 彭俊    时间: 2017-6-7 20:30





欢迎光临 最MC论坛 (http://www.zuimc.com/) Powered by Discuz! X3.2