2018-06-24 14:09:41 +00:00
|
|
|
PlaceWaitingText::
|
2017-12-25 00:35:35 +00:00
|
|
|
hlcoord 3, 10
|
|
|
|
ld b, 1
|
|
|
|
ld c, 11
|
|
|
|
|
|
|
|
ld a, [wBattleMode]
|
|
|
|
and a
|
|
|
|
jr z, .notinbattle
|
|
|
|
|
2019-04-08 12:15:10 +00:00
|
|
|
call Textbox
|
2017-12-25 00:35:35 +00:00
|
|
|
jr .proceed
|
|
|
|
|
|
|
|
.notinbattle
|
2018-01-16 19:30:10 +00:00
|
|
|
predef LinkTextboxAtHL
|
2017-12-25 00:35:35 +00:00
|
|
|
|
|
|
|
.proceed
|
|
|
|
hlcoord 4, 11
|
|
|
|
ld de, .Waiting
|
|
|
|
call PlaceString
|
|
|
|
ld c, 50
|
|
|
|
jp DelayFrames
|
|
|
|
|
2018-06-24 14:09:41 +00:00
|
|
|
.Waiting:
|
2017-12-25 00:35:35 +00:00
|
|
|
db "Waiting...!@"
|