Difference between revisions of "Lua:getAddressList"
Jump to navigation
Jump to search
(Tag: Undo) |
(Simplification of the entry, as most of the information should be within AddressList) |
||
| Line 1: | Line 1: | ||
[[Category:Lua]] | [[Category:Lua]] | ||
| − | '''function''' getAddressList() ''':''' | + | {{CodeBox|'''function''' getAddressList() ''':''' Addresslist}} |
| − | + | Returns the main Cheat Engine [[Lua:Class:Addresslist|Addresslist]] object. | |
| − | |||
| − | |||
| + | This is the same object that is available through the global [[Lua:AddressList|AddressList]] variable. | ||
| − | === | + | ===Function Parameters=== |
| + | This function has no parameters. | ||
| − | The address list | + | ===Returns=== |
| + | Addresslist — The main Cheat Engine address list object. | ||
| − | + | ===Examples=== | |
| − | |||
| − | |||
| − | |||
| − | |||
| + | <syntaxhighlight lang="lua" line> | ||
| + | local addressList = getAddressList() | ||
| − | + | print("Record count: " .. tostring(addressList.Count)) | |
| − | + | </syntaxhighlight> | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
| − | + | {{Forms}} | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Revision as of 18:40, 25 June 2026
Returns the main Cheat Engine Addresslist object.
This is the same object that is available through the global AddressList variable.
Function Parameters
This function has no parameters.
Returns
Addresslist — The main Cheat Engine address list object.
Examples
1 local addressList = getAddressList()
2
3 print("Record count: " .. tostring(addressList.Count))