CheatMaker 论坛

注册

 

发新话题 回复该主题

用于获取PPSSPP基地址的CheatEngine脚本 by NABN00B [复制链接]

1#
CheatEngine script for getting the base address
作者:NABN00B 原帖:
https://www.ppsspp.org/docs/reference/process-hacks/
脚本
-- By "25094" on GitHub
function GetEmuBase()
local command = 0xB118
local emuHWND = findWindow("PPSSPPWnd")

local pointer = {}

local result = sendMessage(emuHWND, command, 0, 0)
pointer[1] = tonumber(result)

result = sendMessage(emuHWND, command, 0, 1)
pointer[2] = tonumber(result)

local lower = pointer[1]
local upper = pointer[2]
local combinedPointer = (upper * 0x100000000) + lower

return tonumber(combinedPointer)
end


NABN00B 在帖子中分享了一份AHK代码
https://github.com/NABN00B/AutoHotkey.PPSSPP

EXE版AHK脚本:
ppsspp_WM.rar (, 下载次数:291)
分享 转发
TOP
2#

這是32位版還是64位版?
如果是64位版就算了, 1.14開始一直有個bug
只有32位版能正常用而已
TOP
3#

用32位ppsspp用cm足够了
TOP
发新话题 回复该主题