diff options
-rw-r--r-- | npc/magic/kalmurk.txt | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/npc/magic/kalmurk.txt b/npc/magic/kalmurk.txt index 50aca887a..8ce0bd587 100644 --- a/npc/magic/kalmurk.txt +++ b/npc/magic/kalmurk.txt @@ -20,48 +20,6 @@ OnCall: dispbottom l("The usage of @sk-commands was deprecated"); end; - // Other requeriments - if (countitem(MaggotSlime) < 2) { - dispbottom l("You need 2x @@ to cast this skill.", getitemlink(MaggotSlime)); - end; - } - - // Check cooldown - if (@kalmurk_at > gettimetick(2)) { - dispbottom l("Skill is in cooldown for @@.", FuzzyTime(@kalmurk_at)); - end; - } - - // Setup - @sk=TMW2_KALMURK; - @mp=40; - @amp=5; - - // Check if you have mana to cast - // MagicCheck(SkillID, Mana{, MP per level}) - if (!MagicCheck(@sk, @mp, @amp)) - end; - - // Destroy reagents - delitem MaggotSlime, 2; - - // set cooldown - @kalmurk_at=gettimetick(2); - @kalmurk_at=@kalmurk_at+16; - - if (rand(1,6) < abizit()+1) { - // Summon Magic - // SummonMagic(SkillID, MobID{, SkillLevelPerMob=2{, Level Override}}) - SummonMagic(@sk, Maggot, 2, MAGIC_LVL+getskilllv(@sk)-1); - } else { - dispbottom l("The spell fails!"); - } - - // Get a single mana experience point (this is NOT used by Soul Menhir) - GetManaExp(@sk, abizit()+1); - - end; - OnInit: bindatcmd "sk-kalmurk", "sk#kalmurk::OnCall", 0, 100, 0; end; |