HackersHouse.disableMethod({
{ ['libName'] = "libil2cpp",
['offset'] = 0x1000,
['libIndex'] = 'auto'
},
{ ['libName'] = "libil2cpp",
['offset'] = 0x1004,
['libIndex'] = 'auto'
}
})
Copy
HackersHouse.disableMethod({ { ['libName'] = "libil2cpp", ['offset'] = 0x1000, ['libIndex'] = 'auto' }, { ['libName'] = "libil2cpp", ['offset'] = 0x1004, ['libIndex'] = 'auto' } })
This method will stop the method from running.
You just need the offset of the method you want to disable.
HackersHouse.disableMethodOff({
{ ['libName'] = "libil2cpp",
['offset'] = 0x1000,
},
{ ['libName'] = "libil2cpp",
['offset'] = 0x1004,
},
})
Copy
HackersHouse.disableMethodOff({ { ['libName'] = "libil2cpp", ['offset'] = 0x1000, }, { ['libName'] = "libil2cpp", ['offset'] = 0x1004, }, })
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
-- RVA: 0x2000 Offset: 0x2000 -- public void Death(){} HackersHouse.disableMethod({ { ['libName'] = "libil2cpp", ['offset'] = 0x2000, ['libIndex'] = 'auto' } }) HackersHouse.disableMethodOff({ { ['libName'] = "libil2cpp", ['offset'] = 0x2000, } })