diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-21 14:37:50 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-21 14:37:50 -0300 |
commit | 87fa947250b0c9ff74a26650e1d7778006d2d633 (patch) | |
tree | d9e2459f533d061e8daed44e9d0ed5305c7a6135 | |
parent | b33261ac0a948f624fc94c1d1b8149ddaa59bef7 (diff) | |
download | serverdata-87fa947250b0c9ff74a26650e1d7778006d2d633.tar.gz serverdata-87fa947250b0c9ff74a26650e1d7778006d2d633.tar.bz2 serverdata-87fa947250b0c9ff74a26650e1d7778006d2d633.tar.xz serverdata-87fa947250b0c9ff74a26650e1d7778006d2d633.zip |
Clear overhead in Kalmurk
-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; |