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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// This file is part of Christmas Event 2011
// author: Jenalya
// Warrick is the Chief of Santa's helpers, starts the quest
030-2.gat,87,77,0|script|Chief Warrick|329,{
if (!(gettime(7) == $@xmas2011_year && gettime(6) == 12 && gettime(5) >= $@xmas2011_start_day))
goto L_NoEvent;
if ((gettime(7) == $@xmas2011_year && gettime(6) == 12 && gettime(5) >= $@xmas2011_reward_start_day))
goto L_RewardTime;
if ((BaseLevel < 30) && (gettimetick(2)-TUT_var < 3*7*86400)) // player must be created at least three weeks ago
goto L_NoHelp;
if (xmas11 & $@xmas11_talkedToChief) goto L_Helping;
mes "[Important looking Person]";
mes "\"Welcome to the home of Santa! My name is Warrick, I'm the chief of Santa's helpers.";
mes "As you certainly know Christmas is near. Therefore we're very very busy.\"";
next;
mes "\"For this reason I have to ask you to leave and come back some at some more convenient time.\"";
menu
"But I want to see Santa!",-,
"I'm so excited! This is really Santa's house?",-,
"This is not very friendly. Isn't Christmas about love and happiness and all?",-;
mes "Warrick sighs.";
mes "[Chief Warrick]";
mes "\"Usually we'd be more obliging. But this year - our preparations for Christmas -";
mes "Everything is going wrong, we're missing ingredients for the Christmas candy and material for the toys.";
mes "The lists about the good and bad kids got mixed up, everything is in utter confusion.";
mes "And to make matters worse some of the reinboos are missing!\"";
next;
mes "\"Oh, please excuse me. I didn't mean to moan.";
mes "However, as you can see we have to deal with some serious problems here.";
mes "So I'd appreciate if you could just leave and not interfere.\"";
menu
"But I can help!",-;
mes "He hesitates.";
mes "[Chief Warrick]";
mes "\"I'm not sure...\"";
menu
"Really, I can do a lot of things.",-;
mes "[Chief Warrick]";
mes "\"Well, alright. I suppose it can't get worse than it already is.";
mes "Go to the helpers all over the house and ask them what is needed.";
mes "This will show you're hired as a co-helper.\"";
mes "He stabs your chest with his finger and leaves a blinking mark.";
set xmas11, xmas11 | $@xmas11_talkedToChief;
goto L_Close;
L_Helping:
mes "[Chief Warrick]";
mes "\"I hope you're doing well.\"";
goto L_Close;
L_NoEvent:
mes "[Chief Warrick]";
mes "\"How did you come in? At this time of the year the door should be locked!\"";
warp "030-1.gat", 99, 55;
goto L_Close;
L_RewardTime:
mes "Warrick looks really tired.";
mes "[Chief Warrick]";
mes "\"I'm so glad it's over for this year.";
mes "Did you already talk to Santa?\"";
goto L_Close;
L_NoHelp:
mes "[Chief Warrick]";
mes "\"Hello young one. Welcome to Santa's house.";
mes "Have a look around and enjoy your visit, but please don't interrupt the busy helpers.\"";
mes "He smiles at you.";
goto L_Close;
L_Close:
close;
}
//030-2.gat,85,33,0|script|Debug|105,{
// callfunc "xmas2011debug";
//}
|