summaryrefslogtreecommitdiff
path: root/npc/events/christmas_2005.txt
blob: 06af141848c5366f5159cde6f05aa2784f703425 (plain) (blame)
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
//================= Hercules Script =======================================
//=       _   _                     _
//=      | | | |                   | |
//=      | |_| | ___ _ __ ___ _   _| | ___  ___
//=      |  _  |/ _ \ '__/ __| | | | |/ _ \/ __|
//=      | | | |  __/ | | (__| |_| | |  __/\__ \
//=      \_| |_/\___|_|  \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2012-2020 Hercules Dev Team
//= Copyright (C) Paradox924X
//= Copyright (C) L0ne_W0lf
//= Copyright (C) Brainstorm
//=
//= Hercules is free software: you can redistribute it and/or modify
//= it under the terms of the GNU General Public License as published by
//= the Free Software Foundation, either version 3 of the License, or
//= (at your option) any later version.
//=
//= This program is distributed in the hope that it will be useful,
//= but WITHOUT ANY WARRANTY; without even the implied warranty of
//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//= GNU General Public License for more details.
//=
//= You should have received a copy of the GNU General Public License
//= along with this program.  If not, see <http://www.gnu.org/licenses/>.
//=========================================================================
//= 2005 Christmas Event
//================= Description ===========================================
//= Event 1: Louise's Kim creates Louise's Santa Hat.
//= Event 2: Enjoy Happymerry Chistmas Event summons monsters.
//= Event 3: Oholy requires you to hunt Deviruchi NPCs.
//================= Current Version =======================================
//= 1.2a
//=========================================================================

//== Louise's Santa Hat (Event 1) ==========================
xmas_in,89,92,5	script	Louise Kim#designer	4_F_06,{
	mes "[Designer Louise Kim]";
	mes "Cone shaped red Santa hat is too ordinary.";
	mes "It's old fashioned.";
	mes "Maybe in 1980's?!";
	mes "Haha~";
	next;
	mes "[Designer Louise Kim]";
	mes "If you leave it on me,";
	mes "I'll change it to lastest model.";
	mes "You know what I mean~!";
	next;
	mes "[Designer Louise Kim]";
	mes "You know Antonio's hat,right?";
	mes "Guess who made it?";
	mes "As you know, Antonio is hard to catch,";
	mes "that's because I blowed some power in the hat. ";
	mes "";
	next;
	mes "[Designer Louise Kim]";
	mes "If you don't like your hat,";
	mes "bring it to me.";
	mes "I'll change it to brand new one.";
	mes "Stylish Louise's hat.";
	mes "";
	emotion e_lv;
	next;
	if (countitem(Santas_Hat) > 0) {
		if (select("Here.", "It's ok.") == 1) {
			mes "[Designer Louise Kim]";
			mes "Nice choice!!";
			mes "If I do it like this ...";
			mes "and this and...";
			mes "finally it'll turn into fantastic hat.";
			mes "But before that,I need some materials to make with.";
			next;
			if (select("What are the materials?", "So what? I don't want to know.") == 1) {
				mes "[Designer Louise Kim]";
				mes "Well, nothing special.";
				mes "Basically, you need Santa's hat of course.";
				mes "and with a touch of my magical fingers,";
				mes "it'll just turn into very special thing.";
				mes "Well,just little bit prettier and";
				mes "little bit more practical. Haha...";
				next;
				mes "[Designer Louise Kim]";
				mes "Anyway,to sum up,required materials are....";
				mes "Basically ^0000FFSanta's Hat^000000 and";
				mes " ^0000FF 1 Cactus Needle ^000000 for sewing, ";
				mes "^0000FF 10 Holy Water ^000000 for blessing, ";
				mes "^0000FF 1 Rosary ^000000 for luckiness.";
				mes "It's pretty enough to make Louise Hat.";
				next;
				if (countitem(Cactus_Needle) > 0 && countitem(Holy_Water) > 9 && countitem(Rosary) > 0) {
					select("Here you are.....");
					mes "[Designer Louise Kim]";
					mes "Wow~~!! So fast!!";
					mes "I like your style~.";
					mes "Ok!! If everything is ready, no need to hesitate.";
					mes "I'll show you what Designer Louise Kim's power is.";
					emotion e_no1;
					next;
					mes "-She puts the hat in a bucket -";
					mes "-filled with Holy Water.-";
					mes "-She rapidly takes it out and starts mending the hat-";
					mes "-humming a tune.-";
					next;
					mes "[Designer Louise Kim]";
					mes "~With the number one designer, Louise Kim,~";
					mes "~you are the most blessed soul.~";
					emotion e_ho;
					specialeffect(EF_BLESSING);
					next;
					mes "-Immediately, she puts Rosary in an-";
					mes "-unknown liquid and dissolves it.-";
					mes "-And with a brush,-";
					mes "-neatly coats the liquid on -";
					mes "-a thread of the hat.-";
					next;
					mes "[Designer Louise Kim]";
					mes "~With the number one designer, Louise Kim,~";
					mes "~you are the luckiest soul.~";
					emotion e_ho;
					specialeffect(EF_GLORIA);
					next;
					mes "-She starts sewing the hat with -";
					mes "-a Cactus Needle and a thread.-";
					mes " ";
					next;
					mes "[Designer Louise Kim]";
					mes "~This is called the Louise's miracle.~";
					mes "~The most talented disigner,~";
					mes "~L_O_U_I_S_E K_I_M~";
					emotion e_lv;
					specialeffect(EF_BENEDICTIO);
					next;
					mes "[Designer Louise Kim]";
					mes "Here!! All done~~";
					mes "How do you like it?";
					mes "Isn't it so wonderful?";
					mes "Take it!! It's a gift.";
					next;
					mes "[Designer Louise Kim]";
					mes "I should have called high price for it";
					mes "but as you know it's Christmas!";
					mes "It's a gift for you!";
					mes "I won't charge anything.";
					mes "Just tell many people how good it is.";
					emotion e_heh;
					next;
					mes "[Designer Louise Kim]";
					mes "Wherever you go,";
					mes "whatever you do,";
					mes "never take off the hat.";
					mes "You won't have a chance to buy it";
					mes "no matter how much you pay.";
					next;
					mes "[Designer Louise Kim]";
					mes "Alright~Go ahead~";
					mes "Go brag yourself!";
					mes "~Who would be happier than~";
					mes "~being with Louise.~";
					emotion e_ho;
					delitem Santas_Hat,1;
					delitem Cactus_Needle,1;
					delitem Holy_Water,10;
					delitem Rosary,1;
					getitem Santas_Hat_,1;
					close;
				}
				else {
					mes "[Designer Louise Kim]";
					mes "Come on~If you just get me the materials,";
					mes "I won't chage anything,";
					mes "Call me if you change your mind.";
					emotion e_lv;
					close;
				}
			}
			mes "[Designer Louise Kim]";
			mes "You'll regret!";
			mes "Think again!";
			emotion e_heh;
			close;
		}
		mes "[Designer Louise Kim]";
		mes "Ok~ whatever~";
		mes "It's not me,";
		mes "who's going to lose whose own luck.";
		emotion e_heh;
		close;
	}
	else {
		mes "[Designer Louise Kim]";
		mes "Perhaps you get the chance to acheive Santa's Hat later some time,";
		mes "think about it carefully.";
		mes "You can get the better designed hat,";
		mes "and I can show off my talent.";
		mes "";
		emotion e_heh;
		close;
	}
}

