Minesweeper hack
unknown
python
3 years ago
434 B
3
Indexable
from pymem import * from pymem.process import * pm = pymem.Pymem("winmine.exe") bytes = list(pm.read_bytes(0x01006690, 1000)) hideline = True for i in range(0,1000): b = bytes[i] if b != 16 and not hideline: if b == 143: s = "X" else: s = "." print(s, end=" ") if b == 16: hideline = not hideline if hideline : print("")
Editor is loading...