diff options
Diffstat (limited to 'npc/006-3/warpcandorbattle.txt')
-rw-r--r-- | npc/006-3/warpcandorbattle.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/npc/006-3/warpcandorbattle.txt b/npc/006-3/warpcandorbattle.txt new file mode 100644 index 000000000..a4528381f --- /dev/null +++ b/npc/006-3/warpcandorbattle.txt @@ -0,0 +1,27 @@ +// TMW2 Script +// Author: +// Crazyfefe +// Jesusalva + + +006-3,53,36,0 script Sign#0060CF 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 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; +} |