您尚未登录,请登录后浏览更多内容! 登录 | 加入最MC

QQ登录

只需一步,快速开始

 找回密码
 加入最MC

QQ登录

只需一步,快速开始

查看: 28376|回复: 8
打印 上一主题 下一主题

[转载插件] [安全]SBC 0.1.0 —— 一个轻量级的反作弊插件[1.7.2

[复制链接]
  • TA的每日心情
    慵懒
    2017-4-15 11:33
  • 签到天数: 41 天

    [LV.5]常住居民I

    跳转到指定楼层
    楼主
    发表于 2015-4-18 07:14:45 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
    服务端插件
    中文名称: SBC
    英文名称: SBC - Simple Block Codes
    来源: 转载
    类型: |Spout插件| |Bukkit/Spigot插件| |其它| 
    前置插件: None
    原帖地址: http://dev.bukkit.org/bukkit-plugins/sbc/
    下载地址: http://dev.bukkit.org/bukkit-plugins/sbc/files/
    更新时间: 2014-10-16
    语言支持: 简体中文 English 
    这个插件可以干嘛?

    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 — 存储建筑




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

    评分

    参与人数 1人气 +5 MC币 +5 收起 理由
    574885378 + 5 + 5 唉哟不错哟!

    查看全部评分

    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
  • TA的每日心情
    慵懒
    2017-4-15 11:33
  • 签到天数: 41 天

    [LV.5]常住居民I

    沙发
     楼主| 发表于 2015-6-6 07:10:31 | 只看该作者
    这个个。好
    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
  • TA的每日心情

    2015-9-9 13:17
  • 签到天数: 2 天

    [LV.1]初来乍到

    板凳
    发表于 2015-9-5 13:28:06 | 只看该作者
    貌似没效果 1.72 测试 照样开狂追 飞行
    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友

    该用户从未签到

    地板
    发表于 2016-5-21 09:47:06 | 只看该作者
    怎么允许地图

    点评

    33  详情 回复 发表于 2016-7-22 01:52
    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友

    该用户从未签到

    5#
    发表于 2016-7-22 01:52:58 | 只看该作者
    2811016955 发表于 2016-5-21 09:47
    怎么允许地图

    33
    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友

    该用户从未签到

    6#
    发表于 2016-7-27 13:43:54 | 只看该作者
    后面插件
    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友

    该用户从未签到

    7#
    发表于 2016-7-31 20:40:03 | 只看该作者
    ...
    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
  • TA的每日心情
    无聊
    2018-7-9 21:24
  • 签到天数: 7 天

    [LV.3]偶尔看看II

    8#
    发表于 2017-4-18 06:11:21 | 只看该作者
    2333333333333333333
    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    您需要登录后才可以回帖 登录 | 加入最MC

    本版积分规则