summaryrefslogtreecommitdiff
path: root/npc/002-3/mining_camp_barrier.txt
blob: 7a6acb74f97808109e478d6f2be1d87dd1914813 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
002-3,82,32,0	script	#Sandstorm_Mine_Barrier	NPC45,0,0,{
    if (QL_MINEALL >= 8) goto L_Barrier_Open;

    message strcharinfo(0), "Some force seems to block your entrance.";
    goto L_End;

L_Barrier_Open:
    warp "002-4",37,31;
    goto L_End;

L_End:
    end;
}