diff options
Diffstat (limited to 'npc/005-1')
-rw-r--r-- | npc/005-1/underground.txt | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/npc/005-1/underground.txt b/npc/005-1/underground.txt index ba721aaa6..3e35b296f 100644 --- a/npc/005-1/underground.txt +++ b/npc/005-1/underground.txt @@ -3,10 +3,23 @@ // Crazyfefe // Jesusalva -005-1,66,62,0 script Magic Barrier NPC_HIDDEN,0,0,{ +005-1,66,62,0 script Magic Barrier#0051 NPC_HIDDEN,0,0,{ end; OnTouch: + if (TUTORIAL) { + mesc ".:: "+l("WARNING")+" ::.", 1; + mesc l("You're about to enter a dangerous zone!"); + mesc l("Outside towns, there's an EXP penalty if you die."); + mes ""; + mes l("This cave is considered outside the town!"); + next; + mesc l("Enter anyway?"); + mesc l("EXP Penalty: ON"), 1; + if (askyesno() == ASK_NO) close; + closeclientdialog; + } warp "006-0", 49, 53; end; } + |