summaryrefslogtreecommitdiff
path: root/npc/magic/zarkor.txt
blob: 4f63cace47854e74ba145abbce0ff5ac81a1bb2d (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
// TMW2 script
// Author: Jesusalva <admin@tmw2.org>
//
// Magic Script: TMW2_ZARKOR
//
// Spawns a Cave Maggot.
// This is to test stuff, more than to create anything really.

function	script	SK_zarkor	{
    // Set skill
    @sk=TMW2_ZARKOR;

    // Summon Magic
    SummonMagic(@sk, CaveMaggot, 2, @skillLv);

    // Get a single mana experience point (this is NOT used by Mana Stone)
    GetManaExp(@sk, 1);
    return;
}

-	script	sk#zarkor	32767,{
    end;

/*
OnFriendlyDeath:
    emote 4;
    end;
*/

OnCall:
    // Deprecated
    dispbottom l("The usage of @sk-commands was deprecated");
    end;

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