//== Enjoy Happymerry Chistmas Event (Event 2) =============
prontera,155,285,3	script	Enjoy#enjoy	4_M_MONK,{
	if (!christ_solo05){
		mes "[Enjoy]";
		mes "Oh~~~";
		mes "It's already winter again~~!";
		mes "This chilling weather makes";
		mes "my body freeze~";
		mes "And also makes my heart freeze.";
		mes "Who said that christmas is only for lovers~";
		mes "Oh~~I'm so lonely~!!!";
		next;
		mes "[Enjoy]";
		mes "Pitiless sister!!";
		mes "How can she leave me alone on a christmas day~";
		mes "'Spend your days with family on a chirstmas day'";
		mes "is our family precept";
		mes "Hm...I need to get some rest.";
		mes "I'm so nervous these days~";
		next;
		mes "[Enjoy]";
		mes "Lets make a joyful christmas for ";
		mes "lonely singles.";
		mes "Who's with me?!!";
		mes "!!!!!!!!!!!";
		mes "!!!!!!!!!!!!!";
		next;
		switch(select("Wow!", "Hm...I'm not interested.", "I have ~")){
		case 1:
			mes "[Enjoy]";
			mes "Alright~~!!!";
			mes "Let's rock and roll!!";
			mes "Here's my plan!!";
			mes "Let's punish those couples";
			mes "who are so excited about christmas.";
			mes "I just don't want to see them happy.";
			next;
			mes "[Enjoy]";
			mes "To put in action,";
			mes "we need to gather many phalanges.";
			mes "Ok!!Bring our phalanges in every town on a way back here. ";
			mes "Alright?Let's go!!";
			next;
			mes "[Enjoy]";
			mes "Each should have one person's phone number.";
			mes "We must keep it secret before we put in action.";
			mes "So we must be very careful.";
			mes "Well...";
			mes "I know ^0000FFHappymerry^000000's phone number.";
			next;
			mes "[Enjoy]";
			mes "First of all, go look for ^0000FFHappymerry^000000";
			mes "and tell him about our plan.";
			mes "On a way back, bring as many phalanges as you can. ";
			next;
			mes "["+ strcharinfo(PC_NAME) +"]";
			mes "Alright,sir!!!";
			next;
			mes "[Enjoy]";
			mes "Oh,and don't forget to bring";
			mes "5 branch of dead trees!!!";
			mes "Must bring item to attack town~";
			mes "hahahaha~~";
			emotion e_gg;
			next;
			mes "[Enjoy]";
			mes "Get it?!!!!";
			mes "Let's go punish!!!";
			mes "We are not being jealous,";
			mes "It's just not right leading a loose life!";
			next;
			mes "["+ strcharinfo(PC_NAME) +"]";
			mes "Let's punish!!!!!!!!!!!!!!!!!!!!!!!!!!!";
			christ_solo05 = 1;
			close;
		case 2:
			mes "[Enjoy]";
			mes "If you are not with me, get away~!!";
			mes "Get out of my sight!!!!";
			mes "";
			close;
		case 3:
			mes "[Enjoy]";
			mes "......";
			specialeffect EF_BLESSING;
			next;
			mes "[Enjoy]";
			mes ".............";
			specialeffect EF_INCAGIDEX;
			next;
			mes "[Enjoy]";
			mes "........................";
			specialeffect EF_STEELBODY;
			next;
			mes "[Enjoy]";
			mes "........................";
			mes "Get lost,you devil!!!!!!";
			specialeffect EF_BEGINASURA;
			specialeffect(EF_HIT2, AREA, playerattached());
			Hp /= 2;
			Hp /= 2;
			close2;
			warp "prontera",155,230;
			end;
		}
	}
	else if ((christ_solo05 > 0) && (christ_solo05 < 5)){
		mes "[Enjoy]";
		mes "Each should have one person's phone number.";
		mes "We must keep it secret before we put in action.";
		mes "So we must be very careful.";
		mes "Well...";
		mes "I know ^0000FFHappymerry^000000's phone number.";
		next;
		mes "[Enjoy]";
		mes "First of all, go look for ^0000FFHappymerry^000000";
		mes "and tell him about our plan.";
		mes "On a way back, bring as many phalanges as you can.";
		next;
		mes "[Enjoy]";
		mes "Oh,and don't forget to bring";
		mes "5 branch of dead trees!!!";
		mes "Let's go punish couples!!!";
		close;
	}
	else if (christ_solo05 == 5) {
		if (countitem(Branch_Of_Dead_Tree) > 4){
			mes "[Enjoy]";
			mes "Did you do as I told you to do?!!!";
			mes "Did you bring branch of dead trees?Let me see~~!!";
			next;
			mes "[Enjoy]";
			mes "Fine!!";
			mes "You are all ready!!!";
			next;
			mes "["+ strcharinfo(PC_NAME) +"]";
			mes "Wait!!";
			mes "Where's other people??";
			next;
			mes "[Enjoy]";
			mes "What are you talking about?!";
			mes "They are already here.......";
			next;
			mes "[Enjoy]";
			mes "Can't you see?!";
			mes "Please~!!!!Are you ok?!!!";
			donpcevent "Happymerry#happymerry02::OnCommandOn";
			donpcevent "Christ#christ02::OnCommandOn";
			donpcevent "Mas#mas02::OnCommandOn";
			donpcevent "Event#event02::OnCommandOn";
			next;
			mes "["+ strcharinfo(PC_NAME) +"]";
			mes "Oh.. Yup!!!";
			next;
			mes "[Enjoy]";
			mes "Welcome!! Welcome,my phalanges!!!";
			mes "Being a single is not a sin.";
			mes "Why do we have to hide ourselves from ";
			mes "their sight!";
			mes "I hate couples!!";
			mes "Poor single!!";
			next;
			mes "[Enjoy]";
			mes "For those of who have friend who just met his/her mate,";
			mes "or who had to turn his/her back from kissing couples!!";
			mes "What are you waiting for!!";
			mes "Why do we have to be the victim!!";
			mes "";
			next;
			mes "[Enjoy]";
			mes "It's christmas season again!!";
			mes "";
			next;
			mes "[Enjoy]";
			mes "Are we the soldiers";
			mes "who have beaten up monsters with our bare hand.";
			mes "Don't you remember the days?!!We have jumped down from Air ship!!";
			mes "We are well trained singles!!Haha~!";
			next;
			mes "[Enjoy]";
			mes "We don't have to wipe our tears";
			mes "looking at party players anymore.";
			mes "No need to envy!!";
			mes "This christmas is for singles!! ";
			mes "Yahoo~";
			mes "";
			next;
			mes "[All]";
			mes "Christmas for singles!!!";
			mes "No more envy!!No more sorrow!!No more anger!!!";
			mes "Christmas for singles!!!";
			next;
			mes "-Enjoy takes away branches of dead trees.";
			mes "-Grabs them tight.-";
			next;
			mes "[Enjoy]";
			mes "Let's punish couples,";
			mes "those of who leading a loose life!!";
			mes " ";
			mes "[All]";
			mes "Let's punish!!!!!";
			emotion e_go;
			emotion e_go,1;
			donpcevent "Happymerry#happymerry02::OnCommandEmotion";
			donpcevent "Christ#christ02::OnCommandEmotion";
			donpcevent "Mas#mas02::OnCommandEmotion";
			donpcevent "Event#event02::OnCommandEmotion";
			specialeffect(EF_HITLINE2);
			delitem Branch_Of_Dead_Tree,5; //Branch_of_Dead_Tree
			christ_solo05 = 6;
			donpcevent "Happymerry#happymerry02::OnCommandOff";
			donpcevent "Christ#christ02::OnCommandOff";
			donpcevent "Mas#mas02::OnCommandOff";
			donpcevent "Event#event02::OnCommandOff";
			close2;
			mapannounce "prontera", "Single soldiers "+ strcharinfo(PC_NAME) +"'s sorrow spread all over the town.",bc_map,0x66FFCC;
			monster "prontera",155,300,""+ strcharinfo(PC_NAME) +"'s anguish",1062,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",156,300,""+ strcharinfo(PC_NAME) +"'s jealousy",1062,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",157,300,""+ strcharinfo(PC_NAME) +"'s despair",1062,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",158,300,""+ strcharinfo(PC_NAME) +"'s frustration",1062,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",154,300,""+ strcharinfo(PC_NAME) +"'s bombing",1062,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",158,299,""+ strcharinfo(PC_NAME) +"'s grudge",1246,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",157,299,""+ strcharinfo(PC_NAME) +"'s curse",1246,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",156,299,""+ strcharinfo(PC_NAME) +"'s anger",1246,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",155,299,""+ strcharinfo(PC_NAME) +"'s grief",1246,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",154,299,""+ strcharinfo(PC_NAME) +"'s hatred",1246,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",158,298,""+ strcharinfo(PC_NAME) +"'s a bitter taste of solo",1245,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",157,298,""+ strcharinfo(PC_NAME) +"'s couple punisher",1245,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",156,298,""+ strcharinfo(PC_NAME) +"'s loneliness",1245,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",155,298,""+ strcharinfo(PC_NAME) +"'s sobbing",1245,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",154,298,""+ strcharinfo(PC_NAME) +"'s darkness",1245,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",158,297,""+ strcharinfo(PC_NAME) +"'s depression",1244,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",157,297,""+ strcharinfo(PC_NAME) +"'s estrangement",1244,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",156,297,""+ strcharinfo(PC_NAME) +"'s nightmare",1244,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",155,297,""+ strcharinfo(PC_NAME) +"'s wail",1244,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",154,297,""+ strcharinfo(PC_NAME) +"'s whisper",1244,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",158,296,""+ strcharinfo(PC_NAME) +"'s regret",1588,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",157,296,""+ strcharinfo(PC_NAME) +"'s shadow",1588,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",156,296,""+ strcharinfo(PC_NAME) +"'s couplebreaker",1588,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",155,296,""+ strcharinfo(PC_NAME) +"'s sadness",1588,1,"Enjoy#enjoy::OnMyMobDead";
			monster "prontera",154,296,""+ strcharinfo(PC_NAME) +"'s symbol of brokenheart",1588,1,"Enjoy#enjoy::OnMyMobDead";
			donpcevent "Enjoy#enjoy::OnCommandGo";
			end;
		}
		else {
			mes "[Enjoy]";
			mes "There's no much time left!!!";
			mes "No time to hesitate!!";
			mes "Couples will enjoy their christmas day";
			mes "so happily.";
			mes "Are you going to leave them like that!!!!!";
			mes "Let's go let's go!!";
			mes "Go get ^0000FF 5 branch of dead tree^000000s!!!";
			close;
		}
	}
	else {
		mes "[Enjoy]";
		mes "Hm.... ";
		mes "It's no use just blaming oneself!";
		mes "We lonely fellows can build our own hopeful future.";
		mes "Let's go!!";
		mes "Let's go phalanges!!!";
		next;
		mes "[Enjoy]";
		mes "For the day we all get happy~!!";
		mes "Let's go for it!!!";
		mes "Cheer up everybody!!!";
		mes "Let's rock till you get happy~!";
		mes "";
		christ_solo05 = 0;
		close;
	}

