Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/engine/link/print_waiting_text.asm
1271 views
1
PrintWaitingText::
2
hlcoord 3, 10
3
ld b, 1
4
ld c, 11
5
ld a, [wIsInBattle]
6
and a
7
jr z, .trade
8
; battle
9
call TextBoxBorder
10
jr .border_done
11
.trade
12
call CableClub_TextBoxBorder
13
.border_done
14
hlcoord 4, 11
15
ld de, WaitingText
16
call PlaceString
17
ld c, 50
18
jp DelayFrames
19
20
WaitingText:
21
db "Waiting...!@"
22
23