diff options
Diffstat (limited to 'npc/functions/aurora.txt')
-rw-r--r-- | npc/functions/aurora.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/npc/functions/aurora.txt b/npc/functions/aurora.txt index 962e9409e..d9f396808 100644 --- a/npc/functions/aurora.txt +++ b/npc/functions/aurora.txt @@ -150,9 +150,17 @@ function script FYE_Expo { } +// Modify Fishing +function script FYE_Fishing { + // TODO: Merit-based random formula + getitem EventFish, 1; + return; +} + + // Stops any Aurora Event function script FYStopEvent { - setarray .@av$, "Kamelot", "Regnum"; + setarray .@av$, "Kamelot", "Regnum", "Expo", "Fishing"; if (array_find(.@av$, $EVENT$) >= 0) { sClear(); $EVENT$=""; |