OnMyMobDead:
	end;

OnCommandGo:
	disablenpc "Enjoy#enjoy";
	initnpctimer;
	end;

OnCommandStop:
	enablenpc "Enjoy#enjoy";
	killmonster "prontera","Enjoy#enjoy::OnMyMobDead";
	stopnpctimer;
	end;

OnTimer3000:
	mapannounce "prontera", "You must refine by yourself to satisfy!!!!",bc_map,0x66FFCC;
	end;

OnTimer5000:
	mapannounce "prontera", "It's a waste to organize party at dungeon!!!",bc_map,0x66FFCC;
	end;

OnTimer7000:
	mapannounce "prontera", "There is a NPC flirting me!!!",bc_map,0x66FFCC;
	end;

OnTimer9000:
	mapannounce "prontera", "I was always alone from the day I was born!!",bc_map,0x66FFCC;
	end;

OnTimer11000:
	mapannounce "prontera", "We dig herbs even on a christmas day!!",bc_map,0x66FFCC;
	end;

OnTimer13000:
	mapannounce "prontera", "...We are the insuperable single soldiers!!!",bc_map,0x66FFCC;
	end;

OnTimer180000:
	mapannounce "prontera", "Wish every single soldiers have a merry christmas!!",bc_map,0x66FFCC;
	donpcevent "Enjoy#enjoy::OnCommandStop";
	end;
}

