blob: 75a20334f9f2e662291cd5e7aef0d7938ca355c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// TMW2 Script
// Author:
// Jesusalva
006-3,46,26,0 script Magic Barrier#0063 NPC_HIDDEN,0,0,{
end;
OnTouch:
if (!getq(CandorQuest_Groata)) goto L_Reject;
if (!getq(CandorQuest_Jak1)) goto L_Reject;
// FIXME: B3F is not ready, so fallthrough to L_Reject
L_Reject:
//warp "006-3", 49, 52;
specialeffect(5000, SELF, getcharid(3));
dispbottom l("The power which lies in Candor rejects your strength.");
sleep2(3000);
specialeffect(5002, SELF, getcharid(3));
end;
}
|