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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
// This file is part of Christmas Event 2011
// author: Jenalya
// Bodyguards who don't let you enter Santa's room until after Christmas
030-2.gat,76,88,0|script|Vilhelmiina|335,{
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;
mes "[Vilhelmiina]";
mes "\"You can't get in that room now. Santa is very busy.\"";
menu
"But I want to talk to Santa!",-,
"Understood.",L_Close;
mes "[Vilhelmiina]";
mes "\"So? Now guess what me and my brother are here for?\"";
goto L_Close;
L_NoEvent:
mes "[Vilhelmiina]";
mes "\"How did you get in? At this time of the year this house isn't in use.\"";
warp "030-1.gat", 99, 55;
goto L_Close;
L_RewardTime:
mes "[Vilhelmiina]";
mes "\"Santa welcomes visitors now. You may enter.\"";
goto L_Close;
L_Close:
close;
}
030-2.gat,80,88,0|script|Verneri|334,{
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;
mes "[Verneri]";
mes "\"This is Santa's room.\"";
menu
"I want to see him!",-,
"Ok.",L_Close;
mes "The bodyguard takes a daunting look over his glasses at you.";
mes "[Verneri]";
mes "\"No.\"";
goto L_Close;
L_NoEvent:
mes "[Verneri]";
mes "\"What are you doing in here? At this time of the year this house isn't in use.\"";
warp "030-1.gat", 99, 55;
goto L_Close;
L_RewardTime:
mes "[Verneri]";
mes "\"You can enter now.\"";
goto L_Close;
L_Close:
close;
}
030-2.gat,152,22,0|script|Vanamo|332,{
if (!(gettime(7) == $@xmas2011_year && gettime(6) == 12 && gettime(5) >= $@xmas2011_start_day))
goto L_NoEvent;
mes "[Vanamo]";
mes "\"This area is restricted. You're not allowed to enter.\"";
close;
L_NoEvent:
mes "[Vanamo]";
mes "\"What are you doing in here? At this time of the year this house isn't in use.\"";
warp "030-1.gat", 99, 55;
close;
}
030-2.gat,89,23,0|script|Vihtori|333,{
if (!(gettime(7) == $@xmas2011_year && gettime(6) == 12 && gettime(5) >= $@xmas2011_start_day))
goto L_NoEvent;
mes "[Vihtori]";
mes "\"Mh? I'm having a break.\"";
close;
L_NoEvent:
mes "[Vihtori]";
mes "\"What are you doing in here? At this time of the year this house isn't in use.\"";
warp "030-1.gat", 99, 55;
close;
}
// door to Santa's room
030-2.gat,78,87,0|script|#door|127,1,1{
if ((gettime(7) == $@xmas2011_year && gettime(6) == 12 && gettime(5) >= $@xmas2011_reward_start_day))
goto L_RewardTime;
end;
L_RewardTime:
warp "030-2.gat", 194, 67;
end;
}
// entrance of the building
030-1.gat,99,53,0|script|#Door|127,1,1,{
if (!(gettime(7) == $@xmas2011_year && gettime(6) == 12 && gettime(5) >= $@xmas2011_start_day))
goto L_NoEvent;
warp "030-2.gat", 88, 50;
L_NoEvent:
end;
}
|