Post subject: Turbo Start/Select?
Joined: 5/4/2012
Posts: 10
Is there a way to make a turbo mode for the start and select buttons just like how it works for B and A?
Editor, Skilled player (1404)
Joined: 3/31/2010
Posts: 2086
Seems like it should be reasonably easy to do using Lua.
Language: lua

local onEvenFrame = false while true do onEvenFrame = not onEvenFrame local keys = input.get() if keys.enter then --your keyboard key here local buttons = { start = onEvenFrame } joypad.set(1, buttons) end emu.frameadvance() end
Untested