mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-02-04 00:39:08 +00:00
feat(core): CheatEngine item container coprse loaders
This commit is contained in:
parent
52bd97bc47
commit
89a8691959
14 changed files with 2787 additions and 106 deletions
17
cheatengine/load_mouseover_corpse.lua
Normal file
17
cheatengine/load_mouseover_corpse.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
local address = 0x51f838 -- at CGGameUI__HandleObjectTrackChange
|
||||
debugger_onBreakpoint = nil
|
||||
function onBreakpoint()
|
||||
local addr, typ = GetCGObjectAddr(readQword(0x00bd07a0)) -- mouseover guid
|
||||
if addr then
|
||||
if typ == "corpse" then
|
||||
loadStructToTable(CGCorpse, addr)
|
||||
end
|
||||
end
|
||||
debugger_onBreakpoint = nil
|
||||
debug_removeBreakpoint(address)
|
||||
debug_continueFromBreakpoint(co_run)
|
||||
return 1
|
||||
end
|
||||
|
||||
debug_setBreakpoint(address)
|
||||
debugger_onBreakpoint = onBreakpoint
|
||||
Loading…
Add table
Add a link
Reference in a new issue