Fightcade Lua Hotkey Access
Navigate to Game > Lua Scripting > New Lua Script Window in the emulator menu, browse for your file, and click Run . 2. Map the Lua Hotkeys
-- Always advance the emulator frame at the end of the loop emu.frameadvance() end fightcade lua hotkey
Opens/closes the training mode menu.
local show = false function toggle_overlay() show = not show end function draw() if show then gui.text(10,10,"Overlay ON") end end emu.registerhotkey(1, "Toggle overlay", toggle_overlay) emu.registerafter(draw) Navigate to Game > Lua Scripting > New