You are not logged in.
Pages: 1
Using a Hex Editor, where can I find the offset for Buena's prizes?
SHF... The Most... Sinister Hooded Figure
Offline
Buena's password's items are handled by script special 0093:
UnknownScript_0x5d8ff: ; 0x5d8ff
faceplayer
loadfont
checkitem BLUE_CARD
iffalse UnknownScript_0x5d90f
2writetext UnknownText_0x5e392
keeptextopen
special $0093
loadmovesprites
end
; 0x5d90f
So you'd follow the 0x0093 th entry of the special pointers table at 0xc029 which is:
dbw BANK(SpecialBuenasPassword), SpecialBuenasPassword
and leads to 0x8af6b. Have a look at SpecialBuenasPassword: ; 8af6b here: https://raw.githubusercontent.com/kanzu … r/main.asm
Offline
Pages: 1