Difference between revisions of "Lua:openProcess"

From Cheat Engine
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 31: Line 31:
  
  
== See also ==
+
{{LuaSeeAlso}}
* [[Lua]]
 
* [[Help_File:Script engine|Script engine]]
 
  
 
=== Related Functions ===
 
=== Related Functions ===
* [[getProcesslist]]
+
* [[Lua:getProcesslist|getProcesslist]]
* [[getOpenedProcessID]]
+
* [[Lua:getOpenedProcessID|getOpenedProcessID]]
* [[getProcessIDFromProcessName]]
+
* [[Lua:getProcessIDFromProcessName|getProcessIDFromProcessName]]
* [[createProcess]]
+
* [[Lua:createProcess|createProcess]]
 +
* [[Lua:openFileAsProcess|openFileAsProcess]]

Latest revision as of 03:24, 18 April 2018

function openProcess(processname)
function openProcess(processid)


Causes cheat engine to open the provided processname or processid.

Please note that if you provide an integer in the form of a string openProcess will look for a process that has as name the specified number. Provide an integer if you wish to specify the PID.

Example:

 openProcess("game.exe")
 openProcess(7890)
 openProcess(tonumber("7890"))


Function Parameters[edit]

Parameter Type Description
processname String The processname to find and open
processid integer The processID to find and open


See also[edit]

Related Functions[edit]