Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25807 Location: The netherlands
|
Posted: Sat Aug 07, 2021 10:38 am Post subject: |
|
|
set a breakpoint and watch it all.
Or use lua
| Code: |
debug_setBreakpoint(0x10002B42C,function()
printf("RAX=%x",RAX)
printf("RBX=%x",RBX)
printf("RCX=%x",RCX)
printf("RDX=%x",RDX)
printf("RSI=%x",RSI)
printf("RDI=%x",RDI)
printf("RBP=%x",RBP)
printf("RSP=%x",RSP)
printf("R8=%x",R8)
printf("R9=%x",R9)
printf("R10=%x",R10)
printf("R11=%x",R11)
printf("R12=%x",R12)
printf("R13=%x",R13)
printf("R14=%x",R14)
printf("R15=%x",R15)
return nil
end)
|
And instead of printf you could write it all down to a treeview or something
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|