prontera,150,286,5	script	Happymerry#happymerry02	4_M_LGTMAN,{
	end;

OnInit:
	disablenpc "Happymerry#happymerry02";
	stopnpctimer;
	end;

OnCommandOn:
	initnpctimer;
	enablenpc "Happymerry#happymerry02";
OnCommandEmotion:
	emotion e_go;
	end;

OnCommandOff:
	disablenpc "Happymerry#happymerry02";
	stopnpctimer;
	end;

OnTimer60000:
	donpcevent "Happymerry#happymerry02::OnCommandOff";
	donpcevent "Christ#christ02::OnCommandOff";
	donpcevent "Mas#mas02::OnCommandOff";
	donpcevent "Event#event02::OnCommandOff";
	stopnpctimer;
	end;
}

prontera,161,286,4	script	Christ#christ02	4_M_PECOKNIGHT,{
	end;
OnInit:
	disablenpc "Christ#christ02";
	end;

OnCommandOn:
	enablenpc "Christ#christ02";
OnCommandEmotion:
	emotion e_go;
	end;

OnCommandOff:
	disablenpc "Christ#christ02";
	end;
}

prontera,161,281,1	script	Mas#mas02	4_M_ALCHE_A,{
	end;
OnInit:
	disablenpc "Mas#mas02";
	end;

OnCommandOn:
	enablenpc "Mas#mas02";
OnCommandEmotion:
	emotion e_go;
	end;

OnCommandOff:
	disablenpc "Mas#mas02";
	end;
}

prontera,150,281,7	script	Event#event02	4_M_SITDOWN,{
	end;
OnInit:
	disablenpc "Event#event02";
	end;

OnCommandOn:
	enablenpc "Event#event02";
OnCommandEmotion:
	emotion e_go;
	end;

OnCommandOff:
	disablenpc "Event#event02";
	end;
}

prontera,188,177,4	script	Happymerry#happymerry	4_M_LGTMAN,{
	if (christ_solo05==1) {
		mes "[Happymerry]";
		mes "Holgren~~!!";
		mes "I've never expected you betraying me! Don't wanna get refined~!!!";
		mes "I hate christmas~!";
		emotion e_sob;
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Are...you...?";
		next;
		mes "[Happymerry]";
		mes "What are you laughing at? huh~!";
		mes "At least, I never borrowed a hand";
		mes "to get my equips refined!";
		mes "I was always brave!!";
		mes "Blessing? Gloria~~?!";
		mes "Couples~~duh~!!!!!!";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "You seem to be the right one!!!";
		mes "Enjoy is waiting for you.";
		mes "let's go!!!";
		next;
		mes "[Happymerry]";
		mes "...!";
		mes "The day has come?";
		mes "He help me last christmas,";
		mes "when I failed refining my equips.";
		mes "Oh, holy Enjoy~";
		mes "";
		next;
		mes "[Happymerry]";
		mes "Alright!I've been waiting for a year!!";
		mes "I'm ready to mess up christmas day~!!";
		mes "So,where is Enjoy?";
		mes "Where is he?!";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "He's waiting for you!";
		mes "Go ahead~";
		mes "I'll follow you after contacting others.";
		mes "";
		next;
		mes "[Happymerry]";
		mes "Alright!";
		mes "I was supposed to call ^0000FFChrist^000000!";
		mes "Call him for me!";
		mes "I'll go ahead with my bags packed up.";
		mes "See ya!";
		christ_solo05 = 2;
		close;
	}
	else if (christ_solo05 > 1) {
		mes "[Happymerry]";
		mes "Hm...There's more things to pack up than I thought.";
		mes "Well,it's been a year.....";
		mes "Anyway,";
		mes "Don't for get to call ^0000FFChrist^000000!";
		mes "See ya!";
		close;
	}
	else {
		mes "[Happymerry]";
		mes "Holgren!!";
		mes "I've never expected you betraying me! Don't wanna get refined~!!!";
		mes "I hate christmas~!";
		emotion e_sob;
		next;
		mes "[Happymerry]";
		mes "What are you laughing at? huh~!";
		mes "At least, I never borrowed a hand";
		mes "to get my equips refined!";
		mes "I was always brave!!";
		mes "Blessing? Gloria~~?!";
		mes "Couples~~duh~!!!!!!";
		close;
	}
}

prontera,62,339,3	script	Christ#christ	4_M_PECOKNIGHT,{
	if (christ_solo05 == 2) {
		mes "[Christ]";
		mes "Now~finally!!!";
		mes "I get to ride Pecopeco~!";
		mes "Why do need to organize a party with priest?!";
		mes "I don't need all that.";
		mes "Only thing I need is this chubby Pecopeco~!";
		mes "";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Um...";
		next;
		mes "[Christ]";
		mes "Who are you!";
		mes "Don't ever think to get around my Peco~!";
		mes "Oh~my sweat Peco~~Weren't you scared? It's ok darling.";
		mes "Enjoy was all alone lonely from the day he were born~";
		mes "But me?!! Nope!!";
		mes "I have my sweat peco with me!!";
		next;
		mes "[Christ]";
		mes "I'm going to held party with my peco.";
		mes "We'll share christmas cake together and.....";
		mes "I'm not gonna be lonely~";
		mes "No I won't!!!";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Actually Enjoy told me...";
		next;
		mes "[Christ]";
		mes "Huh? What did you say?";
		mes "Enjoy? You know him? Then,you must be the one whom Happymerry sent!?";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Yes~ Happymerry sent me...";
		next;
		mes "[Christ]";
		mes "Finally, the day has come!!";
		mes "Did you hear it? Peco~";
		mes "...We have an amazing plan!";
		mes "This christmas is gonna be fantastic!!";
		mes "No need to envy couples!!";
		next;
		mes "[Christ]";
		mes "Alright!!";
		mes "I'll run to Enjoy with my peco~!";
		mes "Go tell ^0000FFMas^000000";
		mes "about this!!!";
		mes "See ya~~!";
		christ_solo05 = 3;
		close;
	}
	else if (christ_solo05 > 2) {
		mes "[Christ]";
		mes "Than,see you there!!";
		mes "I'll go meet Enjoy!";
		mes "Never forget to tell ^0000FFMas^000000";
		mes "about this!!!";
		mes "See ya~~!";
		close;
	}
	else {
		mes "[Christ]";
		mes "Now~finally!!!";
		mes "I get to ride Pecopeco~!";
		mes "Why do need to organize a party with priest?!";
		mes "I don't need all that.";
		mes "Only thing I need is this chubby Pecopeco~!";
		mes "";
		next;
		mes "[Christ]";
		mes "Who are you!";
		mes "Don't ever think to get around my Peco~!";
		mes "Oh~my sweat Peco~~Weren't you scared?It's ok darling.";
		mes "Enjoy was all alone lonely from the day he were born~";
		mes "But me?!!Nope!!";
		mes "I have my sweat peco with me!!";
		next;
		mes "[Christ]";
		mes "I'm going to held party with my peco.";
		mes "We'll share christmas cake together and.....";
		mes "I'm not gonna be lonely~";
		mes "No I won't!!!";
		close;
	}
}

