Post subject: Global Hotkey for cheat toggle?
Joined: 12/6/2008
Posts: 1193
So bizhawk can't convert the code for moonjump (fixing upward veocity to a high value) in Majora's Mask (U). The code is the following: D03E6B3B 0020 813FFE18 40CB The velocity fixing part of the code can be used, but it's not much use without the part that toggles it on and off with L. Ofcourse I could do the same if there was some hotkey to toggle cheats on and off when I'm in the main window and that would probably be the more elegant solution. But I couldn't find such a hotkey option. Is there one and I'm just blind or isn't there one? If there isn't, could one be implemented?
ventuz
He/Him
Player (123)
Joined: 10/4/2004
Posts: 940
You're looking for something like "Joker Command" ? Joker Command begin with D, 0020 is probably button A. No idea if BizHawk works with Joker Command code line or not.
Skilled player (1707)
Joined: 9/17/2009
Posts: 4952
Location: ̶C̶a̶n̶a̶d̶a̶ "Kanatah"
Well, for me I used lua for it:
Language: lua

memory.usememorydomain("IWRAM") --Change this to whatever Majoras Mask uses while true do local Address = 0x --Insert your address to toggle here local value = 0x40CB --Insert the value you want here local toggle = 0 if toggle == 0 then if (joypad.getimmediate().L == true) then toggle = 1 end else if (joypad.getimmediate().L == true) then toggle = 0 end memory.write_u32_le(Address,value) --Change 32 to whatever byte size it is end emu.frameadvance() end
Or something like this. I haven't tested it, but it's something around that.