diff options
-rw-r--r-- | npc/014-4/kamelot.txt | 4 | ||||
-rw-r--r-- | npc/commands/kami.txt | 19 |
2 files changed, 3 insertions, 20 deletions
diff --git a/npc/014-4/kamelot.txt b/npc/014-4/kamelot.txt index c73461f09..94040363f 100644 --- a/npc/014-4/kamelot.txt +++ b/npc/014-4/kamelot.txt @@ -62,8 +62,10 @@ OnTouch: } // XXX STATUS: STAGING - FINAL TESTING XXX - if ($EVENT$ != "Kamelot") + if ($EVENT$ != "Kamelot") { + dispbottom l("Kamelot Castle gates are closed; Please wait for the GM Team announcements."); end; + } // Save your GID for reference .@g=getcharid(2); diff --git a/npc/commands/kami.txt b/npc/commands/kami.txt index 71d71dc74..12cf0ee11 100644 --- a/npc/commands/kami.txt +++ b/npc/commands/kami.txt @@ -67,30 +67,11 @@ OnPurify: } end; -OnSkry: - dispbottom l("STR: %d AGI %d VIT %d", readparam2(bStr), readparam2(bAgi), readparam2(bVit)); - end; - -OnJustDoIt: - //dispbottom l("STR: %d AGI %d VIT %d", readparam2(bStr), readparam2(bAgi), readparam2(bVit)); - //unitskilluseid(getcharid(3), GD_LEADERSHIP, 1, getcharid(3)); - // This is only for testing - $@GM_OVERRIDE=true; - atcommand("@speed 90"); - warp "Save", 0, 0; - - // areasc(range, time, skill code, who targets, power, filter) - //areasc(9, 20000, SC_MAGNIFICAT, BL_PC, 1, "filter_sameguild"); - end; - OnInit: bindatcmd "k", "@k::OnCall", 60, 80, 1; bindatcmd "servmsg", "@k::OnServMsg", 80, 99, 1; bindatcmd "blessing", "@k::OnBuff", 99, 100, 1; - bindatcmd "skry", "@k::OnSkry", 80, 80, 1; - bindatcmd "gdreco", "@k::OnJustDoIt", 99, 99, 1; - bindatcmd "instcheck", "@k::OnInstCheck", 99, 100, 1; bindatcmd "instdestr", "@k::OnInstDestroy", 99, 100, 1; bindatcmd "burnlivio", "@k::OnPurify", 99, 100, 1; |