summaryrefslogtreecommitdiff
path: root/npc/003-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-05-17 14:37:14 -0300
committerJesusaves <cpntb1@ymail.com>2020-05-17 14:37:14 -0300
commit323b244e560a40593a1ec60d28dab8a081fbcb54 (patch)
tree254278ed140c38482c556924977fe056fba9f177 /npc/003-1
parent0fb4ab05dabf8e87dded0c2a6bb7278e8a5607bf (diff)
downloadserverdata-323b244e560a40593a1ec60d28dab8a081fbcb54.tar.gz
serverdata-323b244e560a40593a1ec60d28dab8a081fbcb54.tar.bz2
serverdata-323b244e560a40593a1ec60d28dab8a081fbcb54.tar.xz
serverdata-323b244e560a40593a1ec60d28dab8a081fbcb54.zip
Okay, it is passable now.
Diffstat (limited to 'npc/003-1')
-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;
}