diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-21 14:43:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-21 14:43:31 -0300 |
commit | 836f67d6033658db09ff15abca007ca6a14314a2 (patch) | |
tree | bdc44857a0955c4d7d0d17b9469ebac3456f74db /npc/magic/zarkor.txt | |
parent | 87fa947250b0c9ff74a26650e1d7778006d2d633 (diff) | |
download | serverdata-836f67d6033658db09ff15abca007ca6a14314a2.tar.gz serverdata-836f67d6033658db09ff15abca007ca6a14314a2.tar.bz2 serverdata-836f67d6033658db09ff15abca007ca6a14314a2.tar.xz serverdata-836f67d6033658db09ff15abca007ca6a14314a2.zip |
Limerizer now uses new magic system
Diffstat (limited to 'npc/magic/zarkor.txt')
-rw-r--r-- | npc/magic/zarkor.txt | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/npc/magic/zarkor.txt b/npc/magic/zarkor.txt index 9763189bb..4f63cace4 100644 --- a/npc/magic/zarkor.txt +++ b/npc/magic/zarkor.txt @@ -32,40 +32,6 @@ OnCall: dispbottom l("The usage of @sk-commands was deprecated"); end; - // Other requeriments - if (countitem(ZarkorScroll) < 1) { - dispbottom l("You need @@ to cast this skill.", getitemlink(ZarkorScroll)); - end; - } - - // Check cooldown - // This will vanish upon logout =/ - if (@zark_at > gettimetick(2)) { - dispbottom l("Skill is in cooldown for @@.", FuzzyTime(@zark_at)); - end; - } - - // Setup - @sk=TMW2_ZARKOR; - @mp=40; - @amp=7; - - // Check if you have mana to cast - // MagicCheck(SkillID, Mana{, MP per level}) - if (!MagicCheck(@sk, @mp, @amp)) - end; - - // Summon Magic - SummonMagic(@sk, CaveMaggot, 2); - - // Get a single mana experience point (this is NOT used by Mana Stone) - GetManaExp(@sk, 1); - - // set cooldown - @zark_at=gettimetick(2); - @zark_at=@zark_at+80; - end; - OnInit: bindatcmd "sk-zarkor", "sk#zarkor::OnCall", 0, 100, 0; end; |