mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
42 lines
686 B
NASM
42 lines
686 B
NASM
BillPhoneCalleeScript:
|
|
checktime DAY
|
|
iftrue .daygreet
|
|
checktime NITE
|
|
iftrue .nitegreet
|
|
farwritetext BillPhoneMornGreetingText
|
|
promptbutton
|
|
sjump .main
|
|
|
|
.daygreet
|
|
farwritetext BillPhoneDayGreetingText
|
|
promptbutton
|
|
sjump .main
|
|
|
|
.nitegreet
|
|
farwritetext BillPhoneNiteGreetingText
|
|
promptbutton
|
|
sjump .main
|
|
|
|
.main
|
|
farwritetext BillPhoneGenericText
|
|
promptbutton
|
|
readvar VAR_BOXSPACE
|
|
getnum STRING_BUFFER_3
|
|
ifequal 0, .full
|
|
ifless PARTY_LENGTH, .nearlyfull
|
|
farwritetext BillPhoneNotFullText
|
|
end
|
|
|
|
.nearlyfull
|
|
farwritetext BillPhoneNearlyFullText
|
|
end
|
|
|
|
.full
|
|
farwritetext BillPhoneFullText
|
|
end
|
|
|
|
BillPhoneCallerScript:
|
|
farwritetext BillPhoneNewlyFullText
|
|
waitbutton
|
|
end
|