LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Sun Jan 23, 2022 2:32 pm Post subject: |
|
|
Code: |
function createchild(parent,description,address,value)
local al = getAddressList()
local p = al.getMemoryRecordByDescription(tostring(parent))
if p ~= nil then
local mr = al.createMemoryRecord()
mr.Description = description
mr.Address = address
mr.Value = value
mr.Parent = p
end
end
createchild('No description','test','012345678',20)
|
Perhaps this will help
|
|