summaryrefslogtreecommitdiff
path: root/world/map/npc/056-2/barrier.txt
blob: 09aeb1a6faf646223fe2bf7f6115191871b3bc6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
056-2,23,33,0|script|#Barrier|45,0,0
{
    if (Mirak_Bantime > gettimetick(2))
        goto L_Block;
    if (BaseLevel < 25)
        goto L_Weak;
    warp "056-2", 63, 35;
    end;

L_Block:
    message strcharinfo(0), "I cannot enter... That old man really made sure that I would not be able to bother him again anytime soon.";
    end;

L_Weak:
    message strcharinfo(0), "I cannot enter because this magic field is too strong. Maybe I should train some more.";
    end;

}