Difference between revisions of "Lua:registerAutoAssemblerTemplate"

From Cheat Engine
Jump to navigation Jump to search
(Created page with 'Category:Lua '''function''' registerAutoAssemblerTemplate(''name'',''function'') Registers a template to be used with the auto assembler window template menu Returns an ID …')
 
(Function Parameters)
Line 19: Line 19:
 
|-
 
|-
 
|function
 
|function
|function(script, sender): ID
+
|function(script, sender)
 
|The function called when the user picks the script.  (script is a StringList object. sender is a frmAutoInject object)
 
|The function called when the user picks the script.  (script is a StringList object. sender is a frmAutoInject object)
 
|}
 
|}
 
  
 
== Examples ==
 
== Examples ==

Revision as of 09:42, 22 June 2018

function registerAutoAssemblerTemplate(name,function)

Registers a template to be used with the auto assembler window template menu

Returns an ID you can use with unregisterAutoAssemblerTemplate


Function Parameters

Parameter Type Description
name String The command string it self
function function(script, sender) The function called when the user picks the script. (script is a StringList object. sender is a frmAutoInject object)

Examples

registerAutoAssemblerTemplate('Better AOBScan script generator',function(script, sender)
 print("Do something with the script")
end )


See also

Related Functions