diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-16 22:06:18 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-16 22:06:18 -0300 |
commit | f901c5df63409aded3e92e7002e9bb3acb66875e (patch) | |
tree | 922cb939ec0d1761e017dc3bbe264d6c603b832c /npc/functions/aurora.txt | |
parent | fd73c82c7f4412ee8c4870ff9db826564b6b9575 (diff) | |
download | serverdata-f901c5df63409aded3e92e7002e9bb3acb66875e.tar.gz serverdata-f901c5df63409aded3e92e7002e9bb3acb66875e.tar.bz2 serverdata-f901c5df63409aded3e92e7002e9bb3acb66875e.tar.xz serverdata-f901c5df63409aded3e92e7002e9bb3acb66875e.zip |
Small, simple loop for Fishing
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$=""; |