The only effective static pointer for wotblitz.exe I found is "THREADSTACK0"-0x00000EEC. But I have no idea how to make it work with ReadWriteMemory.
Cheat Engine Pointer:
https://i.stack.imgur.com/xrhzg.png
Python Code:
from ReadWriteMemory import *
from time import sleep as wait
rwm_svc = ReadWriteMemory()
try:
process = rwm_svc.get_process_by_name('wotblitz.exe')
process.open()
except ReadWriteMemoryError:
print('wotblitz.exe not running!')
exit(1)
def damage():
dmg = {
'base': 0x7622FA10-0x00905A4D,
'add': 0x00000EEC,
'offsets': [0x4, 0x8, 0x148, 0x0, 0x30, 0x19c, 0x24]
}
dmg_pointer = process.get_pointer(dmg['base']-dmg['add']+sum(dmg['offsets']))
return process.read(dmg_pointer)
while 1:
wait(0.1)
print('\r', end=str(damage()))