Cyorter
He/Him
Editor, Player (237)
Joined: 2/8/2017
Posts: 138
Location: Venezuela
I wonder if this is a good idea to TAS, this game is great but for a TAS it would be very boring and repetitive, obviously it's only would be a choice for vault but I want to know what do you think about this game... The only challenging that this game has is avoid lag. Movie: User movie #56276891323054322 Lua script to see scrolling speed:
Language: lua

-- Son Son NES screen-scrolling speed (Maximum/Best is 30) val = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} dif = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} while true do s = 0 i = 0 while i < 60 do val[60-i] = val[59-i] i = i + 1 end i = 0 while i < 60 do if (val[60-i] ~= val[59-i]) then dif[60-i] = 1 else dif[60-i] = 0 end i = i + 1 end val[0] = memory.read_u8(0x49) i = 1 while i <= 60 do s = s + dif[i] i = i + 1 end -- s = s + (emu.framecount() % 2) str = string.format("Speed: %02u pix/sec", s) gui.text(3,65,str) emu.frameadvance() end