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
  • How to block LunarClient mods
  • All disabled, they can't be clicked:

Was this helpful?

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

Block LunarClient mods

How to block LunarClient mods

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

    LunarClient:
      enabled-check: true
      description: "LunarClient"
      brands:
        enabled-check: true
        list:
          lunarclient^: true
          LunarClient: true
          Lunar-Client: true
      channels:
        enabled-check: true
        list:
          "lunarclient:pm": true
      lunarclient-mods:
        block: true
        block-staff-modules: true
        list: #             <-------------------- HERE
          replaymod: true
          one_seven_visuals: true
          fps: false
          cps: true
          skyblockAddons: true
          toggleSneak: true
          zoom: true
          hypixel_mod: true
          # ....

This allows you to avoid blocking the client completely but block only the mods. This turns the client into a normal Minecraft.

If you want to disable kicking but disable only the mods you have to disable the channels and brands blocking like that:

    LunarClient:
      enabled-check: true
      description: "LunarClient"
      brands:
        enabled-check: true
        list:
          lunarclient^: false # <--- here false
          LunarClient: false # <--- here false
          Lunar-Client: false # <--- here false
      channels:
        enabled-check: true
        list:
          "lunarclient:pm": false # <--- here false
      lunarclient-mods:
        block: true # <--- here true
        block-staff-modules: true

All disabled, they can't be clicked:

Last updated 3 years ago

Was this helpful?