帐号 注册
密码 登录
登录或注册新用户,开通自己的个人中心
-- By "25094" on GitHubfunction GetEmuBase()local command = 0xB118local 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) + lowerreturn tonumber(combinedPointer)end