2018-06-24 07:09:41 -07:00
|
|
|
ItemFinder:
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall CheckForHiddenItems
|
2015-11-11 13:11:08 -08:00
|
|
|
jr c, .found_something
|
|
|
|
ld hl, .Script_FoundNothing
|
|
|
|
jr .resume
|
|
|
|
|
|
|
|
.found_something
|
|
|
|
ld hl, .Script_FoundSomething
|
|
|
|
|
|
|
|
.resume
|
|
|
|
call QueueScript
|
|
|
|
ld a, $1
|
2015-12-17 14:51:32 -08:00
|
|
|
ld [wItemEffectSucceeded], a
|
2015-11-11 13:11:08 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.ItemfinderSound:
|
2015-12-18 17:07:09 -08:00
|
|
|
ld c, 4
|
2015-11-11 13:11:08 -08:00
|
|
|
.sfx_loop
|
|
|
|
push bc
|
|
|
|
ld de, SFX_SECOND_PART_OF_ITEMFINDER
|
|
|
|
call WaitPlaySFX
|
|
|
|
ld de, SFX_TRANSACTION
|
|
|
|
call WaitPlaySFX
|
|
|
|
pop bc
|
|
|
|
dec c
|
|
|
|
jr nz, .sfx_loop
|
|
|
|
ret
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.Script_FoundSomething:
|
2024-02-10 15:16:00 -08:00
|
|
|
refreshmap
|
2015-11-11 13:11:08 -08:00
|
|
|
special UpdateTimePals
|
|
|
|
callasm .ItemfinderSound
|
2019-10-20 15:24:17 -07:00
|
|
|
writetext .ItemfinderItemNearbyText
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2015-11-11 13:11:08 -08:00
|
|
|
end
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
.Script_FoundNothing:
|
2024-02-10 15:16:00 -08:00
|
|
|
refreshmap
|
2015-11-11 13:11:08 -08:00
|
|
|
special UpdateTimePals
|
2019-10-20 15:24:17 -07:00
|
|
|
writetext .ItemfinderNopeText
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2015-11-11 13:11:08 -08:00
|
|
|
end
|
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
.ItemfinderItemNearbyText:
|
|
|
|
text_far _ItemfinderItemNearbyText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2015-11-11 13:11:08 -08:00
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
.ItemfinderNopeText:
|
|
|
|
text_far _ItemfinderNopeText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|