Wraith
  • 👋🏻Welcome
  • ⚙️First install
  • 📖Plugin usage
    • 👌Permissions
    • Blocking hacks/custom clients
      • Block custom clients using brand name
      • Blocking Forge mods
      • Block custom clients using channel name
      • Block 5zig mods
      • Block Badlion mods
      • Block LunarClient mods
    • Manual killaura check
    • Disabling punishments
    • Fix Fabric/Forge kick
  • 🏁Disclaimer
Powered by GitBook
On this page

Was this helpful?

  1. 📖Plugin usage
  2. Blocking hacks/custom clients

Blocking Forge mods

How to block FORGE mods

Limitations (ViaVersion + Bungeecord)

Precise mods list may not be available on Bungeecord networks. It may be a Bungeecord limitation or bug, I'm currently investigating.

  • 1.8 to 1.12.2 server won't detect mods of 1.13 to 1.16 client

  • 1.13 to 1.16 server will detect mods of 1.13 to 1.16 client

  • 1.8 to 1.16 server will detect mods of 1.8 to 1.12.2 client

You can easily block them just opening the file clients-config.yml and adding them to the list like that:

  block-clients:
    forge:
      enabled-check: true
      description: "Forge"
      brands:
        enabled-check: true
        list:
          forge: true
          fml: true
      channels:
        enabled-check: true
        list:
          FORGE: true
          l:forge: true
          FML: true
          l:fml: true
          "FML|HS": true
          "fml:hs": true
          "fml:loginwrapper": true
          "fml:handshake": true
          "fml:play": true
      forge-mods:     
        enabled-check: true
        list: #             <-------------------- HERE
          5zig: true
          forgewurst: true
          schematica: true
          worlddownloader: true
          # ....

Last updated 3 years ago

Was this helpful?