Difference between revisions of "Lua:setComment"

From Cheat Engine
Jump to navigation Jump to search
(Created page with "Category:Lua '''function''' setComment(''Address'',''Text'') ''':''' nil *Writes the given text to the given address. (%s shows the autoguess value). ===Function Par...")
 
m (Syntax Highlighting.)
 
(One intermediate revision by one other user not shown)
Line 21: Line 21:
  
 
== Examples ==
 
== Examples ==
 
+
<syntaxhighlight lang="lua" line>
  setComment( getAddress( 'Tutorial-x86_64.exe+2C5B' ) , '%s var' )
+
setComment( getAddress( 'Tutorial-x86_64.exe+2C5B' ) , '%s var' )
  setComment( getAddress( 'Tutorial-x86_64.exe+2C6D' ) , 'ret=Return' )
+
setComment( getAddress( 'Tutorial-x86_64.exe+2C6D' ) , 'ret=Return' )
 
+
</syntaxhighlight>
  
 
[[File:Lua GetCommentMemView.png]]
 
[[File:Lua GetCommentMemView.png]]
Line 32: Line 32:
  
 
== Related Functions ==
 
== Related Functions ==
* [[getComment]]
+
* [[Lua:getComment|getComment]]

Latest revision as of 19:41, 26 June 2026

function setComment(Address,Text) : nil

  • Writes the given text to the given address. (%s shows the autoguess value).

Function Parameters[edit]

Parameter Type Description
Address CEAddressString or Integer The address of the target process to write to
Text String The text to write to the Address Comment


Examples[edit]

1 setComment( getAddress( 'Tutorial-x86_64.exe+2C5B' ) , '%s var' )
2 setComment( getAddress( 'Tutorial-x86_64.exe+2C6D' ) , 'ret=Return' )

Lua GetCommentMemView.png


Main Pages

Core Lua documentation entry points

Lua
Script Engine

Related Functions[edit]