// 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;
}