Difference between revisions of "Lua:openProcess"
Jump to navigation
Jump to search
(→See also) |
|||
| Line 31: | Line 31: | ||
| − | + | {{LuaSeeAlso}} | |
| − | |||
| − | |||
=== Related Functions === | === Related Functions === | ||
Revision as of 21:10, 19 March 2017
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
| Parameter | Type | Description |
|---|---|---|
| processname | String | The processname to find and open |
| processid | integer | The processID to find and open |