mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-07 16:45:24 +13:00
First Commit
Upload literally everything from the pokecrystal16 expand-move-ID branch
This commit is contained in:
commit
2f8a41f833
4618 changed files with 480386 additions and 0 deletions
37
engine/events/hidden_item.asm
Normal file
37
engine/events/hidden_item.asm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
HiddenItemScript::
|
||||
opentext
|
||||
readmem wHiddenItemID
|
||||
getitemname STRING_BUFFER_3, USE_SCRIPT_VAR
|
||||
writetext .PlayerFoundItemText
|
||||
giveitem ITEM_FROM_MEM
|
||||
iffalse .bag_full
|
||||
callasm SetMemEvent
|
||||
specialsound
|
||||
itemnotify
|
||||
sjump .finish
|
||||
|
||||
.bag_full
|
||||
promptbutton
|
||||
writetext .ButNoSpaceText
|
||||
waitbutton
|
||||
|
||||
.finish
|
||||
closetext
|
||||
end
|
||||
|
||||
.PlayerFoundItemText:
|
||||
text_far _PlayerFoundItemText
|
||||
text_end
|
||||
|
||||
.ButNoSpaceText:
|
||||
text_far _ButNoSpaceText
|
||||
text_end
|
||||
|
||||
SetMemEvent:
|
||||
ld hl, wHiddenItemEvent
|
||||
ld a, [hli]
|
||||
ld d, [hl]
|
||||
ld e, a
|
||||
ld b, SET_FLAG
|
||||
call EventFlagAction
|
||||
ret
|
||||
Loading…
Add table
Add a link
Reference in a new issue