I have a CheatEngine table for PW, it contains script for enabling walk-thru walls.
It looks like this :
Code:
[ENABLE]
004052D3:
fld st(0)
mov [ecx+08],eax
[DISABLE]
004052D3:
fld st(1)
mov [ecx+08],eax
Does anyone have any clue on how to convert it to a script in autoit language ? Does that script only involve one 'memory address' [004052D3] , or it might link to other memory address but handled by the asm code above ? I'd like to use memory write to enable and disable it, so I can pass the script to several PW clients using autoit
btw what does that [004052D3] called ? is it a pointer ? I don't quite understand the terms in this hacking things, all I know is a base address, an offset, pointer [base add+offset]
please bear with me lol , i'm totally new to this
*oh btw I got the script from a local hacking forum,
[Only registered and activated users can see links. Click Here To Register...] , thanks to psychangel for posting it there.