diff options
Diffstat (limited to 'npc/002-4/underground_palace_barrier.txt')
-rwxr-xr-x | npc/002-4/underground_palace_barrier.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/npc/002-4/underground_palace_barrier.txt b/npc/002-4/underground_palace_barrier.txt new file mode 100755 index 00000000..c51d73be --- /dev/null +++ b/npc/002-4/underground_palace_barrier.txt @@ -0,0 +1,13 @@ +002-4,68,98,0 script #UGP_Barrier NPC45,0,0,{ + if (QL_MINEALL >= 25) goto L_Barrier_Open; + + message strcharinfo(0), "Some force seems to block your entrance."; + goto L_End; + +L_Barrier_Open: + warp "002-5",35,97; + goto L_End; + +L_End: + end; +} |