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