First Lua variables are case sensitive. So "asd" and "Asd" are different variables.
But try it like this.
Code:
Asd = getAddress('[xxx.exe+A3DF]')
local bla = readInteger(Asd+0x10C)
That or use "registerSymbol". But I don't think this will work in the same script without time to let the symbols list update, so I tend to use the first example.
Code:
registerSymbol(mySymbol, 'xxx.exe+A3DF')
local bla = readInteger('[mySymbol]+10C')
And I think this would work too, but I can't remember if it works in Lua scripts. CE will parse variables in the address list and in AA scripts if they have the "$" symbol in front of them.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum