Hackers House Last seen recently
Hello, How can we help you?

# disableMethod()

    HackersHouse.disableMethod({
      { ['libName'] = "libil2cpp", 
        ['offset'] = 0x1000,
        ['libIndex'] = 'auto'
      },
      { ['libName'] = "libil2cpp", 
        ['offset'] = 0x1004,
        ['libIndex'] = 'auto'
      }
    })
  
Copy
What inputs are supported by what attributes?

# Description :

This method will stop the method from running.

You just need the offset of the method you want to disable.

# Switch Off :

    HackersHouse.disableMethodOff({
      { ['libName'] = "libil2cpp", 
        ['offset'] = 0x1000,
      },
      { ['libName'] = "libil2cpp", 
        ['offset'] = 0x1004,
      },
    })
  
Copy

# Examples :

The commented code is an example of function you will find in dump.cs. And the code below that shows how to modify the working of that function.

    // RVA: 0x2000 Offset: 0x2000
    // public void Death(){}

    HackersHouse.disableMethod({
      { ['libName'] = "libil2cpp", 
        ['offset'] = 0x2000,
        ['libIndex'] = 'auto'
      }
    })

    HackersHouse.disableMethodOff({
      { ['libName'] = "libil2cpp", 
        ['offset'] = 0x2000,
      }
    })

Copy

# These topics might be interesting to you.