Difference between revisions of "Lua:createProcess"

From Cheat Engine
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
[[Category:Lua]]
 
'''function''' createProcess(''Path'', ''Parameters'' OPTIONAL, ''Debug'' OPTIONAL, ''BreakOnEntry'' OPTIONAL)
 
'''function''' createProcess(''Path'', ''Parameters'' OPTIONAL, ''Debug'' OPTIONAL, ''BreakOnEntry'' OPTIONAL)
  
Line 30: 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]]
* [[openProcess]]
+
* [[Lua:openProcess|openProcess]]
 +
* [[Lua:openFileAsProcess|openFileAsProcess]]

Latest revision as of 03:24, 18 April 2018

function createProcess(Path, Parameters OPTIONAL, Debug OPTIONAL, BreakOnEntry OPTIONAL)

Creates a process.


Function Parameters[edit]

Parameter Type Description
Path String Path to the executable
Parameters String The parameters to give . e.g: "-cheats on"
Debug Boolean Creates the process with the windows debugger attached. (VEH and Kernel do not support launch time debugging)
BreakOnEntry Boolean If true this will cause a breakpoint to hit on entrypoint


See also[edit]

Related Functions[edit]