Joined: 12/7/2023
Posts: 4
Location: Buffalo, NY
Hi all. My whole question is the subject line. I'm most interested in if Bizhawk can do this but are there any emulators that let you automatically replay a movie when it ends? Thanks 😊
YoshiRulz
Any
Editor
Joined: 8/30/2020
Posts: 80
Location: Sydney, Australia
Download autorestart.lua
Language: lua

while true do if movie.mode() == "FINISHED" then movie.play_from_start(movie.filename()); end emu.frameadvance(); end
I contribute to BizHawk as Linux/cross-platform lead, testing and automation lead, and UI designer. This year, I'm experimenting with streaming BizHawk development on Twitch. nope Links to find me elsewhere and to some of my side projects are on my personal site. I will respond on Discord faster than to PMs on this site.
Hey look buddy, I'm an engineer. That means I solve problems. Not problems like "What is software," because that would fall within the purview of your conundrums of philosophy. I solve practical problems. For instance, how am I gonna stop some high-wattage thread-ripping monster of a CPU dead in its tracks? The answer: use code. And if that don't work? Use more code.
Joined: 12/7/2023
Posts: 4
Location: Buffalo, NY
YoshiRulz wrote:
Download autorestart.lua
Language: lua

while true do if movie.mode() == "FINISHED" then movie.play_from_start(movie.filename()); end emu.frameadvance(); end
Thanks. I'll look into how Lua works :)