User File #638016916327057248

Upload All User Files

#638016916327057248 - Pokemon Red TID checker script

Red TID check.lua
95 downloads
Uploaded 10/18/2022 12:07 PM by DJ_Incendration (see all 107)
This script will tell you the current frame, followed by your TIDs, and output them to a txt file. I set it to test.txt because I wasn't sure if it would work sometimes. I also made a script for Yellow version.
file = io.open("test.txt", "w")

io.output(file)
-- prints the frame count while running
while true do
io.write(emu.framecount())
io.write(", ")
tid = memory.read_u16_be(0XD359)
io.write((tid), "\n")
emu.frameadvance()
end
io.close(file)