Posting this script just in case the addresses need to be updated again in the future. Just update the value of OFFSET_ADJUST and run it in CE's lua console.
local OFFSET_ADJUST = 0x1BE0
local function shouldAdjust(record)
return string.find(record.Address, "+", 1, true) ~= nil
end
local function adjustRecordInner(name, offset)
offset = tonumber(offset, 16) + OFFSET_ADJUST
return string.format("%s+%X", name, offset)
end
local function adjustRecord(record)
record.Address = string.gsub(record.address, "^([^+]+)%+(%x+)$", adjustRecordInner)
end
local idx
local adressList = getAddressList()
local get_mr = adressList.getMemoryRecord
for idx = 0,adressList.Count-1 do
local record = get_mr(idx)
if shouldAdjust(record) then
adjustRecord(record)
end
end
showMessage("Remember to save!")
Posting this script just in case the addresses need to be updated again in the future. Just update the value of OFFSET_ADJUST and run it in CE's lua console.
local OFFSET_ADJUST = 0x1BE0
local function shouldAdjust(record)
return string.find(record.Address, "+", 1, true) ~= nil
end
local function adjustRecordInner(name, offset)
offset = tonumber(offset, 16) + OFFSET_ADJUST
return string.format("%s+%X", name, offset)
end
local function adjustRecord(record)
record.Address = string.gsub(record.address, "^([^+]+)%+(%x+)$", adjustRecordInner)
end
local idx
local adressList = getAddressList()
local get_mr = adressList.getMemoryRecord
for idx = 0,adressList.Count-1 do
local record = get_mr(idx)
if shouldAdjust(record) then
adjustRecord(record)
end
end
showMessage("Remember to save!")
Hello, I would like to ask where exactly do I find the MAG multiplier. All I can see is to simply set the current value of MAG, not a multiplier. Thanks in advance.
I missed The Magical Future book. Does anyone know how to get it? I tried going to day 08/01 to get it but the guy that gives the book wasn't there and once the day passed the game crashes. Is there a way to get ir with the cheat table or nah?