mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
42 lines
670 B
NASM
42 lines
670 B
NASM
|
BillPhoneScript1:
|
||
|
checktime DAY
|
||
|
iftrue .daygreet
|
||
|
checktime NITE
|
||
|
iftrue .nitegreet
|
||
|
farwritetext BillPhoneMornGreetingText
|
||
|
buttonsound
|
||
|
jump .main
|
||
|
|
||
|
.daygreet
|
||
|
farwritetext BillPhoneDayGreetingText
|
||
|
buttonsound
|
||
|
jump .main
|
||
|
|
||
|
.nitegreet
|
||
|
farwritetext BillPhoneNiteGreetingText
|
||
|
buttonsound
|
||
|
jump .main
|
||
|
|
||
|
.main
|
||
|
farwritetext BillPhoneGenericText
|
||
|
buttonsound
|
||
|
checkcode VAR_BOXSPACE
|
||
|
vartomem MEM_BUFFER_0
|
||
|
ifequal 0, .full
|
||
|
ifless PARTY_LENGTH, .nearlyfull
|
||
|
farwritetext BillPhoneNotFullText
|
||
|
end
|
||
|
|
||
|
.nearlyfull
|
||
|
farwritetext BillPhoneNearlyFullText
|
||
|
end
|
||
|
|
||
|
.full
|
||
|
farwritetext BillPhoneFullText
|
||
|
end
|
||
|
|
||
|
BillPhoneScript2:
|
||
|
farwritetext BillPhoneNewlyFullText
|
||
|
waitbutton
|
||
|
end
|