dretax/GarHal_CSGO

GetCorrectOffset (19043)

lmzxyz opened this issue · 3 comments

int GetCorrectOffset(CHAR* Name, ULONG BuildNumber) only supports 19041 and 19042. It's outdated for BuildNumber 19043.
How can I find these offsets for the new version?

Thanks a lot if I'm not mistaken they are still the same. So changing the if statement in memory.c on line 42 to the following should do the trick.
else if (BuildNumber == 19041 || BuildNumber == 19042 || BuildNumber == 19043)

Correct