blob: b53d4afe9b9460659f780a41e1fc09216aa77932 (
plain) (
tree)
|
|
// 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,
"Reset quest.", L_Reset,
"Nevermind.", L_Close;
L_CandleHelmet:
set OrumQuest, 14;
goto L_Close;
L_Var:
input OrumQuest;
goto L_Close;
L_Reset:
set OrumQuest, 0;
goto L_Close;
L_Close:
close;
OnInit:
if (!debug)
disablenpc "DebugFlowerP";
}
|