summaryrefslogtreecommitdiff
path: root/npc/006-3/warpcandorbattle.txt
blob: f2d11904892e4a35a26db2404b74bc133d88b7de (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
// TMW2 Script
// Author:
//    Crazyfefe
//    Jesusalva


006-3,53,36,0	script	Sign#0063CF	NPC_SWORDS_SIGN,{
    mesc l("To the courageous, thy foe is rancorous.");
    close;

OnInit:
    .sex = G_OTHER;
    .distance = 3;
    end;
}

// Effective warp
006-3,54,35,0	script	Magic Barrier#0064	NPC_HIDDEN,0,0,{
    end;

OnTouch:
    if (BaseLevel > 40)
        warp "006-4", 32, 258;
    else
        dispbottom l("Your strength is not enough to power on this portal.");
    end;
}