2018-06-24 17:10:37 -07:00
|
|
|
RepelWoreOffScript::
|
2017-12-15 17:10:54 -08:00
|
|
|
opentext
|
|
|
|
writetext .text
|
|
|
|
waitbutton
|
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.text
|
2017-12-15 17:10:54 -08:00
|
|
|
; REPEL's effect wore off.
|
2018-10-28 09:16:55 -07:00
|
|
|
text_far UnknownText_0x1bd308
|
2017-12-15 17:10:54 -08:00
|
|
|
db "@"
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
HiddenItemScript::
|
2017-12-15 17:10:54 -08:00
|
|
|
opentext
|
2018-01-23 14:39:09 -08:00
|
|
|
copybytetovar wEngineBuffer3
|
2018-01-11 22:40:20 -08:00
|
|
|
itemtotext USE_SCRIPT_VAR, MEM_BUFFER_0
|
2017-12-15 17:10:54 -08:00
|
|
|
writetext .found_text
|
|
|
|
giveitem ITEM_FROM_MEM
|
|
|
|
iffalse .bag_full
|
|
|
|
callasm SetMemEvent
|
|
|
|
specialsound
|
|
|
|
itemnotify
|
|
|
|
jump .finish
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.bag_full
|
2017-12-15 17:10:54 -08:00
|
|
|
buttonsound
|
|
|
|
writetext .no_room_text
|
|
|
|
waitbutton
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.finish
|
2017-12-15 17:10:54 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.found_text
|
2017-12-15 17:10:54 -08:00
|
|
|
; found @ !
|
2018-10-28 09:16:55 -07:00
|
|
|
text_far UnknownText_0x1bd321
|
2017-12-15 17:10:54 -08:00
|
|
|
db "@"
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.no_room_text
|
2017-12-15 17:10:54 -08:00
|
|
|
; But has no space left…
|
2018-10-28 09:16:55 -07:00
|
|
|
text_far UnknownText_0x1bd331
|
2017-12-15 17:10:54 -08:00
|
|
|
db "@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
SetMemEvent:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wEngineBuffer1
|
2017-12-15 17:10:54 -08:00
|
|
|
ld a, [hli]
|
|
|
|
ld d, [hl]
|
|
|
|
ld e, a
|
|
|
|
ld b, SET_FLAG
|
|
|
|
call EventFlagAction
|
|
|
|
ret
|