Lua:getComment
Revision as of 07:09, 21 February 2022 by Youcefham (talk | contribs) (Created page with "Category:Lua '''function''' getComment(''Address'') ''':''' string  *Reads the comment text at the given address (only the user comments).  ===Function Parameters=== {...")
function getComment(Address) : string
- Reads the comment text at the given address (only the user comments).
Function Parameters
| Parameter | Type | Description | 
|---|---|---|
| Address | CEAddressString or Integer | The address to read | 
Examples
 print( getComment( getAddress('Tutorial-x86_64.exe+2C6D') ) );
 >> ret=Return
 print( getComment( getAddress('Tutorial-x86_64.exe+2C5B') ) );
 >> %s var


