summaryrefslogtreecommitdiff
path: root/npc/005-1/warpcandorbattle.txt
blob: 964aff26c29a2294803b474351143264eb1be6bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// TMW2 Script
// Author:
//    Crazyfefe
//    Jesusalva

005-1,59,52,0	script	Magic Barrier	NPC_HIDDEN,0,0,{
    end;

OnTouch:
    if (BaseLevel >= 40 && !$@FIGHT_CAVE_LEVEL)
        warp "006-1", 49, 53;
    else if (BaseLevel >= 40)
        npctalk l("You don't have the required level to pass this barrier.");
    else
        npctalk l("You can't pass this barrier while people are fighting inside!");
    end;
}