Difference between revisions of "Lua:createProcess"
Jump to navigation
Jump to search
(Created page with ''''function''' createProcess(''Path'', ''Parameters'' OPTIONAL, ''Debug'' OPTIONAL, ''BreakOnEntry'' OPTIONAL) Creates a process. ===Function Parameters=== {|width="85%" cel…') |
|||
Line 32: | Line 32: | ||
== See also == | == See also == | ||
* [[Lua]] | * [[Lua]] | ||
+ | * [[Help_File:Script engine|Script engine]] | ||
+ | |||
+ | === Related Functions === | ||
+ | * [[getProcesslist]] | ||
+ | * [[getOpenedProcessID]] | ||
+ | * [[getProcessIDFromProcessName]] | ||
+ | * [[openProcess]] |
Revision as of 03:42, 10 March 2017
function createProcess(Path, Parameters OPTIONAL, Debug OPTIONAL, BreakOnEntry OPTIONAL)
Creates a process.
Function Parameters
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 |