summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/003-1/events.txt18
1 files changed, 13 insertions, 5 deletions
diff --git a/npc/003-1/events.txt b/npc/003-1/events.txt
index 82db9dd3e..e963b0993 100644
--- a/npc/003-1/events.txt
+++ b/npc/003-1/events.txt
@@ -280,6 +280,7 @@ function handleStPatrick {
mes l("They have 10x more chance to drop a @@, so it is a great deal!", getitemlink(FourLeafClover));
mes l("Also, hidden in a forest which is not hot nor cold, is the Gold Pot Cauldron...");
mes l("You can get daily something from it, but unless you're green like me, you will have no luck...");
+ next;
return;
}
@@ -341,9 +342,14 @@ L_Aurora:
switch (@menu) {
case 1:
EventHelp();
- mesc l("You must claim all rewards and use any event item BEFORE it ends."), 1;
- mesc l("Left-overs will be deleted shortly after."), 1;
- mesc l("Any eventual ranking reward will be sent by the banker's mail."), 1;
+ if (FYEventUsesRanking()) {
+ mesc l("You must claim all rewards and use any event item BEFORE it ends."), 1;
+ mesc l("Left-overs will be deleted shortly after."), 1;
+ mesc l("Any eventual ranking reward will be sent by the banker's mail."), 1;
+ } else {
+ mesn;
+ mesq l("Have fun!");
+ }
break;
case 2:
@@ -405,10 +411,12 @@ function auroraRankings {
}
function auroraCurrentRankings {
- if (FYEventUsesRanking())
+ if (FYEventUsesRanking()) {
HallOfAurora();
- else
+ } else {
+ mesn;
mesq l("Personally, I like unranked events more than ranked ones...");
+ }
return;
}