summaryrefslogtreecommitdiff
path: root/npc/commands/magic.txt
blob: d63bf70a70cb21062eac0de978378a41aad9d040 (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
function	script	MagicIsDead	{

        setnpcdialogtitle l("We regret to inform...");
        mes l("Magic is dead!");
        next;
        mes "";
        mes l("You are staff, so no complaining! Go do it yourself!");
        next;
        return;
}



-	script	@MagicIsDead	32767,{
    end;

OnCall:
    MagicIsDead;
    closedialog;
    end;

OnInit:
    bindatcmd "itenplz", "@MagicIsDead::OnCall", 100, 1, 0;
    bindatcmd "lum", "@MagicIsDead::OnCall", 100, 1, 0;
    bindatcmd "chiza", "@MagicIsDead::OnCall", 100, 1, 0;
    bindatcmd "ingrav", "@MagicIsDead::OnCall", 100, 1, 0;
    bindatcmd "frillyar", "@MagicIsDead::OnCall", 100, 1, 0;
    bindatcmd "upmarmu", "@MagicIsDead::OnCall", 100, 1, 0;
    bindatcmd "flar", "@MagicIsDead::OnCall", 100, 1, 0;


}