blob: b120da1749b05515f1d8a68c8cd22669ceccbb20 (
plain) (
tree)
|
|
// TMW2 Script
// Author:
// Crazyfefe
// Jesusalva
005-1,59,52,0 script Magic Barrier NPC_HIDDEN,0,0,{
end;
OnTouch:
if (BaseLevel >= 40 && !$@FEFE_CAVE_LEVEL)
warp "006-1", 49, 53;
else if (BaseLevel < 40)
npctalk3 l("You don't have the required level to pass this barrier.");
else
npctalk3 l("You can't pass this barrier while people are fighting inside!");
end;
}
|