diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-10-17 03:00:48 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-10-17 03:00:48 -0400 |
commit | ece7ef3410eb9b114cf328426c4fc16c972f71c6 (patch) | |
tree | 1a6b3b96d60ccb13e4695e4c8ad1f9b56e9a3971 /data/scripts/mevent_aurora_ticket.inc | |
parent | d0455485c3ea862d4089b2b4bb02bb00f3005599 (diff) |
Correct usage of MysteryEvent to MysteryGift
Diffstat (limited to 'data/scripts/mevent_aurora_ticket.inc')
-rw-r--r-- | data/scripts/mevent_aurora_ticket.inc | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/data/scripts/mevent_aurora_ticket.inc b/data/scripts/mevent_aurora_ticket.inc deleted file mode 100644 index 9d7334638..000000000 --- a/data/scripts/mevent_aurora_ticket.inc +++ /dev/null @@ -1,59 +0,0 @@ -MysteryEventScript_AuroraTicket:: - setvaddress MysteryEventScript_AuroraTicket - lock - faceplayer - vgoto_if_set FLAG_RECEIVED_AURORA_TICKET, AuroraTicket_Obtained - vgoto_if_set FLAG_BATTLED_DEOXYS, AuroraTicket_Obtained - checkitem ITEM_AURORA_TICKET, 1 - compare VAR_RESULT, TRUE - vgoto_if_eq AuroraTicket_Obtained - vmessage sText_AuroraTicketForYou - waitmessage - waitbuttonpress - checkitemspace ITEM_AURORA_TICKET, 1 - compare VAR_RESULT, FALSE - vgoto_if_eq AuroraTicket_NoBagSpace - giveitem ITEM_AURORA_TICKET - setflag FLAG_ENABLE_SHIP_BIRTH_ISLAND - setflag FLAG_RECEIVED_AURORA_TICKET - vmessage sText_AuroraTicketUseAtPort - waitmessage - waitbuttonpress - release - end - -AuroraTicket_NoBagSpace: - vmessage sText_AuroraTicketBagFull - waitmessage - waitbuttonpress - release - end - -AuroraTicket_Obtained: - vmessage sText_AuroraTicketThankYou - waitmessage - waitbuttonpress - release - end - -sText_AuroraTicketForYou: - .string "Thank you for using the MYSTERY\n" - .string "GIFT System.\p" - .string "You must be {PLAYER}.\n" - .string "There is a ticket here for you.$" - -sText_AuroraTicketUseAtPort: - .string "It appears to be for use at the\n" - .string "LILYCOVE CITY port.\p" - .string "Why not give it a try and see what\n" - .string "it is about?$" - -sText_AuroraTicketThankYou: - .string "Thank you for using the MYSTERY\n" - .string "GIFT System.$" - -sText_AuroraTicketBagFull: - .string "Oh, I'm sorry, {PLAYER}.\n" - .string "Your BAG's KEY ITEMS POCKET is full.\p" - .string "Please store something on your PC,\n" - .string "then come back for this.$" |