Difference between revisions of "Lua:Class:Addresslist"
m |
m |
||
Line 17: | Line 17: | ||
end | end | ||
entries=addresslist_getCount(table) -- entries now has the value 2 | entries=addresslist_getCount(table) -- entries now has the value 2 | ||
+ | |||
'''addresslist_getMemoryRecord'''(addresslist, index) | '''addresslist_getMemoryRecord'''(addresslist, index) | ||
Line 25: | Line 26: | ||
table=getAddressList() | table=getAddressList() | ||
memory_record1=addresslist_getMemoryRecord(table,0) | memory_record1=addresslist_getMemoryRecord(table,0) | ||
+ | |||
'''addresslist_getMemoryRecordByDescription'''(addresslist, string) | '''addresslist_getMemoryRecordByDescription'''(addresslist, string) | ||
Line 34: | Line 36: | ||
table=getAddressList() | table=getAddressList() | ||
memory_record=addresslist_getMemoryRecordByDescription(table,"Health") | memory_record=addresslist_getMemoryRecordByDescription(table,"Health") | ||
+ | |||
'''addresslist_getMemoryRecordByID'''(addresslist, ID) | '''addresslist_getMemoryRecordByID'''(addresslist, ID) | ||
Line 44: | Line 47: | ||
id=memoryrecord_getID(addresslist_getMemoryRecordByDescription(table,"Health")) | id=memoryrecord_getID(addresslist_getMemoryRecordByDescription(table,"Health")) | ||
memory_record=addresslist_getMemoryRecordByID(table,id) | memory_record=addresslist_getMemoryRecordByID(table,id) | ||
+ | |||
'''addresslist_createMemoryRecord'''(addresslist) | '''addresslist_createMemoryRecord'''(addresslist) |
Revision as of 22:55, 18 May 2012
The Addresslist class can be used to access information regarding the Cheat Engine table. It is commonly combined with MemoryRecord.
addresslist_getCount(addresslist)
Returns the ammount of entires in the addresslist.
Example:
--Assume the table is empty table=getAddressList() address=0x2031a3ac --Create 2 entires for i=1,2 do mr=addresslist_createMemoryRecord(table) memoryrecord_setAddress(mr,address) address=address+1 end entries=addresslist_getCount(table) -- entries now has the value 2
addresslist_getMemoryRecord(addresslist, index)
Returns the MemoryRecord entry. The first object is indexed by 0.
Example:
table=getAddressList() memory_record1=addresslist_getMemoryRecord(table,0)
addresslist_getMemoryRecordByDescription(addresslist, string)
Returns the MemoryRecord entry matched by the string. The description has to be an exact match, but is case-insensitive
Example:
--Assume we have a entry in the cheat table with the description "Health" table=getAddressList() memory_record=addresslist_getMemoryRecordByDescription(table,"Health")
addresslist_getMemoryRecordByID(addresslist, ID)
Returns the MemoryRecord entry matched by the unique ID.
Example:
--Assume we have a entry in the cheat table with the description "Health" table=getAddressList() id=memoryrecord_getID(addresslist_getMemoryRecordByDescription(table,"Health")) memory_record=addresslist_getMemoryRecordByID(table,id)
addresslist_createMemoryRecord(addresslist)
Creates an empty memory record at the end of the addresslist. This function also returns the empty MemoryRecord entry, which can be used to immediately access the MemoryRecord.
Example:
--Assume we have a entry in the cheat table with the description "Health" table=getAddressList() memory_record=addresslist_createMemoryRecord(table) memoryrecord_setAddress(memory_record,0x00400000)
Don't know what these are:
addresslist_getSelectedRecords(addresslist) Returns a array of selected Cheat Table entires. (??)
addresslist_doDescriptionChange(addresslist) Change description(??)
addresslist_doAddressChange(addresslist)
addresslist_doTypeChange(addresslist)
addresslist_doValueChange(addresslist)
addresslist_getSelectedRecord(addresslist)
addresslist_setSelectedRecord(addresslist)