This is the AMP version of this page.
If you want to load the real page instead, click this text.

Hooking voids!

Geno Modz

Platinian
Original poster
Aug 16, 2023
11
2
3
23
your moms house
How should i hook the following offset?
public static void set_timeScale(float value) { }
This void does not have an update function but my friend did it and he wont tell me how!
 
Reactions: ASDFGHJKLQWE

ASDFGHJKLQWE

Solid & Active Platinian
Jul 10, 2022
65
19
8
Nepal
If You are using lgl then
Code:
void (*old_timeScale) (float value);
void get_timeScale(float value) {
if (mod) {
old_timeScale(2000.00f);
return;
}
old_timeScale(value);
}