summaryrefslogtreecommitdiff
path: root/npc/quests/eden/26-40.txt
blob: d082083e3dd4f96c50a34f2175e247897337a123 (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
//===== eAthena Script ======================================= 
// Eden Group Quests - Quests per Leviling NPCs
//===== By: ================================================== 
//= Protimus
//===== Current Version: ===================================== 
//= 1.0
//===== Compatible With: ===================================== 
//= eAthena 1.0
//===== Description: ========================================= 
//= [AEGIS Conversion]
//===== Additional Comments: ================================= 
//= 1.0 First Version.
//============================================================

moc_para01,38,38,3	script	Mission [26 - 40]#p	857,{
	if (countitem(6219) > 0) {
		mes "[26 ~ 40 Lv. Mission Board]";
		mes "- Many missions are -";
		mes "- on the bulletin board. -";
		next;
		if ((BaseLevel > 25) && (BaseLevel < 41)) {
			switch(select("Hunting Mission:Delivery Mission:Gathering Mission:Escort Mission")) {
			case 1:
				mes "[26 ~ 40 Lv. Hunting Mission Board]";
				mes "- Hunting Mission details -";
				mes "- are on the board. -";
				next;
				switch(select("Hunting Poison Spore:Hunting Smokie:Hunting Elder Willow(Above Lv.30):Hunting Coco(Above Lv.35):Hunting Thara Frog(Above Lv.38)")) {
				case 1:
					mes "[Hunting Poison Spore]";
					mes "Client : Sponiac";
					mes "Client Location : Geffen";
					mes "Requested Mission : Hunt 10 Poison Spores";
					mes " ";
					mes " ";
					mes "Will you accept this mission?";
					next;
					switch(select("No, I won't accept it.:Yes, I will accept it.")) {
					case 1:
						mes "You have declined the Hunting Poison Spore mission.";
						close;
					case 2:
						set .@check_tuto00,checkquest(8266);
						if (.@check_tuto00 == -1) {
							setquest 8266;
							mes "You have accepted the Hunting Poison Spore mission.";
							mes "You can get a reward from the client after you finish the mission.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
						else {
							mes "You are already doing this mission.";
							mes "You can get a reward from the client after you finish the mission.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
					}
				case 2:
					mes "[Hunting Smokie]";
					mes "Client : Sponiac";
					mes "Client Location : Geffen";
					mes "Requested Mission : Hunt 10 Smokies";
					mes " ";
					mes "Will you accept this mission?";
					next;
					switch(select("No, I won't accept it.:Yes, I will accept it.")) {
					case 1:
						mes "You have declined the Hunting Smokie mission.";
						close;
					case 2:
						set .@check_tuto01,checkquest(8267);
						if (.@check_tuto01 == -1) {
							setquest 8267;
							mes "You have accepted the Hunting Smokie mission.";
							mes "You can get a reward from the client after you finish the mission.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
						else {
							mes "You are already doing this mission.";
							mes "You can get a reward from the client after you finish the mission.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
					}
				case 3:
					if (BaseLevel < 30) {
						mes "Your level doesn't meet the requirements. You can't take the 'Hunting Elder Willow' mission.";
						close;
					}
					else {
						mes "[Hunting Elder Willow !!]";
						mes "Client : Sponiac";
						mes "Client Location : Geffen";
						mes "Requested Mission : Hunt 10 Elder Willows";
						mes " ";
						mes "Will you accept this mission?";
						next;
						switch(select("No, I won't accept it.:Yes, I will accept it.")) {
						case 1:
							mes "You have declined the Hunting Elder Willow mission.";
							close;
						case 2:
							set .@check_tuto02,checkquest(8268);
							if (.@check_tuto02 == -1) {
								setquest 8268;
								mes "You have accepted the Hunting Elder Willow mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
							else {
								mes "You are already doing this mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
						}
					}
				case 4:
					if (BaseLevel < 35) {
						mes "Your level doesn't meet the requirements. You can't take the 'Hunting Coco' mission.";
						close;
					}
					else {
						mes "[Hunting Coco !!]";
						mes "Client : Sponiac";
						mes "Client Location : Geffen";
						mes "Requested Mission : Hunt 10 Coco's.";
						mes " ";
						mes "Will you accept this mission?";
						next;
						switch(select("No, I won't accept it.:Yes, I will accept it.")) {
						case 1:
							mes "You have declined the Hunting Coco mission.";
							close;
						case 2:
							set .@check_tuto03,checkquest(8269);
							if (.@check_tuto03 == -1) {
								setquest 8269;
								mes "You have accepted the Hunting Coco mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
							else {
								mes "You are already doing this mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
						}
					}
				case 5:
					if (BaseLevel < 38) {
						mes "Your level doesn't meet the requirements. You can't take the 'Hunting Thara Frog' mission.";
						close;
					}
					else {
						mes "[Hunting Thara Frog !!]";
						mes "Client : Sponiac";
						mes "Client Location : Geffen";
						mes "Requested Mission : Hunt 10 Thara Frogs.";
						mes " ";
						mes "Will you accept this mission?";
						next;
						switch(select("No, I won't accept it.:Yes, I will accept it.")) {
						case 1:
							mes "You have declined the Hunting Thara Frog mission.";
							close;
						case 2:
							set .@check_tuto04,checkquest(8270);
							if (.@check_tuto04 == -1) {
								setquest 8270;
								mes "You have accepted the Hunting Thara Frog mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
							else {
								mes "You are already doing this mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
						}
					}
				}
			case 2:
				mes "[26 ~ 40 Lv. Delivery Mission Board]";
				mes "- Delivery Mission details -";
				mes "- are on the board. -";
				next;
				switch(select("Deliver an Insecticide:Deliver Honey:Deliver Blanket(Above Lv.35)")) {
				case 1:
					mes "[Deliver an Insecticide !!]";
					mes "Client : Dieshin Man";
					mes "Client Location : Morroc Ruins";
					mes "Requested Mission : Get an 'Insecticide' from Dieshin Man and deliver it south east of Payon";
					mes " ";
					mes "Will you accept this mission?";
					next;
					switch(select("No, I won't accept it.:Yes, I will accept it.")) {
					case 1:
						mes "You have declined the Deliver an Insecticide mission.";
						close;
					case 2:
						set .@check_tuto05,checkquest(8271);
						if (.@check_tuto05 == -1) {
							setquest 8271;
							mes "You have accepted the Deliver an Insecticide mission.";
							mes "Please obtain the delivery box from the client first.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
						else {
							mes "You are already doing this mission.";
							mes "Please obtain the delivery box from the client first.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
					}
				case 2:
					mes "[Deliver Honey !!]";
					mes "Client : Dieshin Man";
					mes "Client Location : Morroc Ruins";
					mes "Requested Mission : Get 'Honey' from Dieshin Man and deliver it west of St. Capitolina Abbey";
					mes " ";
					mes "Will you accept this mission?";
					next;
					switch(select("No, I won't accept it.:Yes, I will accept it.")) {
					case 1:
						mes "You have declined the Deliver Honey mission.";
						close;
					case 2:
						set .@check_tuto06,checkquest(8272);
						if (.@check_tuto06 == -1) {
							setquest 8272;
							mes "You have accepted the Deliver Honey mission.";
							mes "Please obtain the delivery box from the client first.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
						else {
							mes "You are already doing this mission.";
							mes "Please obtain the delivery box from the client first.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
					}
				case 3:
					if (BaseLevel < 35) {
						mes "Your level doesn't meet the requirements. You can't take the 'Deliver Blanket' mission.";
						close;
					}
					else {
						mes "[Deliver Blanket !!]";
						mes "Client : Dieshin Man";
						mes "Client Location : Morroc Ruins";
						mes "Requested Mission : Get Blankets from Dieshin Man and deliver to the field south of Lutie";
						mes " ";
						mes "Will you accept this mission?";
						next;
						switch(select("No, I won't accept it.:Yes, I will accept it.")) {
						case 1:
							mes "You have declined the Deliver Blanket mission.";
							close;
						case 2:
							set .@check_tuto07,checkquest(8273);
							if (.@check_tuto07 == -1) {
								setquest 8273;
								mes "You have accepted the Deliver Blanket mission.";
								mes "Please obtain the delivery box from the client first.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
							else {
								mes "You are already doing this mission.";
								mes "Please obtain the delivery box from the client first.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
						}
					}
				}
			case 3:
				mes "[26 ~ 40 Lv. Gathering Mission Board]";
				mes "- Gathering Mission details -";
				mes "- are on the board. -";
				next;
				switch(select("Gather Bones:Gather Animal Skins:Gather Peelings(Above Lv.30):Gather Tails(Above Lv.32):Gather Cookies(Above Lv.35):Gather Mustaches(Above Lv.35)")) {
				case 1:
					mes "[Gather Bones !!]";
					mes "Client : Dashia";
					mes "Client Location : Payon";
					mes "Requested Mission : Gather '10 Skel-Bones' and give them to Dashia";
					mes " ";
					mes "Will you accept this mission?";
					next;
					switch(select("No, I won't accept it.:Yes, I will accept it.")) {
					case 1:
						mes "You have declined the Gather Bones mission.";
						close;
					case 2:
						set .@check_tuto08,checkquest(8274);
						if (.@check_tuto08 == -1) {
							setquest 8274;
							mes "You have accepted the Gather Bones mission.";
							mes "You can get a reward from the client after you finish the mission.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
						else {
							mes "You are already doing this mission.";
							mes "You can get a reward from the client after you finish the mission.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
					}
				case 2:
					mes "[Gather Animal Skins !!]";
					mes "Client : Dashia";
					mes "Client Location : Payon";
					mes "Requested Mission : Gather '10 Bear's Footskins' and '5 Animal Skins' and give them to Dashia";
					mes " ";
					mes "Will you accept this mission?";
					next;
					switch(select("No, I won't accept it.:Yes, I will accept it.")) {
					case 1:
						mes "You have declined the Gather Animal Skins mission.";
						close;
					case 2:
						set .@check_tuto09,checkquest(8275);
						if (.@check_tuto09 == -1) {
							setquest 8275;
							mes "You have accepted the Gather Animal Skins mission.";
							mes "You can get a reward from the client after you finish the mission.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
						else {
							mes "You are already doing this mission.";
							mes "You can get a reward from the client after you finish the mission.";
							next;
							mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
							close;
						}
					}
				case 3:
					if (BaseLevel < 30) {
						mes "Your level doesn't meet the requirements. You can't take the 'Gather Peelings' mission.";
						close;
					}
					else {
						mes "[Gather Peelings !!]";
						mes "Client : Dashia";
						mes "Client Location : Payon";
						mes "Requested Mission : Gather '20 Worm Peelings' and '20 Garlets' and give them to Dashia";
						mes " ";
						mes "Will you accept this mission?";
						next;
						switch(select("No, I won't accept it.:Yes, I will accept it.")) {
						case 1:
							mes "You have declined the Gather Peelings mission.";
							close;
						case 2:
							set .@check_tuto10,checkquest(8276);
							if (.@check_tuto10 == -1) {
								setquest 8276;
								mes "You have accepted the Gather Peelings mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
							else {
								mes "You are already doing this mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
						}
					}
				case 4:
					if (BaseLevel < 32) {
						mes "Your level doesn't meet the requirements. You can't take the 'Gather Tails' mission.";
						close;
					}
					else {
						mes "[Gather Tails !!]";
						mes "Client : Dashia";
						mes "Client Location : Payon";
						mes "Requested Mission : Gather '10 Yoyo Tails', '10 Acorns' and '10 Raccon Leafs' and give them to Dashia";
						mes " ";
						mes "Will you accept this mission?";
						next;
						switch(select("No, I won't accept it.:Yes, I will accept it.")) {
						case 1:
							mes "You have declined the Gather Tails mission.";
							close;
						case 2:
							set .@check_tuto11,checkquest(8277);
							if (.@check_tuto11 == -1) {
								setquest 8277;
								mes "You have accepted the Gather Tails mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
							else {
								mes "You are already doing this mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
						}
					}
				case 5:
					if (BaseLevel < 35) {
						mes "Your level doesn't meet the requirements. You can't take the 'Gather Cookies' mission.";
						close;
					}
					else {
						mes "[Gather Cookies !!]";
						mes "Client : Dashia";
						mes "Client Location : Payon";
						mes "Requested Mission : Gather '5 Well-baked Cookies' and '1 Piece of Cake' and give them to Dashia";
						mes " ";
						mes "Will you accept this mission?";
						next;
						switch(select("No, I won't accept it.:Yes, I will accept it.")) {
						case 1:
							mes "You have declined the Gather Cookies mission.";
							close;
						case 2:
							set .@check_tuto12,checkquest(8278);
							if (.@check_tuto12 == -1) {
								setquest 8278;
								mes "You have accepted the Gather Cookies mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
							else {
								mes "You are already doing this mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
						}
					}
				case 6:
					if (BaseLevel < 35) {
						mes "Your level doesn't meet the requirements. You can't take the 'Gather Mustaches' mission.";
						close;
					}
					else {
						mes "[Gather Mustaches !!]";
						mes "Client : Dashia";
						mes "Client Location : Payon";
						mes "Requested Mission : Gather '5 Mole Whiskers' and '3 Mole Claws' and give them to Dashia";
						mes " ";
						mes "Will you accept this mission?";
						next;
						switch(select("No, I won't accept it.:Yes, I will accept it.")) {
						case 1:
							mes "You have declined the Gather Mustaches mission.";
							close;
						case 2:
							set .@check_tuto13,checkquest(8279);
							if (.@check_tuto13 == -1) {
								setquest 8279;
								mes "You have accepted the Gather Mustaches mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
							else {
								mes "You are already doing this mission.";
								mes "You can get a reward from the client after you finish the mission.";
								next;
								mes "For more details, please press 'Alt + U', to get more information from the Quest Window.";
								close;
							}
						}
					}
				}
			case 4:
				mes "[26 ~ 40 Lv. Escort Mission Board]";
				mes "There are currently no Escort Missions registered on the board.";
				close;
			}
		}
		else {
			mes "Your level is not qualified. You can not use the bulletin board.";
			close;
		}
	}
	else {
		mes "You are not a qualified member. You can not use the bulletin board.";
		close;
	}
}

geffen,103,42,5	script	Sponiac#09tuto	99,{
	if (checkweight(1201,1) == 0) {
		mes "[Sponiac]";
		mes "Why are you carrying too many items?";
		mes "Are you in a training course or something?";
		close;
	}
	mes "[Sponiac]";
	mes "Lu~lu~lu~lu~";
	mes "Lu~ Huh?";
	next;
	mes "[Sponiac]";
	mes "Wow, you must be a beginner, right?";
	mes "What an innocent face! Ha~ hahaha.";
	emotion e_gg,"Sponiac#09tuto";
	next;
	mes "[Sponiac]";
	mes "Why don't you do some hunting outside instead of walking around and wasting your time?";
	next;
	switch(select("I am about to leave now.:I've got a Hunting Mission.")) {
	case 1:
		mes "[Sponiac]";
		mes "Oh, well. Then, go figure.";
		mes "Bye~ bye.";
		close;
	case 2:
		break;
	}
	mes "[Sponiac]";
	mes "Oh, you are from the Eden Group?";
	mes "What mission do you have?";
	next;
	switch(select("Hunting Poison Spore:Hunting Smokie:Hunting Elder Willow:Hunting Coco:Hunting Thara Frog")) {
	case 1:
		set .@check_tuto00,checkquest(8266);
		if (.@check_tuto00 == -1) {
			mes "[Sponiac]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Sponiac]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else if ((.@check_tuto00 == 0) || (.@check_tuto00 == 1)) {
			set .@check_spore01,checkquest(8266,HUNTING);
			if (.@check_spore01 == 2) {
				mes "[Sponiac]";
				mes "Hunting Poison Spore!";
				mes "Wow, I didn't expect you would do that mission. I was just about to give up. But you did good job. I appreciate it!";
				next;
				mes "[Sponiac]";
				mes "Well, I requested the mission and you did an excellent job.";
				mes "I will give you a reward as I promised.";
				next;
				mes "[Sponiac]";
				mes "Here it is. Thank you very much. God bless you!";
				getitem 569,100; //Novice_Potion
				getexp 1000,0;
				erasequest 8266;
				close;
			}
			else {
				mes "[Sponiac]";
				mes "Oh, you are right.";
				next;
				mes "[Sponiac]";
				mes "But, you haven't done the mission yet. Why did you come to me now? You haven't completed the mission!";
				mes "I will give you a reward if you complete the mission. Ok? Are we good?";
				next;
				mes "[Sponiac]";
				mes "You can find Poison Spores on the Geffen Dungeon 1F or northeast of Prontera. There are other spots but I'll leave it up to you to find out.";
				mes "You can check the world map by pressing 'ctrl + ~' key.";
				next;
				mes "[Sponiac]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
		else {
			mes "[Sponiac]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Sponiac]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		break;
	case 2:
		set .@check_tuto01,checkquest(8267);
		if (.@check_tuto01 == -1) {
			mes "[Sponiac]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Sponiac]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else if ((.@check_tuto01 == 0) || (.@check_tuto01 == 1)) {
			set .@check_smokie01,checkquest(8267,HUNTING);
			if (.@check_smokie01 == 2) {
				mes "[Sponiac]";
				mes "Hunting Smokie!";
				mes "Wow, I didn't expect you would do that mission. I was just about to give up. But you did good job. I appreciate it!";
				next;
				mes "[Sponiac]";
				mes "Well, I requested the mission and you did an excellent job.";
				mes "I will give you a reward as I promised.";
				next;
				mes "[Sponiac]";
				mes "Here it is. Thank you very much. God bless you!";
				getitem 569,100; //Novice_Potion
				getexp 1000,0;
				erasequest 8267;
				close;
			}
			else {
				mes "[Sponiac]";
				mes "Oh, you are right.";
				next;
				mes "[Sponiac]";
				mes "But, you haven't done the mission yet. Why did you come to me now? You haven't completed the mission!";
				mes "I will give you a reward if you complete the mission. Ok? Are we good?";
				next;
				mes "[Sponiac]";
				mes "You can find Smokies northeast and northwest of Geffen. Oh, also the field east of Ayothaya is good spot to find them.";
				mes "You can check the world map by pressing 'ctrl + ~' key.";
				next;
				mes "[Sponiac]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
		else {
			mes "[Sponiac]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Sponiac]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		break;
	case 3:
		set .@check_tuto02,checkquest(8268);
		if (.@check_tuto02 == -1) {
			mes "[Sponiac]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Sponiac]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else if ((.@check_tuto02 == 0) || (.@check_tuto02 == 1)) {
			set .@check_willow01,checkquest(8268,HUNTING);
			if (.@check_willow01 == 2) {
				mes "[Sponiac]";
				mes "Hunting Elder Willow!";
				mes "Wow, I didn't expect you would do that mission. I was just about to give up. But you did good job. I appreciate it!";
				next;
				mes "[Sponiac]";
				mes "Well, I requested the mission and you did an excellent job.";
				mes "I will give you a reward as I promised.";
				next;
				mes "[Sponiac]";
				mes "Here it is. Thank you very much. God bless you!";
				getitem 569,110; //Novice_Potion
				getexp 1000,100;
				erasequest 8268;
				close;
			}
			else {
				mes "[Sponiac]";
				mes "Oh, you are right.";
				next;
				mes "[Sponiac]";
				mes "But, you haven't done the mission yet. Why did you come to me now? You haven't completed the mission!";
				mes "I will give you a reward if you complete the mission. Ok? Are we good?";
				next;
				mes "[Sponiac]";
				mes "You can find Elder Willows northeast of Geffen, east of payon and southwest of Prontera.";
				mes "You can check the world map by pressing 'ctrl + ~' key.";
				next;
				mes "[Sponiac]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
		else {
			mes "[Sponiac]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Sponiac]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
	case 4:
		set .@check_tuto03,checkquest(8269);
		if (.@check_tuto03 == -1) {
			mes "[Sponiac]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Sponiac]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else if ((.@check_tuto03 == 0) || (.@check_tuto03 == 1)) {
			set .@check_coco01,checkquest(8269,HUNTING);
			if (.@check_coco01 == 2) {
				mes "[Sponiac]";
				mes "Hunting Coco!";
				mes "Wow, I didn't expect you would do that mission. I was just about to give up. But you did good job. I appreciate it!";
				next;
				mes "[Sponiac]";
				mes "Well, I requested the mission and you did an excellent job.";
				mes "I will give you a reward as I promised.";
				next;
				mes "[Sponiac]";
				mes "Here it is. Thank you very much. God bless you!";
				getitem 569,150; //Novice_Potion
				getexp 1000,200;
				erasequest 8269;
				close;
			}
			else {
				mes "[Sponiac]";
				mes "Oh, you are right.";
				next;
				mes "[Sponiac]";
				mes "But, you haven't done the mission yet. Why did you come to me now? You haven't completed the mission!";
				mes "I will give you a reward if you complete the mission. Ok? Are we good?";
				next;
				mes "[Sponiac]";
				mes "You can find Coco's around the east of Payon, southwest of Prontera and the field east of Ayothaya.";
				mes "You can check the world map by pressing 'ctrl + ~' key.";
				next;
				mes "[Sponiac]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
		else {
			mes "[Sponiac]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Sponiac]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
	case 5:
		set .@check_tuto04,checkquest(8270);
		if (.@check_tuto04== -1) {
			mes "[Sponiac]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Sponiac]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else if ((.@check_tuto04 == 0) || (.@check_tuto04 == 1)) {
			set .@check_frog01,checkquest(8270,HUNTING);
			if (.@check_frog01 == 2) {
				mes "[Sponiac]";
				mes "Hunting Thara Frog!";
				mes "Wow, I didn't expect you would do that mission. I was just about to give up. But you did good job. I appreciate it!";
				next;
				mes "[Sponiac]";
				mes "Well, I requested the mission and you did an excellent job.";
				mes "I will give you a reward as I promised.";
				next;
				mes "[Sponiac]";
				mes "Here it is. Thank you very much. God bless you!";
				getitem 569,200; //Novice_Potion
				getexp 1500,300;
				erasequest 8270;
				close;
			}
			else {
				mes "[Sponiac]";
				mes "Oh, you are right.";
				next;
				mes "[Sponiac]";
				mes "But, you haven't done the mission yet. Why did you come to me now? You haven't completed the mission!";
				mes "I will give you a reward if you complete the mission. Ok? Are we good?";
				next;
				mes "[Sponiac]";
				mes "You can find Thara Frogs in the Cave east of Comodo or on Turtle Island.";
				mes "You can check the world map by pressing 'ctrl + ~' key.";
				next;
				mes "[Sponiac]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
		else {
			mes "[Sponiac]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Sponiac]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
	}
}

moc_ruins,173,55,3	script	Dieshin Man#09tuto	89,{
	if (checkweight(1201,1) == 0) {
		mes "[Dieshin Man]";
		mes "Why are you carrying too many items?";
		mes "Are you in a training course or something?";
		close;
	}
	mes "[Dieshin Man]";
	mes "Hu hu~~ we are delivery men~";
	mes "We are faster than any flight~!";
	next;
	mes "[Dieshin Man]";
	mes "Welcome~ welcome!";
	mes "We are the fastest delivery company, Dieshin Corperation.";
	next;
	mes "[Dieshin Man]";
	mes "How can I help you?";
	next;
	switch(select("I don't need help.:I've got a Delivery Mission.")) {
	case 1:
		mes "[Dieshin Man]";
		mes "Oh, well. Then, go figure. Bye~!";
		close;
	case 2:
		break;
	}
	mes "[Dieshin Man]";
	mes "Oh, you are from the Eden Group?";
	mes "What mission do you have?";
	next;
	switch(select("Deliver an Insecticide.:Deliver Honey.:Deliver Blankets.")) {
	case 1:
		set .@check_tuto05,checkquest(8271);
		if (.@check_tuto05== -1) {
			mes "[Dieshin Man]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Dieshin Man]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else {
			if (countitem(6218) > 0) {
				mes "[Dieshin Man]";
				mes "Wait, but you already have a delivery box.";
				next;
				mes "[Dieshin Man]";
				mes "We can't allow you to deliver two boxes at once. So, please finish your delivery first.";
				next;
				mes "[Dieshin Man]";
				mes "If you forgot where to deliver, then please check Quest Window by pressing 'alt + u'.";
				close;
			}
			else {
				mes "[Dieshin Man]";
				mes "Ah ha! I got it!";
				mes "The insecticide? It must be the Zoologist on the southeast of Payon who ordered the Insecticide.";
				next;
				mes "[Dieshin Man]";
				mes "Dieshin's cooperation motive is to give the fastest and credited delivery. So please deliver it now without any delay.";
				next;
				mes "[Dieshin Man]";
				mes "If you forgot where to make the delivery, then please check the Quest Window by pressing 'alt + u'.";
				getitem 6218,1; //Disin_Delivery_Box
				close;
			}
		}
	case 2:
		set .@check_tuto06,checkquest(8272);
		if (.@check_tuto06 == -1) {
			mes "[Dieshin Man]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Dieshin Man]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else {
			if (countitem(6218) > 0) {
				mes "[Dieshin Man]";
				mes "Wait, but you already have a delivery box.";
				next;
				mes "[Dieshin Man]";
				mes "We can't allow you to deliver two boxes at once. So, please finish your delivery first.";
				next;
				mes "[Dieshin Man]";
				mes "If you forgot where to deliver, then please check Quest Window by pressing 'alt + u'.";
				close;
			}
			else {
				mes "[Dieshin Man]";
				mes "Ah ha! I got it!";
				mes "Honey? It must be the Entomologist at the west of St. Capitolina Abbey, wich is northeast of Prontera who ordered the Honey.";
				next;
				mes "[Dieshin Man]";
				mes "Dieshin's cooperation motive is to give the fastest and credited delivery. So please deliver it now without any delay.";
				next;
				mes "[Dieshin Man]";
				mes "If you forgot where to make the delivery, then please check the Quest Window by pressing 'alt + u'.";
				getitem 6218,1; //Disin_Delivery_Box
				close;
			}
		}
	case 3:
		set .@check_tuto07,checkquest(8273);
		if (.@check_tuto07 == -1) {
			mes "[Dieshin Man]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Dieshin Man]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else {
			if (countitem(6218) > 0) {
				mes "[Dieshin Man]";
				mes "Wait, but you already have a delivery box.";
				next;
				mes "[Dieshin Man]";
				mes "We can't allow you to deliver two boxes at once. So, please finish your delivery first.";
				next;
				mes "[Dieshin Man]";
				mes "If you forgot where to deliver, then please check Quest Window by pressing 'alt + u'.";
				close;
			}
			else {
				mes "[Dieshin Man]";
				mes "Oh, Right!";
				mes "The blankets! It must be the biologist in the south of Lutie field who ordered the blankets.";
				next;
				mes "[Dieshin Man]";
				mes "You can can go to Lutie by asking Mr. Claus in the northeastern part of Al De Baran.";
				next;
				mes "[Dieshin Man]";
				mes "Dieshin's cooperation motive is to give the fastest and credited delivery. So please deliver it now without any delay.";
				next;
				mes "[Dieshin Man]";
				mes "If you forgot where to make the delivery, then please check the Quest Window by pressing 'alt + u'.";
				getitem 6218,1; //Disin_Delivery_Box
				close;
			}
		}
	}
}

pay_fild07,83,89,7	script	Zoologist#09tuto_rhea04	89,{
	if (checkweight(1201,1) == 0) {
		mes "[Zoologist]";
		mes "Why are you carrying too many items?";
		mes "Are you in a training course or something?";
		close;
	}
	mes "[Zoologist]";
	mes "Have you heard of a monster named Bigfoot?";
	mes "It looks like a bear with red fur and has a 'X' shape scar on his shoulder.";
	next;
	mes "[Zoologist]";
	mes "According to the recent research, flies and Bigfoot monsters have a symbiotic relationship.";
	next;
	mes "[Zoologist]";
	mes "I am currently studying about it and try to prove the theory. So I plan to kill the flies around Bigfoot and observe his reaction.";
	next;
	switch(select("...I am not interested.:Here is the Insecticide.")) {
	case 1:
		mes "[Zoologist]";
		mes "Oh, I need an Insecticide to continue the study.";
		close;
	case 2:
		set .@check_tuto05,checkquest(8271);
		if (.@check_tuto05 == -1) {
			mes "[Zoologist]";
			mes "Huh?";
			mes "You are not Dieshin's delivery man?";
			next;
			mes "[Zoologist]";
			mes "I am waiting for a special delivery.";
			close;
		}
		else {
			if (countitem(6218) > 0) {
				mes "[Zoologist]";
				mes "Oh ho! Yes! That one!";
				next;
				mes "[Zoologist]";
				mes "That is the Insecticide that I ordered! You were sent by Dieshin right?";
				next;
				mes "[Zoologist]";
				mes "I have been waiting for this!";
				mes "Give it to me!";
				next;
				mes "[Zoologist]";
				mes "It arrived much faster than I thought. I want to test it right away!";
				next;
				mes "[Zoologist]";
				mes "Well done. Good Job! Thank you so much! Here is a little gift for you.";
				delitem 6218,1; //Disin_Delivery_Box
				erasequest 8271;
				getitem 569,100; //Novice_Potion
				getexp 1000,0;
				close;
			}
			else {
				mes "[Zoologist]";
				mes "I appreciate your kindness.";
				mes "But, what did you bring?";
				next;
				mes "[Zoologist]";
				mes "Hmm, I thought that Dieshin was fast and accurate, but you brought me an empty box. How disappointing.";
				next;
				mes "[Zoologist]";
				mes "Please bring my order. Dieshin will give you my product.";
				close;
			}
		}
	}
}

prt_fild03,30,254,3	script	Entomologist#09tuto	83,{
	if (checkweight(1201,1) == 0) {
		mes "[Entomologist]";
		mes "Why are you carrying too many items?";
		mes "Are you in a training course or something?";
		close;
	}
	mes "[Entomologist]";
	mes "Have you heard about the Horn monster?";
	mes "It's shaped like an insect with black sleek skin and it has a giant horn it's head.";
	next;
	mes "[Entomologist]";
	mes "Recent research came out and showed that this monster can be tamed and trained by Honey.";
	next;
	mes "[Entomologist]";
	mes "I am currently studying about it and trying to prove the theory. So I plan to set a Honey trap on the places he usually passes and observe his reaction.";
	next;
	switch(select("...I am not interested.:Here is the Honey.")) {
	case 1:
		mes "[Entomologist]";
		mes "Oh, I need Honey to continue the study.";
		close;
	case 2:
		set .@check_tuto06,checkquest(8272);
		if (.@check_tuto06 == -1) {
			mes "[Entomologist]";
			mes "Huh?";
			mes "You are not Dieshin's delivery man?";
			next;
			mes "[Entomologist]";
			mes "I am waiting for a special delivery.";
			close;
		}
		else {
			if (countitem(6218) > 0) {
				mes "[Entomologist]";
				mes "Oh ho! Yes! That one!";
				next;
				mes "[Entomologist]";
				mes "That is the Honey that I ordered! You were sent by Dieshin right?";
				next;
				mes "[Entomologist]";
				mes "I have been waiting for this!";
				mes "Give it to me!";
				next;
				mes "[Entomologist]";
				mes "It arrived much faster than I thought. I want to test it right away!";
				next;
				mes "[Entomologist]";
				mes "Well done. Good Job! Thank you so much! Here is a little gift for you.";
				delitem 6218,1; //Disin_Delivery_Box
				erasequest 8272;
				getitem 569,100; //Novice_Potion
				getexp 1000,0;
				close;
			}
			else {
				mes "[Entomologist]";
				mes "I appreciate your kindness.";
				mes "But, what did you bring?";
				next;
				mes "[Entomologist]";
				mes "Hmm, I thought that Dieshin was fast and accurate, but you brought me an empty box. How disappointing.";
				next;
				mes "[Entomologist]";
				mes "Please bring my order. Dieshin will give you my product.";
				close;
			}
		}
	}
}

xmas_fild01,92,57,3	script	Biologist#09tuto_rhea06	97,{
	if (checkweight(1201,1) == 0) {
		mes "[Biologist]";
		mes "Why are you carrying too many items?";
		mes "Are you in a training course or something?";
		close;
	}
	mes "[Biologist]";
	mes "Have you heard about the Marin monster?";
	mes "It does look like the usual poring, but it has unique characteristic.";
	next;
	mes "[Biologist]";
	mes "Porings steal items if they see them on the ground. However, Marin has no interest in dropped items. So I was wondering, how come Marin doesn't pay attention to gathering items even though they are the same kind of monster as Porings.";
	next;
	mes "[Biologist]";
	mes "But, this place is freaking cold.";
	next;
	switch(select("...I am not interested.:Here are the blankets.")) {
	case 1:
		mes "[Biologist]";
		mes "Huh, whatever. But be careful! It's very slippery here.";
		close;
	case 2:
		set .@check_tuto07,checkquest(8273);
		if (.@check_tuto07 == -1) {
			mes "[Biologist]";
			mes "Huh?";
			mes "You are not Dieshin's delivery man?";
			next;
			mes "[Biologist]";
			mes "I am waiting for a special delivery.";
			close;
		}
		else {
			if (countitem(6218) > 0) {
				mes "[Biologist]";
				mes "Oh ho! Yes! That one!";
				next;
				mes "[Biologist]";
				mes "Those are the Blankets that I ordered! You were sent by Dieshin right?";
				next;
				mes "[Biologist]";
				mes "I have been waiting for this!";
				mes "Give it to me!";
				next;
				mes "[Biologist]";
				mes "It arrived much faster than I thought. I want to test them right away!";
				next;
				mes "[Biologist]";
				mes "Well done. Good Job! Thank you so much! Here is a little gift for you.";
				delitem 6218,1; //Disin_Delivery_Box
				erasequest 8273;
				getitem 569,100; //Novice_Potion
				getexp 1000,0;
				close;
			}
			else {
				mes "[Biologist]";
				mes "I appreciate your kindness.";
				mes "But, what did you bring?";
				next;
				mes "[Biologist]";
				mes "Hmm, I thought that Dieshin was fast and accurate, but you brought me an empty box. How disappointing.";
				next;
				mes "[Biologist]";
				mes "Please bring my order. Dieshin will give you my product.";
				close;
			}
		}
	}
}

payon,179,66,3	script	Dashia#09tuto	931,{
	if (checkweight(1201,1) == 0) {
		mes "[Dashia]";
		mes "Why are you carrying too many items?";
		mes "Are you in a training course or something?";
		close;
	}
	mes "[Dashia]";
	mes "Here is some hair~ a broken clock~!";
	next;
	mes "[Dashia]";
	mes "Broken clock..? Hu hu..";
	next;
	mes "[Dashia]";
	mes "Hey~! Dude! You look like a very rich adventurer.";
	next;
	switch(select("I am a poor adventurer.:I have a gathering mission.")) {
	case 1:
		mes "[Dashia]";
		mes "Really? Hmm, oh right. You don't look sophisticated.";
		next;
		mes "[Dashia]";
		mes "You are a poor adventurer~! Good luck!";
		close;
	case 2:
		break;
	}
	mes "[Dashia]";
	mes "Oh, you are from the Eden Group?";
	mes "What mission do you have?";
	next;
	switch(select("gather Bones:Gather Animal Skin:Gather Peelings:Gather Tails:Gather Cookies:Gather Mustaches")) {
	case 1:
		set .@check_tuto08,checkquest(8274);
		if (.@check_tuto08 == -1) {
			mes "[Dashia]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Dashia]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else {
			if (countitem(932) > 9) {
				mes "[Dashia]";
				mes "Wow~ you did an excellent job!";
				next;
				mes "[Dashia]";
				mes "Thank you very much. God bless you!";
				emotion e_heh,"Dashia#09tuto";
				next;
				mes "[Dashia]";
				mes "Ha~! Ha~!";
				mes "I will give you a reward as promised.";
				delitem 932,10; //Skel_Bone
				getitem 569,100; //Novice_Potion
				getexp 1000,100;
				erasequest 8274;
				close;
			}
			else {
				mes "[Dashia]";
				mes "I can see that you have a gathering mission.";
				mes "But, where are the Skel-Bones?";
				next;
				mes "[Dashia]";
				mes "You haven't done the mission yet. Why did you come back here?";
				next;
				mes "[Dashia]";
				mes "You don't have enough 'Skel-Bones'... You can find it when you hunt Skeletons.";
				next;
				mes "[Dashia]";
				mes "To find Skeletons, you better check Payon Dungeon 1F, which is located in Archer Village, north of Payon.";
				next;
				mes "[Dashia]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
	case 2:
		set .@check_tuto09,checkquest(8275);
		if (.@check_tuto09 == -1) {
			mes "[Dashia]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Dashia]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else {
			if ((countitem(948) > 9) && (countitem(919) > 4)) {
				mes "[Dashia]";
				mes "Wow~ you did an excellent job!";
				next;
				mes "[Dashia]";
				mes "Thank you very much. God bless you!";
				emotion e_heh,"Dashia#09tuto";
				next;
				mes "[Dashia]";
				mes "Ha~! Ha~!";
				mes "I will give you a reward as promised.";
				getitem 569,100; //Novice_Potion
				delitem 948,10; //Bear's_Foot
				delitem 919,5; //Animal's_Skin
				getexp 1000,0;
				erasequest 8275;
				close;
			}
			else {
				mes "[Dashia]";
				mes "I can see that you have a gathering mission.";
				mes "But, where is the Bear's Footskins and Animal Skins?";
				next;
				mes "[Dashia]";
				mes "You haven't done the mission yet. Why did you come back here?";
				next;
				mes "[Dashia]";
				mes "You have to bring 10 Bear's Footskins' and '5 Animal Skins!";
				mes "You can find Bear's Footskin from Bigfoot and Animal Skin from Animals.";
				next;
				mes "[Dashia]";
				mes "Bigfoot is around the north of Geffen field or the southeast of Payon field.";
				next;
				mes "[Dashia]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
	case 3:
		set .@check_tuto10,checkquest(8276);
		if (.@check_tuto10 == -1) {
			mes "[Dashia]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Dashia]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else {
			if ((countitem(955) > 19) && (countitem(910) > 19)) {
				mes "[Dashia]";
				mes "Wow~ you did an excellent job!";
				next;
				mes "[Dashia]";
				mes "Thank you very much. God bless you!";
				emotion e_heh,"Dashia#09tuto";
				next;
				mes "[Dashia]";
				mes "Ha~! Ha~!";
				mes "I will give you a reward as promised.";
				delitem 955,20; //Worm_Peelings
				delitem 910,20; //Garlet
				getitem 569,100; //Novice_Potion
				getexp 1000,100;
				erasequest 8276;
				close;
			}
			else {
				mes "[Dashia]";
				mes "I can see that you have a gathering mission.";
				mes "But, where are the Worm Peelings and Garlets?";
				next;
				mes "[Dashia]";
				mes "You have to bring '20 Worm Peelings' and '20 Garlets' to complete the mission.";
				next;
				mes "[Dashia]";
				mes "You can get those items from 'Piere', 'Andre', 'Deniro', 'Vitata', 'Thief Bug', 'Female Thief Bug' and 'Male Thief Bug'.";
				next;
				mes "[Dashia]";
				mes "'Piere', 'Andre', 'Deniro' and 'Vitata' are in Ant Hell which is located near the Saint Darmain Fortress soutwest of Morroc.";
				next;
				mes "[Dashia]";
				mes "'Thief Bug', 'Female Thief Bug' and 'Male Thief Bug' are int he Prontere Culvert. To get there, you need to be a volunteer of the Prontera Culvert's punitive force.";
				next;
				mes "[Dashia]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
	case 4:
		set .@check_tuto11,checkquest(8277);
		if (.@check_tuto11 == -1) {
			mes "[Dashia]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Dashia]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else {
			if ((countitem(942) > 9) && (countitem(1026) > 9) && (countitem(945) > 9)) {
				mes "[Dashia]";
				mes "Wow~ you did an excellent job!";
				next;
				mes "[Dashia]";
				mes "Thank you very much. God bless you!";
				emotion e_heh,"Dashia#09tuto";
				next;
				mes "[Dashia]";
				mes "Ha~! Ha~!";
				mes "I will give you a reward as promised.";
				delitem 942,10; //Yoyo_Tail
				delitem 1026,10; //Acorn
				delitem 945,10; //Raccoon_Leaf
				getitem 569,150; //Novice_Potion
				getexp 1000,200;
				erasequest 8277;
				close;
			}
			else {
				mes "[Dashia]";
				mes "I can see that you have a gathering mission.";
				mes "But, where are the Yoyo Tails, Acorns and Raccoon Leafs?";
				next;
				mes "[Dashia]";
				mes "You haven't done the mission yet. Why did you come back here?";
				mes "You have to bring '10 Yoyo Tails,' '10 Acorns' and '10 Raccoon Leafs' to complete the mission.";
				next;
				mes "[Dashia]";
				mes "You can get Yoyo Tails from 'Yoyo's', Acorn from 'Coco's' and Raccoon Leaf from 'Smokies'.";
				next;
				mes "[Dashia]";
				mes "You can find them easily around fields, but the field east of Ayothya is the best spot for hunting all 3 monsters.";
				next;
				mes "[Dashia]";
				mes "To get to Ayothaya, you better go to 'Aibakthing' in Alberta and pay his fare.";
				next;
				mes "[Dashia]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
	case 5:
		set .@check_tuto12,checkquest(8278);
		if (.@check_tuto12 == -1) {
			mes "[Dashia]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Dashia]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else {
			if ((countitem(538) > 4) && (countitem(539) > 0)) {
				mes "[Dashia]";
				mes "Wow~ you did an excellent job!";
				next;
				mes "[Dashia]";
				mes "Thank you very much. God bless you!";
				emotion e_heh,"Dashia#09tuto";
				next;
				mes "[Dashia]";
				mes "Ha~! Ha~!";
				mes "I will give you a reward as promised.";
				delitem 538,5; //Well_Baked_Cookie
				delitem 539,1; //Piece_Of_Cake
				getitem 569,150; //Novice_Potion
				getexp 1000,200;
				erasequest 8278;
				close;
			}
			else {
				mes "[Dashia]";
				mes "I can see that you have a gathering mission.";
				mes "But, where are the Well-baked Cookies and the Piece of Cake?";
				next;
				mes "[Dashia]";
				mes "You haven't done the mission yet. Why did you come back here?";
				mes "You have to bring '5 Well-baked Cookies' and '1 Piece of Cake' to complete the mission.";
				next;
				mes "[Dashia]";
				mes "You can get Well-baked Cookie from 'Cookies' who wears red or green shirts.";
				mes "For getting Piece of Cake, you should look for 'Mystcases'.";
				next;
				mes "[Dashia]";
				mes "Both monsters canbe found in the Toy Factory Warehouse or Toy Monitoring Room. To get there, ask Mr. Claus in the northeastern part of Al De Baran.";
				next;
				mes "[Dashia]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
	case 6:
		set .@check_tuto13,checkquest(8279);
		if (.@check_tuto13 == -1) {
			mes "[Dashia]";
			mes "Huh? Are you sure? Something is wrong...";
			next;
			mes "[Dashia]";
			mes "It is weird.";
			mes "Please check your Quest Window by pressing 'alt + u'.";
			close;
		}
		else {
			if ((countitem(1017) > 4) && (countitem(1018) > 2)) {
				mes "[Dashia]";
				mes "Wow~ you did an excellent job!";
				next;
				mes "[Dashia]";
				mes "Thank you very much. God bless you!";
				emotion e_heh,"Dashia#09tuto";
				next;
				mes "[Dashia]";
				mes "Ha~! Ha~!";
				mes "I will give you a reward as promised.";
				delitem 1017,5; //Moustache_Of_Mole
				delitem 1018,3; //Nail_Of_Mole
				getitem 569,150; //Novice_Potion
				getexp 1000,200;
				erasequest 8279;
				close;
			}
			else {
				mes "[Dashia]";
				mes "I can see that you have a gathering mission.";
				mes "But, where are the Mole Whiskerss and Mole Claws??";
				next;
				mes "[Dashia]";
				mes "You haven't done the mission yet. Why did you come back here?";
				mes "You have to bring '5 Mole Whiskers' and '3 Mole Claws' to complete the mission.";
				next;
				mes "[Dashia]";
				mes "You can get those items from 'Martins'.";
				mes "Martins can be found in the Mjolnir Dead Pit, but the second floor is dangerous, so be careful!";
				next;
				mes "[Dashia]";
				mes "To get there, ask a Kafra Employee in Geffen, they can warp you there.";
				next;
				mes "[Dashia]";
				mes "Anyway, I will be here waiting for you. Please come back when you finish the mission!";
				close;
			}
		}
	}
}