i hear cheats talk about hooks and hooking, like fixing hooks and stuff. i know c# but still don't understand what they are.
i hear cheats talk about hooks and hooking, like fixing hooks and stuff. i know c# but still don't understand what they are.
Hooking is the process of intercepting code execution. While it is commonly used in internal cheats, it can also be performed externally.
Hooking allows your code to be executed when specific functions or events occur. Some common reasons for hooking include:
// Target to hook
function player_touch_ground()
// Function to replace Target
function bhop_hook()
{
player_jump();
original_player_touch_ground();
}
// Applying the Hook
original_player_touch_ground = player_touch_ground;
player_touch_ground = bhop_hook;
In this example, bhop_hook()
intercepts player_touch_ground(), allowing the player to automatically jump when they touch the ground.