Posted: Thu Jan 31, 2019 8:00 am Post subject: memory viewer
is it possible to set the memoryview window to always start addresses with ending 0
say I go to address 56000083 I would like that the first address would be 56000080
i know that i could just goto 56000000 but a lot of time when you search addresses and then you use the browse this memory region, the starting address will be that specific address
example browse this memory region address ABCDEXYZ I would like that the memory window starts with to ABCDEXY0
Joined: 09 May 2003 Posts: 25779 Location: The netherlands
Posted: Thu Jan 31, 2019 8:29 am Post subject:
Easier is just press the left arrow key a few times with the hexview focused till it's aligned just the way you like (don't be in editmode)
Else try this lua script:
Code:
mv=getMemoryViewForm()
mvu=createTimer()
mvu.OnTimer=function(t)
local newa=mv.HexadecimalView.Address & 0xfffffffffffffff0
if newa~=mv.HexadecimalView.Address then
mv.HexadecimalView.Address=newa
end
end
mvu.Interval=10
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping
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