openProcess("pcsx2.exe") -- Pattern for Rogue Galaxy PAL searchthis=[[ 89 11 8B 0D 80 BA ?? ?? 83 C1 34 ]] searchthis=string.gsub(searchthis,"\n"," ") ms=createMemScan() memscan_firstScan(ms, soExactValue, vtByteArray, rtRounded, searchthis, "", 0x30000000, 0x3fffffff, "", fsmNotAligned, "", true, false, false, false) memscan_waitTillDone(ms) --get the result of the scans fl=createFoundList(ms) foundlist_initialize(fl) local count=foundlist_getCount(fl) if (count>0) then saddress=foundlist_getAddress(fl, 0) --get the first address -- break instructions autoAssemble([[ $saddress: nop nop mov ecx,[pcsx2.exe+5EBA80] ]]) --fov address for PAL Version writeBytes(0x204A13A6,0x10) end