Binary ROM HackingNeed a helping hand or just want to talk about binary ROM hacks? Get comments and answers to any ROM Hacking-related problems, questions or thoughts you have here.
I have succesfully manage to do the multichoice but it seams like a Faulty script appeared, instead of the word FENNEKIN appeared in the box, SLATEPORT CITY appeared, heres my script.
#dynamic 0x740000
#org @start
msgbox @Give
callstd 0x6
multichoice 0x12 0x6 0x38 0x2
copyvar 0x8000 LASTRESULT
compare 0x8000 0x0
if == jump @Fennekin
compare 0x8000 0x1
if == jump @Chespin
compare 0x8000 0x2
if == jump @Froakie
release
end
#org @Fennekin
msgbox @ask
callstd MSG_YESNO
compare LASTRESULT NO
if == jump @wait
addpokemon CHARMANDER 0x5 LEFTOVERS 0x0 0x0 0x0
msgbox @get
setflag RS_POKEMON
disappear 0x4
release
end
#org @Chespin
msgbox @ask2
callstd MSG_YESNO
compare LASTRESULT NO
if == jump @wait
addpokemon BULBASAUR 0x5 LEFTOVERS 0x0 0x0 0x0
msgbox @get2
setflag RS_POKEMON
disappear 0x4
release
end
#org @Froakie
msgbox @ask3
callstd MSG_YESNO
compare LASTRESULT NO
if == jump @wait
addpokemon SQUIRTLE 0x5 LEFTOVERS 0x0 0x0 0x0
msgbox @get3
setflag RS_POKEMON
disappear 0x4
release
end
#org @wait
jump @start
#org @okay
= The Machine is Empty
#org @Give
= This MACHINE has 3 PKMN\nGet atleast 1!