Difference between revisions of "Lua:onOpenProcess"

From Cheat Engine
Jump to navigation Jump to search
m (Added CodeBox Template.)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
[[Category:Lua]]
 
[[Category:Lua]]
'''event''' onOpenProcess(''processId'')
+
{{CodeBox|'''event''' onOpenProcess(''processId'')}}
  
 
If this function is defined it will be called whenever cheat engine opens a process.
 
If this function is defined it will be called whenever cheat engine opens a process.
:Note: The same process might be opened multiple times in a row internally
+
:'''Note''': The same process might be opened multiple times in a row internally
:Note: This function is called before attachment is fully done. You can call reinitializeSymbolhandler() to force the open to complete, but it will slow down process opens. Alternatively, you could launch a timer which will run when the opening has finished
+
:'''Note''': This function is called before attachment is fully done. You can call reinitializeSymbolhandler() to force the open to complete, but it will slow down process opens. Alternatively, you could launch a timer which will run when the opening has finished
  
 
===Function Parameters===
 
===Function Parameters===
Line 26: Line 26:
 
{{LuaSeeAlso}}
 
{{LuaSeeAlso}}
  
=== Related Functions ===
+
{{Process}}
* [[Lua:openProcess|openProcess]]
 
* [[Lua:getProcesslist|getProcesslist]]
 
* [[Lua:getOpenedProcessID|getOpenedProcessID]]
 
* [[Lua:getProcessIDFromProcessName|getProcessIDFromProcessName]]
 
* [[Lua:createProcess|createProcess]]
 
* [[Lua:openFileAsProcess|openFileAsProcess]]
 

Latest revision as of 00:48, 5 December 2025

<> Function

event onOpenProcess(processId)

If this function is defined it will be called whenever cheat engine opens a process.

Note: The same process might be opened multiple times in a row internally
Note: This function is called before attachment is fully done. You can call reinitializeSymbolhandler() to force the open to complete, but it will slow down process opens. Alternatively, you could launch a timer which will run when the opening has finished

Function Parameters[edit]

Parameter Type Description
processId number The ID of the process that was opened

Examples[edit]

function onOpenProcess(processId)
    print(string.format('Process opened: %d', processId))
end

See also[edit]

Lua
Script Engine

Related Functions[edit]

createProcess
openProcess
onOpenProcess
getForegroundProcess
getOpenedProcessID
getProcessIDFromProcessName
openFileAsProcess
saveOpenedFile
setPointerSize
setAssemblerMode
getProcesslist
getWindowlist
pause
unpause
targetIs64Bit
enumModules
closeRemoteHandle