Posts for Yagisama

Yagisama
He/Him
Joined: 7/12/2015
Posts: 2
Thank you Pokota! I have no idea what you just told me or what I did, but it works like a charm. Are there any good articles around about this different memory domains? As glad as I am that it's working now I always like to know why and how it works in the end.
Yagisama
He/Him
Joined: 7/12/2015
Posts: 2
Hello I'm trying to write a simple lua script for Link's Awakening DX that shows the X & Y coordinates on screen but I keep getting an error saying: "Warning: attempted read of 65432 outside the memory size of 32768." Can anyone give me some tips for solving this? I haven't done any kind of programming in years so I'm a bit rusty.
Language: lua

function gameInfo() xcord = memory.readbyte(0xFF98) gui.drawText(5, 5, "X: " .. xcord) end while true do gameInfo() emu.frameadvance() end