Basic how to add damage combat log to windows games using cheat engine

Channel:
Subscribers:
401
Published on ● Video Link: https://www.youtube.com/watch?v=_5HVZNoXEnI



Category:
Vlog
Duration: 46:57
492 views
8


Basic how to add damage combat log to windows games using cheat engine lua script to set hardware write breakpoints on Hit point variable addresses.

Basic Lua script example

addressbp1=0x12844F80
timevar = 0

function debugger_onBreakpointBP1()

print(string.format("Timediff: %9.3f Ymir Armor Damage : %5.3f ", os.clock()-timevar, 2150-readFloat(addressbp1) ))
writeFloat(addressbp1, 2150.0)
timevar = os.clock()
debug_continueFromBreakpoint(co_run)
return 1
end

debug_setBreakpoint(addressbp1, 4, bptWrite , debugger_onBreakpointBP1)







Tags:
Reverse Engineering
Gaming
Combat Log
Hardware Breakpoints
Cheat Engine