prontera,163,66,7	script	Mas#mas	4_M_ALCHE_A,{
	if (christ_solo05 == 3) {
		mes "[Mas]";
		mes "Herds!!!!!How long does it take!";
		mes "Somebody know the regenerating time of Herb?!!";
		mes "I'll dig herbs and make potions and sell it to singles!!";
		mes "Hahahaha!!";
		next;
		mes "[Mas]";
		mes "Ah~~";
		mes "How come I feel so empty~.";
		mes "although I have herds fill in a storage. ";
		mes "No~~!!!!!!";
		mes "No time to waste~~";
		mes "Let's dig herbs.......";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Hey~are you ok? Are you Mas?";
		next;
		mes "[Mas]";
		mes "Who...who are you?!!!";
		mes "Well, it's been so long since I spoke to a stranger.";
		mes "Hm...";
		mes "I feel something warm inside my heart....... ";
		mes "Never mind!! What am I thinking?!!";
		mes "Get away~I have dig herbs~";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Mas!!";
		mes "Are you ok?!";
		mes "Christ sent me.";
		next;
		mes "[Mas]";
		mes "What!!!Already!!";
		mes "Yeah~right!";
		mes "I don't need to spend times digging herbs!!";
		mes "If Enjoy made an order!?!";
		mes "I'll be there right away~!!!!!";
		next;
		mes "[Mas]";
		mes "...Are going with me?";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "No~~";
		mes "I have something left to do.";
		mes "I have to tell others about this.";
		next;
		mes "[Mas]";
		mes "Oh yeah right!!!";
		mes "Go look for ^0000FFEvent^000000.";
		mes "Well,bye~.";
		mes "I'll meet you there!!...";
		mes "Herbs~?! Couples?! Whatever~~";
		christ_solo05 = 4;
		close;
	}
	else if (christ_solo05 > 3) {
		mes "[Mas]";
		mes "If you excuse me, I'll go ahead and meat Enjoy.";
		mes "And don't forget to tell ^0000FFEvent^000000 about this.";
		mes "Herbs~couples~~Whatever~~";
		mes "This christmas is gonna be fantastic!!";
		mes "Hahahaha~";
		close;
	}
	else {
		mes "[Mas]";
		mes "Herds!!!!!How long does it take!";
		mes "Somebody know the regenerating time of Herb?!!";
		mes "I'll dig herbs and make potions and sell it to singles!!";
		mes "Hahahaha!!";
		next;
		mes "Ah~~";
		mes "How come I feel so empty~.";
		mes "although I have herds fill in a storage. ";
		mes "No~~!!!!!!";
		mes "No time to waste~~";
		mes "Let's dig herbs.......";
		close;
	}
}

prontera,35,209,5	script	Event#event	4_M_SITDOWN,{
	if (christ_solo05 == 4) {
		mes "[Event]";
		mes "........................";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "...Are... you...?";
		next;
		mes "[Event]";
		mes "...I love you too~!!!";
		emotion e_omg,1;
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "(Oh,my..)";
		next;
		mes "[Event]";
		mes "It's ok, Tinybee. I'm not lonely at all.";
		mes "I have Ms.Bathory and Ms.Orclady with me.";
		mes "Hahahaha~~~";
		mes "";
		next;
		mes "-He laughed talking to his right hand.-";
		mes "";
		//Emotion "Event#event" ET_KIK
		emotion e_kis;
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Mas sent me here.";
		mes "You know about Enjoy's plan, right?";
		mes "...Are you listening?";
		next;
		mes "[Event]";
		mes "...Did you hear?? Tinybee?";
		mes "The day has come!!";
		mes "Hahaha~~~~.";
		next;
		mes "[Event]";
		mes "Wait for me miss Kafra~~~";
		mes "Don't be so lonely~.";
		mes "I'll make your christmas unforgettably fantastic.";
		mes "Let's go Tinybee.";
		mes "";
		next;
		mes "-He kept talking to his right hand-";
		mes "-and packed his stuff and bowed to Kafra.-";
		mes "";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Finally!!! Done telling everyone!!";
		mes "Now I should get my ^0000FFBranch of Dead Tree^000000s packed up";
		mes "and go punish singles!!!";
		mes "Hahahaha..";
		christ_solo05 = 5;
		close;
	}
	else if (christ_solo05 > 4) {
		mes "[Event]";
		mes "Wait for me miss Kafra~~~";
		mes "Don't be so lonely~.";
		mes "I'll make your christmas unforgettably fantastic.";
		mes "Let's go Tinybee.";
		next;
		mes "-He  talked to his right hand-";
		mes "-and packed his stuff and bowed to Kafra.-";
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Finally!!! Done telling everyone!!";
		mes "Now I should get my things packed up";
		mes "and go punish singles!!!";
		mes "Hahahaha..";
		close;
	}
	else {
		mes "[Event]";
		mes "........................";
		next;
		mes "[Event]";
		mes "...I love you too~!!!";
		emotion e_omg,1;
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "(Oh.my~)";
		next;
		mes "[Event]";
		mes "It's ok Tinybee.I'm not lonely at all.";
		mes "I have Ms.Bathory and Ms.Orclady with me.";
		mes "Hahahaha~~~";
		mes "";
		next;
		mes "-He laughed talking to his right hand.-";
		mes "";
		emotion e_kis;
		close;
	}
}

