Subpixel LUA
5 years ago
Colorado, USA

Putting this here so it doesn't get lost again because it's helpful for learning, and backup floor drops. I think Deceax wrote this for a big 20? Shows the Subpixel value on the screen. (can save the code in a txt file and just run it)

local XAddr=0x336 local X while true do X=memory.readbyte(XAddr) gui.text(0,25,X) emu.frameadvance(); end

Pennsylvania, USA

In the spirit of sharing, I used your snippet to do the same thing with hearts while I get better at the lizardman and Veros night time zombie grinds. Your heart count is stored as literal hex across 2 bytes so it took just a smidge more finessing to get the right values to show up:

local addr1=0x48 local addr2=0x49 while true do gui.text(230,25,string.format("%x%02x", memory.readbyte(addr2), memory.readbyte(addr1))) emu.frameadvance(); end

게임 통계
팔로워
272
런들
700
플레이어
129
최근 쓰레드
게시 일자 4 years ago
4 개의 답글
게시 일자 1 year ago
3 개의 답글
게시 일자 2 years ago
2 개의 답글
게시 일자 2 years ago
3 개의 답글
게시 일자 3 years ago
3 개의 답글
게시 일자 3 years ago
12 개의 답글