blob: b249de298fa77a09db75b33541fd8e62c381650d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// TMW2 scripts.
// Authors:
// Jesusalva
// Description:
// Part of the Doctor's Quest.
032-3,121,70,0 script #CryptEP NPC_HIDDEN,0,0,{
end;
OnTouch:
.@q = (getq(LoFQuest_EPISODE) == 15 ? getq2(LoFQuest_EPISODE) : 99);
if (getq(LoFQuest_EPISODE) > 15 || .@q >= 2)
warp "032-4", 40, 74;
else
dispbottom l("This door is locked.");
end;
}
|