CheatMaker 论坛

首页 » 游戏相关版块 » 游戏工具及相关 » 用于获取PPSSPP基地址的CheatEngine脚本 by NABN00B
dfzetcc - 2023/6/7 20:38:31
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 (, 下载次数:298)
Blader - 2023/6/7 20:43:54
這是32位版還是64位版?
如果是64位版就算了, 1.14開始一直有個bug
只有32位版能正常用而已
银河漫步 - 2023/6/7 21:09:10
用32位ppsspp用cm足够了
1
查看完整版本: 用于获取PPSSPP基地址的CheatEngine脚本 by NABN00B