//== Oholy (Event 3) =======================================
prontera,156,242,0	script	Oholy#pron::OholyDup	1_F_PRIEST,{
	if (!christ_carol05) {
		mes "[Oholy]";
		mes "Joy to the world!";
		mes "The Lord has come.";
		specialeffect EF_GLORIA;
		next;
		if (Sex == SEX_MALE) {
			mes "[Oholy]";
			mes "Merry Christmas!";
			mes "Dear brother, what comes in";
			mes "your mind when you think of Christmas?";
			next;
		}
		else {
			mes "[Oholy]";
			mes "Merry Christmas!";
			mes "Dear sister, what comes in";
			mes "your mind when you think of Christmas?";
			next;
		}
		switch(select("Santa Claus", "Christmas Gifts", "Christmas Carols", "Santa Hat", "I don't like couples")) {
		case 1:
			mes "[Oholy]";
			mes "Santa Claus!";
			mes "You still have childish";
			mes "innocence, kid!!!";
			mes "Hohoho.";
			next;
			mes "[Oholy]";
			mes "There is a rumor that Santa Claus";
			mes "in the town where Christmas ";
			mes "never ends. This is just";
			mes "between you and me, okay?";
			next;
			mes "[Oholy]";
			mes "The latest headline by Oholy";
			mes "Isn't it amazing?";
			emotion e_heh;
			close;
		case 2:
			mes "[Oholy]";
			mes "Gifts! That's nice!";
			mes "How exciting it is!!!";
			mes "You wake up and find";
			mes "christmas gifts next to your pillow!";
			next;
			mes "[Oholy]";
			mes "Have you heard that";
			mes "bad santa who makes a suprise";
			mes "attack in every christmas, has";
			mes "taken Santa Claus's gifts to";
			mes "good kids!";
			next;
			mes "[Oholy]";
			mes "So, Santa Claus in Christmas";
			mes "town has offered a reward for";
			mes "capturing phony Santa, Antonio.";
			next;
			mes "[Oholy]";
			mes "The latest headline by Oholy";
			mes "Isn't it amazing?";
			emotion e_heh;
			close;
		case 3:
			mes "[Oholy]";
			mes "That's right!";
			mes "Carol is the essential for";
			mes "Christmas! When I was";
			mes "young, my mind used to be";
			mes "fluttered by carols during";
			mes "Christmas.";
			next;
			mes "[Oholy]";
			mes "But, in these days, not many";
			mes "people sing Christmas carols";
			mes "so it is hard to feel that";
			mes "Christmas is coming closer";
			mes " ";
			next;
			mes "[Oholy]";
			mes "Therefore, I decided to wish";
			mes "a merry christmas to everyone";
			mes "by singing Christmas carols and";
			mes "giving gifts to kids from door";
			mes "to door, but, unfortunately,";
			mes "wicked devil has torn off my carol music book!!!";
			next;
			mes "[Oholy]";
			mes "I have many houses to visit.";
			mes "I feel so sad for disappointed";
			mes "kids who didn't hear the carols.";
			next;
			select("...can I help you?");
			mes "[Oholy]";
			mes "Good gracious! Are you for real?";
			mes "Oh? Shee... Can you hear it?";
			mes "Every kids appreciate your kindness.";
			emotion e_heh;
			mes "Don't be afraid. I will not";
			mes "ask you to make a new christmas carol.";
			next;
			mes "[Oholy]";
			mes "If you have a will,";
			mes "we got no time to waste.";
			mes "Let's move on to give hope to kids!";
			next;
			mes "[Oholy]";
			mes "Well, please bring me back";
			mes "Christmas carol music book, "+ strcharinfo(PC_NAME) +".";
			mes "That little devil will be still";
			mes "in the town because it only happened a few minutes ago.";
			next;
			mes "[Oholy]";
			mes "Please be careful because";
			mes "you are dealing with devil.";
			mes "Well then, hope you a good luck!!!";
			mes " ";
			emotion e_no1;
			christ_carol05 = 1;
			close;
		case 4:
			mes "[Oholy]";
			mes "A Santa Hat!!";
			mes "Did you know that the real";
			mes "Santa Hat is totally different";
			mes "from the one that monsters";
			mes "are wearing?! I heard a rumor";
			mes "that an anonymous designer";
			mes "in Lutie, made all of those santa hats.";
			next;
			mes "[Oholy]";
			mes "Also, there is another rumor";
			mes "about phony Santa, Antonio.";
			mes "He has been chased by many ";
			mes "adventurers but never been";
			mes "caught because of his Santa Costume.";
			next;
			mes "[Oholy]";
			mes "Maybe his hat and clothes have";
			mes "special functions within...";
			mes "Maybe that anonymous designer";
			mes "still lives in Lutie. Why don't";
			mes "you go visit him and ask to";
			mes "make you a new Santa Hat?";
			next;
			mes "[Oholy]";
			mes "The latest headline by Oholy";
			mes "Isn't it amazing?";
			emotion e_heh;
			close;
		case 5:
			mes "[Oholy]";
			mes "Oh, dear. I was thinking of";
			mes "the sa.m..e... Oops, ho..hoho.";
			mes "Oh well, it's not only me. Many";
			mes "people think of the same in this Christmas.";
			next;
			mes "[Oholy]";
			mes "I heard a strange rumor that";
			mes "those people are plotting";
			mes "something in this Christmas.";
			mes "...hope it goes well(*murmur*)";
			next;
			mes "[Oholy]";
			mes "The latest headline by Oholy";
			mes "Isn't it amazing?";
			emotion e_heh;
			close;
		}
	}
	else if (christ_carol05 == 1) {
		mes "[Oholy]";
		mes "He should not be able to escape";
		mes "from the town. Please find the";
		mes "devil and bring me back my";
		mes "Christmas Carol Music Book.";
		mes "Punish the wicked devil who is ruining Christmas!!!";
		close;
	}
	else if (christ_carol05 == 2) {
		if (!checkweight(Knife,1)) {
			mes "^3355FFWait a second!";
			mes "Right now, you're carrying";
			mes "too many things with you.";
			mes "Please come back after";
			mes "using the Kafra Service";
			mes "to store some of your items.^000000";
			close;
		}
		if (MaxWeight - Weight < 2000) {
			mes "^3355FFWait a second!";
			mes "Right now, you're carrying";
			mes "too many things with you.";
			mes "Please come back after";
			mes "using the Kafra Service";
			mes "to store some of your items.^000000";
			close;
		}
		if (countitem(Worn_Out_Page) > 0) {
			mes "[Oholy]";
			mes "Oh, my gracious! ";
			mes "You have brought me the book!";
			mes "Didn't the devil trouble you?";
			mes "I'm glad you have return safely.";
			next;
			mes "[Oholy]";
			mes "In return, I'm going to sing";
			mes "a carol from the music book.";
			next;
			mes "[Oholy]";
			mes "Hum! Huum!!";
			mes "~Sleep well, little children,~";
			mes "~wherever you are;~";
			mes "~Tomorrow is Christmas~";
			mes "~beneath every star.~";
			specialeffect EF_GLORIA;
			next;
			mes "-Your mind is overwhelmed by her singing-";
			mes "-You started humming then,-";
			mes "-began to sing the next phase-";
			next;
			mes "["+ strcharinfo(PC_NAME) +"]";
			mes "~Soon the snowflackes will fall~";
			mes "~and tomorrow you'll see~";
			mes "~Every wish, one and all,~";
			mes "~waiting under the tree.~";
			specialeffect(EF_GLORIA, AREA, playerattached());
			next;
			mes "[Oholy]";
			mes "Oh, my. You have a wonderful";
			mes "voice!! Alright!!!";
			mes "I was going to give these";
			mes "to kids, but, since you found";
			mes "my music book and sang a carol to me!";
			next;
			mes "-She brought a big sack-";
			mes "-and opened it in front of you-";
			next;
			mes "[Oholy]";
			mes "OK! Don't look inside.";
			mes "Just put your hands";
			mes "grab what you want.";
			next;
			switch(rand(1,15)) {
			case 1:
				mes "[Oholy]";
				mes "A Cookie Bag!";
				mes "I wrapped those indivisually.";
				mes "There are many sweets in them.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Cookie_Bag,7;
				close;
			case 2:
				mes "[Oholy]";
				mes "Candies!";
				mes "These were made by";
				mes "Chief noun.";
				mes "Very sweet and delicious.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Candy,20;
				close;
			case 3:
				mes "[Oholy]";
				mes "Candy Canes!";
				mes "These were made by";
				mes "Chief noun.";
				mes "Very sweet and delicious.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Candy_Striper,15;
				close;
			case 4:
				mes "[Oholy]";
				mes "A Piece Of Cake!";
				mes "These were baked by";
				mes "Chief Acolyte.";
				mes "Very soft and delicious.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Piece_Of_Cake,5;//Piece_of_Cake
				close;
			case 5:
				mes "[Oholy]";
				mes "Cookies!";
				mes "These were baked by";
				mes "Chief Acolyte.";
				mes "Very crispy and delicious.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Well_Baked_Cookie,10;//Well_baked_Cookie
				close;
			case 6:
				mes "[Oholy]";
				mes "A Spore Doll!";
				mes "It's made elaborately by";
				mes "Bishop, Tomas.";
				mes "Very cute.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Spore_Doll,1;
				close;
			case 7:
				mes "[Oholy]";
				mes "A Baphomet Doll!";
				mes "..........?!..........";
				mes "How did it get in here..?!";
				mes "Oops, oh well.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Baphomet_Doll,1;
				close;
			case 8:
				mes "[Oholy]";
				mes "A Osiris Doll!";
				mes "..........?!..........";
				mes "How did it get in here..?!";
				mes "Oops, oh well.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Osiris_Doll,1;
				close;
			case 9:
				mes "[Oholy]";
				mes "A Rocker Doll!";
				mes "This was donated by";
				mes "a knight, Lighten.";
				mes "Very kind of him.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Grasshopper_Doll,1;
				close;

			case 10:
				mes "[Oholy]";
				mes "A Yoyo Doll!";
				mes "This was donated by";
				mes "an assassin, Marzia.";
				mes "Very kind of him.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Monkey_Doll,1;
				close;
			case 11:
				mes "[Oholy]";
				mes "A Racoon Doll!";
				mes "This was donated by";
				mes "a hunter, Raiden Kurs.";
				mes "Very kind of him.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Raccoondog_Doll,1;
				close;
			case 12:
				mes "[Oholy]";
				mes "A Black Cat Doll!";
				mes "Sister Magareta found the item";
				mes "from the monster, Loli Ruri.";
				mes "Very kind of her.";
				mes "Hope she is doing okay.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Black_Kitty_Doll,1;
				close;
			case 13:
				mes "[Oholy]";
				mes "A Hung Doll!";
				mes "I made this doll.";
				mes "Isn't it adorable?!";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Hanging_Doll,1;
				close;
			case 14:
				mes "[Oholy]";
				mes "A Munak Doll!";
				mes "That is from some country";
				mes "across the ocean.";
				mes "An artisan made this doll";
				mes "with his passion.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Munak_Doll,1;
				close;
			case 15:
				mes "[Oholy]";
				mes "A Santa Hat!";
				mes "This is only produced";
				mes "during Christmas season.";
				mes "It is not a common hat.";
				mes "Merry Christmas!";
				emotion e_heh;
				delitem Worn_Out_Page,1;
				christ_carol05 = 3;
				getitem Santas_Hat,1;
				close;
			}
		}
		else {
			mes "[Oholy]";
			mes "Welcome back!! You look good.";
			mes "2 arms and 2 legs, you look great.";
			mes "But, where is my music book?!";
			close;
		}
	}
	else {
		mes "[Oholy]";
		mes "Thank you very much.";
		mes "People and even Devils are";
		mes "all excited on Christmas day,";
		mes "so nobody knows what would";
		mes "happen. Will you help me";
		mes "then, won't you? Please~";
		next;
		mes "[Oholy]";
		mes "Let's think about the neighbors";
		mes "and do a good deed during Christmas!";
		christ_carol05 = 0;
		close;
	}
}

