[Solved] Finding timer in program process C# [closed]


Somehow I found the answer after taking LOTS of guesses…

uint oddTimer = 1509949440;
double trueTimer = (oddTimer / 256^3) * 0.1;
return (uint)Math.Ceiling((double)trueTimer);

This returns 9:00

EDIT: Also, when pulling the oddTimer from memory, I have to remember to set it to a ulong because of the amount of digits given can break a normal int32.

solved Finding timer in program process C# [closed]