1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// Author: Jenalya
017-4.gat,216,36,0|script|Waric|153,{
if (OrumQuest > 15) goto L_Spells;
mes "[Waric]";
mes "\"You! You're really more insistent than it's good for you...\"";
mes "He turns towards Orum.";
next;
mes "[Waric]";
mes "\"It seems your ridiculous Guarding Spirit failed his task...";
mes "Deal with this, we really can't afford more of this distractions.\"";
goto L_Close;
L_Spells:
mes "TODO";
// teach spells
// doesn't trust the player at all if player is follower of sagatha
goto L_Close;
L_Close:
close;
}
017-1.gat,74,32,0|script|DebugFlowerP|153,{
mes "Debug options for Orum's quest:";
menu
"Candle Helmet done.", L_CandleHelmet,
"Input quest variable.", L_Var,
"Show current quest state.", L_CurrentState,
"Reset quest.", L_Reset,
"Nevermind.", L_Close;
L_CandleHelmet:
set OrumQuest, 14;
goto L_Close;
L_Var:
input OrumQuest;
goto L_Close;
L_CurrentState:
mes "The value of the quest variable OrumQuest is currently " + OrumQuest + ".";
goto L_Close;
L_Reset:
set OrumQuest, 0;
goto L_Close;
L_Close:
close;
OnInit:
if (!debug)
disablenpc "DebugFlowerP";
}
|