//== Deviruchi functions ===================================
//= Arguments:
//= - 0: Originating NPC (disable)
//= - 1: Next NPC to be enabled
//= - 2: Map name of originating NPC
//= - 3: Coordinate X to be teleported to
//= - 4: Coordinate Y to be teleported to
function	script	F_carol_devi	{
	if (christ_carol05 == 1) {
		mes "[Deviruchi]";
		mes "Heyhey, human!!";
		mes "Don't ya wanna sell your";
		mes "soul and be bound in a beneficial contract with me?";
		emotion e_kis;
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Hey, you! Deviruchi!!!";
		mes "What a brat!!! Gotcha!";
		next;
		mes "-You quickly snatched-";
		mes "-the nape of Deviruchi's neck-";
		next;
		switch(rand(1,4)) {
		case 1:
			mes "[Deviruchi]";
			mes "What are you doing!?";
			mes "Human?";
			mes "Let go of me...right now!";
			emotion e_omg;
			emotion e_omg,1;
			next;
			mes "-Deviruchi quickly ran away-";
			mes "-^4d4dffWhere Deviruchi is gone,-";
			mes "-there is a worn out paper.^000000-";
			mes "-Let's read the paper.-";
			enablenpc getarg(1);
			disablenpc getarg(0);
			next;
			mes "["+ strcharinfo(PC_NAME) +"]";
			mes "Rudolph... If... Foggy...";
			mes "Sledge... Reindeer...";
			mes "Hmm, I think I got what I need.";
			mes "Let's go back to Ms.Oholy.";
			christ_carol05 = 2;
			getitem Worn_Out_Page,1;
			close;
		case 2:
			mes "[Deviruchi]";
			mes "What are you doing!?";
			mes "Human?";
			mes "Let go of me...right now!";
			emotion e_omg;
			emotion e_omg,1;
			next;
			mes "-Deviruchi ran away quickly-";
			mes "-and mumbled something.-";
			enablenpc getarg(1);
			disablenpc getarg(0);
			next;
			mes "-You are now cursed!!!-";
			sc_start SC_CURSE,5000,0;
			emotion e_omg,1;
			close;
		case 3:
			mes "[Deviruchi]";
			mes "What are you doing!?";
			mes "Human?";
			mes "Let go of me...right now!";
			emotion e_omg;
			emotion e_omg,1;
			next;
			mes "-Deviruchi ran away quickly-";
			mes "-and mumbled something.-";
			enablenpc getarg(1);
			disablenpc getarg(0);
			next;
			mes "-You are blinded!!!-";
			sc_start SC_BLIND,5000,0;
			emotion e_omg,1;
			close;
		case 4:
			mes "[Deviruchi]";
			mes "What are you doing!?";
			mes "Human?";
			mes "Let go of me...right now!";
			emotion e_omg;
			emotion e_omg,1;
			next;
			mes "-Deviruchi ran away quickly-";
			mes "-and mumbled something.-";
			enablenpc getarg(1);
			disablenpc getarg(0);
			next;
			mes "-You are poisoned!!!-";
			sc_start SC_POISON,5000,0;
			emotion e_omg,1;
			close;
		}
	}
	else {
		mes "[Deviruchi]";
		mes "Heyhey, human!!";
		mes "Don't ya wanna sell your";
		mes "soul and be bound in a beneficial contract with me?";
		emotion e_omg;
		next;
		mes "["+ strcharinfo(PC_NAME) +"]";
		mes "Hey, you! Deviruchi!!!";
		mes "What a brat!!! Gotcha!";
		next;
		mes "-You quickly snatched-";
		mes "-the nape of Deviruchi's neck-";
		next;
		mes "[Deviruchi]";
		mes "What are you doing!?";
		mes "Human?";
		mes "Let go of me...right now!";
		emotion e_omg;
		emotion e_omg,1;
		next;
		mes "-Deviruchi ran away quickly-";
		mes "-and mumbled something.-";
		mes "-Your body is suddenly floating.-";
		close2;
		warp getarg(2),getarg(3),getarg(4);
		end;
	}
}

