blob: c0946963b3d7feecb3d4c8b42275278366d59ac3 (
plain) (
tree)
|
|
//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",35,97;
goto L_End;
L_End:
set @state, 0;
end;
}
|