diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-12-03 15:37:44 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-12-03 15:37:44 -0300 |
commit | c7bfa524c4cceaf8f7771501821db026474a0927 (patch) | |
tree | f3d93ea1c2b8e1da38374ebb6c473c67c006482f | |
parent | 9126cfb912c8f70a12e1d7f696bfce565c71456f (diff) | |
download | serverdata-c7bfa524c4cceaf8f7771501821db026474a0927.tar.gz serverdata-c7bfa524c4cceaf8f7771501821db026474a0927.tar.bz2 serverdata-c7bfa524c4cceaf8f7771501821db026474a0927.tar.xz serverdata-c7bfa524c4cceaf8f7771501821db026474a0927.zip |
Cleanup some event garbage
-rw-r--r-- | npc/commands/event.txt | 17 | ||||
-rw-r--r-- | npc/functions/event.txt | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/npc/commands/event.txt b/npc/commands/event.txt index 8b1dc02..2be1b53 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -291,6 +291,9 @@ function script GlobalEventMenu { ("[FY] Enable Kamelot"), ("[FY] Enable Regnum Blessing"), ("[FY] Enable Candor Season"), + ("[FY] Enable Magic Olympics"), + ("[FY] Enable Dream Towers"), + ("[FY] Enable Boss Raid"), ("Reset Kill Saulc Event (Monthly)"); switch (@menu) { @@ -347,7 +350,19 @@ function script GlobalEventMenu { $EVENT$="Candor"; logmes "Enabled CANDOR event.", LOGMES_ATCOMMAND; break; - case 13: DelItemFromEveryPlayer(MurdererCrown); break; + case 13: + $EVENT$="Olympics"; callfunc("FYEConf_Olympics"); + logmes "Enabled OLYMPICS event.", LOGMES_ATCOMMAND; + break; + case 14: + $EVENT$="Tower"; callfunc("FYEConf_Tower"); + logmes "Enabled TOWER event.", LOGMES_ATCOMMAND; + break; + case 15: + $EVENT$="Raid"; callfunc("FYEConf_Raid"); + logmes "Enabled RAID event.", LOGMES_ATCOMMAND; + break; + case 16: DelItemFromEveryPlayer(MurdererCrown); break; } return; diff --git a/npc/functions/event.txt b/npc/functions/event.txt index ecb0f81..89190c3 100644 --- a/npc/functions/event.txt +++ b/npc/functions/event.txt @@ -535,6 +535,7 @@ function confEvent { // Event Schedule (all dates are inclusive) // NEVER, ever, include the last day of the month. OnInit: + /* confEvent("valentine", 13, FEBRUARY, 16, FEBRUARY); @@ -562,6 +563,7 @@ OnInit: confEvent("xmas", 19, DECEMBER, 2, JANUARY); + */ // Some setup .@isinit=true; |