function	script	F_carol_devi2	{
	mes "[Deviruchi]";
	mes "Heyhey, human!!";
	mes "Don't ya wanna sell your";
	mes "soul and be bound in a beneficial contract with me?";
	emotion e_omg;
	next;
	mes "["+ strcharinfo(PC_NAME) +"]";
	mes "Hey, you! Deviruchi!!!";
	mes "What a brat!!! Gotcha!";
	next;
	mes "-You quickly snatched-";
	mes "-the nape of Deviruchi's neck-";
	next;
	mes "[Deviruchi]";
	mes "What are you doing!?";
	mes "Human?";
	mes "Let go of me...right now!";
	emotion e_omg;
	emotion e_omg,1;
	next;
	mes "-Deviruchi ran away quickly-";
	mes "-and mumbled something.-";
	mes "-Your body is suddenly floating.-";
	close2;
	warp getarg(0),getarg(1),getarg(2);
	end;
}

prontera,94,297,3	script	Deviruchi#pron_01	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","prontera",155,230);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#pron_01","Deviruchi#pron_02","prontera",155,230);
	end;
}

prontera,205,242,3	script	Deviruchi#pron_02	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","prontera",155,230);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#pron_02","Deviruchi#pron_03","prontera",155,230);
	end;
}

prontera,126,118,3	script	Deviruchi#pron_03	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","prontera",155,230);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#pron_03","Deviruchi#pron_01","prontera",155,230);
	end;
}

//- Payon -
payon,165,153,3	duplicate(OholyDup)	Oholy#payon	1_F_PRIEST
payon,142,203,3	script	Deviruchi#payon_01	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","payon",166,60);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#payon_01","Deviruchi#payon_02","payon",166,60);
	end;
}

payon,248,239,3	script	Deviruchi#payon_02	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","payon",166,60);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#payon_02","Deviruchi#payon_03","payon",166,60);
	end;
}

payon,140,56,3	script	Deviruchi#payon_03	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","payon",166,60);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#payon_03","Deviruchi#payon_01","payon",166,60);
	end;
}

morocc,161,85,0	duplicate(OholyDup)	Oholy#morocc	1_F_PRIEST
morocc,52,134,3	script	Deviruchi#morocc_01	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","morocc",160,51);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#morocc_01","Deviruchi#morocc_02","morocc",160,51);
	end;
}

morocc,210,264,3	script	Deviruchi#morocc_02	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","morocc",160,51);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#morocc_02","Deviruchi#morocc_03","morocc",160,51);
	end;
}

morocc,223,74,3	script	Deviruchi#morocc_03	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","morocc",160,51);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#morocc_03","Deviruchi#morocc_01","morocc",160,51);
	end;
}

//- Geffen -
geffen,120,188,0	duplicate(OholyDup)	Oholy#geffen	1_F_PRIEST
geffen,173,163,3	script	Deviruchi#geffen_01	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","geffen",120,34);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#geffen_01","Deviruchi#geffen_02","geffen",120,34);
	end;
}

geffen,49,95,3	script	Deviruchi#geffen_02	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","geffen",120,34);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#geffen_02","Deviruchi#geffen_03","geffen",120,34);
	end;
}

geffen,111,101,3	script	Deviruchi#geffen_03	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","geffen",120,34);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#geffen_03","Deviruchi#geffen_01","geffen",120,34);
	end;
}

//- Alberta -
alberta,54,237,0	duplicate(OholyDup)	Oholy#alberta	1_F_PRIEST
alberta,97,86,3	script	Deviruchi#alberta_01	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","alberta",28,235);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#alberta_01","Deviruchi#alberta_02","alberta",28,235);
	end;
}

alberta,180,48,3	script	Deviruchi#alberta_02	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","alberta",28,235);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#alberta_02","Deviruchi#alberta_03","alberta",28,235);
	end;
}

alberta,54,132,3	script	Deviruchi#alberta_03	4_DEVIRUCHI,3,3,{
	callfunc("F_carol_devi2","alberta",28,235);
	end;

OnTouch:
	callfunc("F_carol_devi","Deviruchi#alberta_03","Deviruchi#alberta_01","alberta",28,235);
	end;
}