summaryrefslogtreecommitdiff
path: root/npc/002-4/underground_palace_barrier.txt
blob: c51d73be921e823d15efbdd3b2fa7189cda04746 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}