diff options
-rw-r--r-- | npc/commands/event.txt | 8 | ||||
-rw-r--r-- | npc/functions/news.txt | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/npc/commands/event.txt b/npc/commands/event.txt index c7564d499..87b149239 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -315,6 +315,7 @@ function script GlobalEventMenu { ("Enable Christmas"), ("Enable Demure's Birthday"), ("[FY] Enable Kamelot"), + ("[FY] Enable Regnum Blessing"), ("Reset Kill Saulc Event (Monthly)"); switch (@menu) { @@ -362,7 +363,12 @@ function script GlobalEventMenu { $EVENT$="Kamelot"; logmes "Enabled KAMELOT event.", LOGMES_ATCOMMAND; break; - case 11: DelItemFromEveryPlayer(MurdererCrown); break; + case 11: + $EVENT$="Regnum"; callfunc("FYE_Regnum"); + dispbottom l("Blessing applied at: %s", $@REGNUM_BLESSMAP_H$); + logmes "Enabled REGNUM event.", LOGMES_ATCOMMAND; + break; + case 12: DelItemFromEveryPlayer(MurdererCrown); break; } return; diff --git a/npc/functions/news.txt b/npc/functions/news.txt index 51ab61488..9fbb3ed6f 100644 --- a/npc/functions/news.txt +++ b/npc/functions/news.txt @@ -466,7 +466,7 @@ function script EventHelp { } else if ($EVENT$ == "Regnum") { mesc ".:: " + l("Regnum Blessing") + " ::.", 2; mes ""; - mes l("The regnum blessing causes all monsters in an area"); + mes l("The Regnum Blessing causes all monsters in an area"); mes l("to give double experience!"); mes ""; mes l("Farm there and get the best experience value!"); |