Changing labels to local.

This commit is contained in:
surskitty
2018-01-15 23:23:04 -05:00
parent c167c81611
commit 115a5c236d
2 changed files with 53 additions and 53 deletions

View File

@@ -96,9 +96,9 @@ MonicaScript:
faceplayer
opentext
checkevent EVENT_GOT_SHARP_BEAK_FROM_MONICA
iftrue MonicaMondayScript
iftrue .Monday
checkcode VAR_WEEKDAY
if_not_equal MONDAY, MonicaNotMondayScript
if_not_equal MONDAY, .NotMonday
checkevent EVENT_MET_MONICA_OF_MONDAY
iftrue .MetMonica
writetext MeetMonicaText
@@ -108,21 +108,21 @@ MonicaScript:
writetext MonicaGivesGiftText
buttonsound
verbosegiveitem SHARP_BEAK
iffalse MonicaDoneScript
iffalse .done
setevent EVENT_GOT_SHARP_BEAK_FROM_MONICA
writetext MonicaGaveGiftText
waitbutton
closetext
end
MonicaMondayScript:
.Monday:
writetext MonicaMondayText
waitbutton
MonicaDoneScript:
.done:
closetext
end
MonicaNotMondayScript:
.NotMonday:
writetext MonicaNotMondayText
waitbutton
closetext