diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-09-24 14:02:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-09-24 14:02:07 -0300 |
commit | 85383934046353fca9a46cb20cf393957e3d117c (patch) | |
tree | 71361ee6d6ab2f5c7252f1bf2e794c12a98271fb /npc | |
parent | 5f016bfc703ccb139b80b6f82e966c9d5be670ec (diff) | |
download | serverdata-85383934046353fca9a46cb20cf393957e3d117c.tar.gz serverdata-85383934046353fca9a46cb20cf393957e3d117c.tar.bz2 serverdata-85383934046353fca9a46cb20cf393957e3d117c.tar.xz serverdata-85383934046353fca9a46cb20cf393957e3d117c.zip |
Make the raid happen earlier, I think I'm mostly done.
The last one will be trickier :3
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/aurora.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/functions/aurora.txt b/npc/functions/aurora.txt index fe8139dfc..8b1242ff6 100644 --- a/npc/functions/aurora.txt +++ b/npc/functions/aurora.txt @@ -115,10 +115,9 @@ function script FYNewEvent { kamibroadcast("Kamelot Season is now open!", "Aurora Events"); break; case 8: - // FIXME: PLACEHOLDER - $EVENT$="Expo"; - callfunc("FYEConf_Expo"); - kamibroadcast("World Expo is now open!", "Aurora Events"); + $EVENT$="Raid"; + callfunc("FYEConf_Raid"); + kamibroadcast("Oh noes! "+$RAIDING_BOSS$+" is attacking our world!", "Aurora Events"); break; case 9: // FIXME: PLACEHOLDER @@ -127,9 +126,10 @@ function script FYNewEvent { kamibroadcast("Regnum's Blessing: "+$REGNUM_BLESSMAP_H$+" is now blessed!", "Aurora Events"); break; case 10: - $EVENT$="Raid"; - callfunc("FYEConf_Raid"); - kamibroadcast("Oh noes! "+$RAIDING_BOSS$+" is attacking our world!", "Aurora Events"); + // FIXME: PLACEHOLDER + $EVENT$="Expo"; + callfunc("FYEConf_Expo"); + kamibroadcast("World Expo is now open!", "Aurora Events"); break; case 11: // FIXME: PLACEHOLDER |