summaryrefslogtreecommitdiff
path: root/npc/magic/kalmurk.txt
blob: 11d1859dff1e2b28c0f86944d637147950db467c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// TMW2 script
// Author: Jesusalva <admin@tmw2.org>
//
// Magic Script: TMW2_KALMURK
// 
// Spawns Maggots.


-	script	sk#kalmurk	32767,{
    end;

/*
OnFriendlyDeath:
    emote 4;
    end;
*/

OnCall:
    // Other requeriments
    if (countitem(MaggotSlime) < 2) {
        dispbottom l("You need 2x @@ to cast this skill.", getitemlink(MaggotSlime));
        end;
    }

    // Check cooldown
    /* TODO */
    // This will only vanish upon logout =/
    if (@kalmurk_caveat) {
        dispbottom l("Skill is in cooldown.");
        end;
    }

    // Summon Magic
    // SummonMagic( SkillID, Mana, MobID{, MP per level, MobPerSkillLevel=2},{Lvl Override} )
    SummonMagic(TMW2_KALMURK, 200, Maggot, 50, 2, (MAGIC_LVL-1));
    delitem MaggotSlime, 2;

    // Get a single mana experience point (this is NOT used by Soul Menhir)
    GetManaExp(TMW2_KALMURK, 1);

    /*
    // set cooldown
    @skkalmurkor_cooldown=gettimetick(2)+20;
    */
    @kalmurk_caveat=1;
    end;

OnInit:
    bindatcmd "sk-kalmurk", "sk#kalmurk::OnCall", 0, 100, 0;
    end;
}