summaryrefslogtreecommitdiff
path: root/world/map/npc/011-6/barrier.txt
blob: 38188ad2da2bb84119e7a63c75b0f7f25aefe291 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
011-6,264,236,0|script|#BL_Barrier2|45,0,0
{
    set @state, ((QUEST_Hurnscald & NIBBLE_0_MASK) >> NIBBLE_0_SHIFT);

    if (@state >= 6) goto L_Lord_Hideout_Open;
    message strcharinfo(0), "You have a feeling that you should not enter this place now.";
    goto L_End;

L_Lord_Hideout_Open:
    warp "011-6",174,255;
    goto L_End;

L_End:
    set @state, 0;
    end;
}