Posted: Mon Jan 01, 2024 6:38 pm Post subject: Open Physical Memory Process
I'm not able to open the Physical Memory process with a lua script. I've tried OpenProcess and getOpenedProcessID -> then opening the resulting value, but none of this has worked thus far. Is this possible?
I'm not sure what you mean by "Physical Memory process", but openProcess() takes a string parameter of the process's name, or an integer value of the process's ID.
Code:
-- Edit respectfully
local name = 'process.exe'
local pid = 1234
local function openProc(byName)
if byName then
openProcess(name)
else
openProcess(pid)
end
end
I'm not sure what you mean by "Physical Memory process", but openProcess() takes a string parameter of the process's name, or an integer value of the process's ID.
Code:
-- Edit respectfully
local name = 'process.exe'
local pid = 1234
local function openProc(byName)
if byName then
openProcess(name)
else
openProcess(pid)
end
end
Usage:
Code:
-- Open by name
openProc(true)
-- Open by PID
openProc(false)
The attached picture is the "Physical Memory" process.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum