ref: 4e6adcddff69fd53ce342ead502a0699cd5f75ba
dir: /engine/events/oaks_aide.asm/
OaksAideScript: ld hl, OaksAideHiText call PrintText call YesNoChoice ld a, [wCurrentMenuItem] and a jr nz, .choseNo ld hl, wPokedexOwned ld b, wPokedexOwnedEnd - wPokedexOwned call CountSetBits ld a, [wNumSetBits] ld [hOaksAideNumMonsOwned], a ld b, a ld a, [hOaksAideRequirement] cp b jr z, .giveItem jr nc, .notEnoughOwnedMons .giveItem ld hl, OaksAideHereYouGoText call PrintText ld a, [hOaksAideRewardItem] ld b, a ld c, 1 call GiveItem jr nc, .bagFull ld hl, OaksAideGotItemText call PrintText ld a, $1 jr .done .bagFull ld hl, OaksAideNoRoomText call PrintText xor a jr .done .notEnoughOwnedMons ld hl, OaksAideUhOhText call PrintText ld a, $80 jr .done .choseNo ld hl, OaksAideComeBackText call PrintText ld a, $ff .done ld [hOaksAideResult], a ret OaksAideHiText: text_far _OaksAideHiText text_end OaksAideUhOhText: text_far _OaksAideUhOhText text_end OaksAideComeBackText: text_far _OaksAideComeBackText text_end OaksAideHereYouGoText: text_far _OaksAideHereYouGoText text_end OaksAideGotItemText: text_far _OaksAideGotItemText sound_get_item_1 text_end OaksAideNoRoomText: text_far _OaksAideNoRoomText text_end