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

# Frequently asked questions

# How to find method and offsets?

The easiy way to find method and offsets in an unity games is to dump the game and search in the dump.cs file. Watch how to dump. For non unity or undumpable games you have to open the code compiled file into a disassembler and find functions and offsets.

# voidHook only works for void functions?

No, voidHook can be used to hook non void function too. However the return value will be ignored.

# Why do we use update offset for void hooking?

Game guardian doesnt allow us to force call a function. Update methods are methods in unity games that are called each frame. Since update methods are called many times in a second we modify update method to also call other methods.

# In void hooking can i put offset of other method in place of update method?

Yes you can. voidHook function modifies the target function to call destination offset without overriding the target function. The target function can be any function.

# Can i hook multiple methods using same update offset?

Yes you can.

# Do i need different offsets for 32 bit and 64 bit version of same game?

Yes offsets are different in 32 bit and 64 version of same game.

# These topics might be interesting to you.