summaryrefslogtreecommitdiff
path: root/world/map/npc/002-4/underground_palace_barrier.txt
blob: 240dbbaeec0394f4c4b48e9f2e159e7fecba34b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//underground palace barrier

002-4.gat,68,98,0|script|#UGP_Barrier|45,0,0,
{
    // This NPC previously used the variable TMW_Quest
    callfunc "ClearVarTMW_Quest";

    set @state, ((QUEST_SouthTulimshar & BYTE_2_MASK) >> BYTE_2_SHIFT);

    if (@state >= 25) goto L_Underground_Palace_Barrier_Open;

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

L_Underground_Palace_Barrier_Open:
    warp "002-5.gat",37,96;
    goto L_End;

L_End:
    set @state, 0;
    end;
}