Skip to content

Instantly share code, notes, and snippets.

@antichown
Created February 27, 2021 20:09
Show Gist options
  • Save antichown/3abf0ab3c94cf11cc99d9db7fe2eabb0 to your computer and use it in GitHub Desktop.
Save antichown/3abf0ab3c94cf11cc99d9db7fe2eabb0 to your computer and use it in GitHub Desktop.
var NFS = Module.findBaseAddress("Game.dll");
var Speed = ptr(NFS).add(0x0005060);
Interceptor.attach(Speed, {
onLeave:function (retval) {
console.log("Speed",retval);
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment