summaryrefslogtreecommitdiff
path: root/npc/quests/custom/new_hats.txt
blob: a1d6780bf97697f4654f18df5ea2bcec43e82450 (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
//===== eAthena Script =======================================
//= The 32 New Hats
//===== By: ==================================================
//= Darkchild
//===== Current Version: =====================================
//= 1.4
//===== Compatible With: =====================================
//= eAthena 1.0
//===== Description: =========================================
//= 4 brothers give you quests to get 32 new hats
//===== Additional Comments: =================================
//= There are 2 scripts for these 32 'new' hats.
//= The other one doesnt have all the new ones and has some old ones
//= Advise to use this script
//= 1.2 revision
//= 1.3 fixed bug where npcs would give out free items [Shinigami]
//= 1.4 fixed amount of Fish Tail (300 -> 30), Zeny bugs in Ear of Angel,
//=     Ear of Demon,Big Golden Bell, Mistress Crown,
//=     Crown of The Ancient Queen, Indian Headband, Orc Hero Helm [Lupus]
//============================================================
prontera.gat,140,172,5	script	Zac	704,{
	mes "[Zac]";
	mes "I am the oldest and strongest of the 4 brothers that makes all the newer hats.";
	mes "You will need to bring me the correct items for each hat so I can make them.";
	mes "I provide 8 hats and my brothers provides the other 24.";
	mes "What hat do you want me to make?";
	next;
	menu "Attitude Campus Hat",L1_1,"Fox Mask",L1_2,"X Cross Hairpin",L1_3,"Flower Hair Pin",L1_4,"Tulip Hair Pin",L1_5,"Mushroom Hairband",L1_6,"Troublesome Raccoon Doll",L1_7,"Blue Fish",L1_8;
	L1_1:
			mes "[Zac]";
			mes "Let me check the items you have brought here.";
			next;
			if((countitem(2285)<1) && (countitem(1550)<1)) goto L_ITEM_1;//Items: Apple o' Archer, Book,
			mes "[Zac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Attitude Campus Hat for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2285,1;//Items: Apple o' Archer,
			delitem 1550,1;//Items: Book,
			mes "[Zac]";
			mes "Tah Dah!!!^FF0000Attitude Campus Hat^000000...! Please Take it!";
			getitem 5073,1;//Items: Campus Hat,
			next;
			mes "[Zac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_1:
			mes "[Zac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Zac]";
			mes "Attitude Campus Hat requires~~";
			next;
			mes "[Zac]";
			mes "1 Apple o' Archer";
			mes "1 Book";
			mes "...Did you know this already?";
			close;
	L1_2:
			mes "[Zac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(1022)<999) goto L_ITEM_2;//Items: Nine Tails,
			mes "[Zac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Fox Mask for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 1022,999;//Items: Nine Tails,
			mes "[Zac]";
			mes "Tah Dah!!!^FF0000Fox Mask^000000...! Please Take it!";
			getitem 5069,1;//Items: Fox Mask,
			next;
			mes "[Zac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_2:
			mes "[Zac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Zac]";
			mes "Fox Mask requires~~";
			next;
			mes "[Zac]";
			mes "999 Nine Tails";
			mes "...Did you know this already?";
			close;
	L1_3:
			mes "[Zac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(10011)<1) goto L_ITEM_3;//Items: Stellar Hairpin,
			if(countitem(2266)<1) goto L_ITEM_3;//Items: Iron Cain,
			if(countitem(909)<100) goto L_ITEM_3;//Items: Jellopy,
			mes "[Zac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the X Cross Hairpin for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 10011,1;//Items: Stellar Hairpin,
			delitem 2266,1;//Items: Iron Cain,
			delitem 909,100;//Items: Jellopy,
			mes "[Zac]";
			mes "Tah Dah!!!^FF0000X Cross Hairpin^000000...! Please Take it!";
			getitem 5079,1;//Items: X Hairpin,
			next;
			mes "[Zac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_3:
			mes "[Zac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Zac]";
			mes "X Cross Hairpin requires~~";
			next;
			mes "[Zac]";
			mes "1 Stellar Hairpin";
			mes "1 Iron Cain";
			mes "100 Jellopy";
			mes "...Did you know this already?";
			close;
	L1_4:
			mes "[Zac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2270)<1) goto L_ITEM_4;//Items: Centimental Leaf,
			if(countitem(999)<10) goto L_ITEM_4;//Items: Steel,
			if(Zeny < 20000) goto L_ITEM_4;
			mes "[Zac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Flower Hair Pin for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2270,1;//Items: Centimental Leaf,
			delitem 999,10;//Items: Steel,
			set Zeny,Zeny-20000;
			mes "[Zac]";
			mes "Tah Dah!!!^FF0000Flower Hair Pin^000000...! Please Take it!";
			getitem 5061,1;//Items: Flower Hairpin,
			next;
			mes "[Zac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_4:
			mes "[Zac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Zac]";
			mes "Flower Hair Pin requires~~";
			next;
			mes "[Zac]";
			mes "1 Romantic Leaf";
			mes "10 Steel";
			mes "20,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_5:
			mes "[Zac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2278)<1) goto L_ITEM_5;//Items: Mr. Smile,
			if(countitem(980)<1) goto L_ITEM_5;//Items: Orange Dyestuff,
			mes "[Zac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Tulip Hair Pin for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2278,1;//Items: Mr. Smile,
			delitem 980,1;//Items: Orange Dyestuff,
			mes "[Zac]";
			mes "Tah Dah!!!^FF0000Tulip Hair Pin^000000...! Please Take it!";
			getitem 5077,1;//Items: Tulip Hairpin,
			next;
			mes "[Zac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_5:
			mes "[Zac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Zac]";
			mes "Tulip Hair Pin requires~~";
			next;
			mes "[Zac]";
			mes "1 Mr. Smile";
			mes "1 Orange Dyestuffs";
			mes "...Did you know this already?";
			close;
	L1_6:
			mes "[Zac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(921)<300) goto L_ITEM_6;//Items: Mushroom Spore,
			mes "[Zac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Mushroom Hairband for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 921,300;//Items: Mushroom Spore,
			mes "[Zac]";
			mes "Tah Dah!!!^FF0000Mushroom Hairband^000000...! Please Take it!";
			getitem 5082,1;//Items: Mushroom Hairband,
			next;
			mes "[Zac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_6:
			mes "[Zac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Zac]";
			mes "Mushroom Hairband requires~~";
			next;
			mes "[Zac]";
			mes "300 Mushroom Spores";
			mes "...Did you know this already?";
			close;
	L1_7:
			mes "[Zac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(1026)<100) goto L_ITEM_7;//Items: Acorn,
			if(countitem(7065)<100) goto L_ITEM_7;//Items: Sea Otter Fur,
			if(countitem(945)<100) goto L_ITEM_7;//Items: Raccoon Leaf,
			mes "[Zac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Troublesome Raccoon Doll for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 1026,100;//Items: Acorn,
			delitem 7065,100;//Items: Sea Otter Fur,
			delitem 945,100;//Items: Raccoon Leaf,
			mes "[Zac]";
			mes "Tah Dah!!!^FF0000Troublesome Raccoon Doll^000000...! Please Take it!";
			getitem 5084,1;//Items: Lazy Racoon Hat,
			next;
			mes "[Zac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_7:
			mes "[Zac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Zac]";
			mes "Troublesome Raccoon Doll requires~~";
			next;
			mes "[Zac]";
			mes "100 Acorn";
			mes "100 Sea Otter Fur";
			mes "100 Raccoon Leaf";
			mes "...Did you know this already?";
			close;
	L1_8:
			mes "[Zac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(624)<2) goto L_ITEM_8;//Items: Rotten Fish,
			if(countitem(959)<300) goto L_ITEM_8;//Items: Stinky Scale,
			if(countitem(1023)<30) goto L_ITEM_8;//Items: Fish Tail,
			if(countitem(938)<100) goto L_ITEM_8;//Items: Sticky Mucus,
			mes "[Zac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Blue Fish for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 624,2;//Items: Rotten Fish,
			delitem 959,300;//Items: Stinky Scale,
			delitem 1023,30;//Items: Fish Tail,
			delitem 938,100;//Items: Sticky Mucus,
			mes "[Zac]";
			mes "Tah Dah!!!^FF0000Blue Fish^000000...! Please Take it!";
			getitem 5065,1;//Items: Fresh Blueish Fish,
			next;
			mes "[Zac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_8:
			mes "[Zac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Zac]";
			mes "Blue Fish requires~~";
			next;
			mes "[Zac]";
			mes "2 Rotten Fish";
			mes "300 Rotten Scale";
			mes "30 Fish Tail";
			mes "100 Sticky Mucus";
			mes "...Did you know this already?";
			close;
}


prontera.gat,141,172,5	script 	Jac	107,{
	mes "[Jac]";
	mes "I am the 2nd oldest and calmest of the 4 brothers that makes all the newer hats.";
	mes "You will need to bring me the correct items for each hat so I can make them.";
	mes "I provide 8 hats and my brothers provides the other 24.";
	mes "What hat do you want me to make?";
	next;
	menu "Drooped Cat",L1_9,"Leaf of Transformation",L1_10,"Bear Pebble Hat",L1_11,"Sea Otter Hat",L1_12,"Sleepy Hat",L1_13,"Straw Hat",L1_14,"Cowboy Hat",L1_15,"Sombrero",L1_16;
	L1_9:
			mes "[Jac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2233)<1) goto L_ITEM_9;//Items: Circlet,
			if(countitem(983)<1) goto L_ITEM_9;//Items: Black Dyestuff,
			if(countitem(740)<1) goto L_ITEM_9;//Items: Puppet,
			mes "[Jac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Drooped Cat for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2233,1;//Items: Circlet,
			delitem 983,1;//Items: Black Dyestuff,
			delitem 740,1;//Items: Puppet,
			mes "[Jac]";
			mes "Tah Dah!!!^FF0000Drooped Cat^000000...! Please Take it!";
			getitem 5058,1;//Items: Resting Cat,
			next;
			mes "[Jac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_9:
			mes "[Jac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Jac]";
			mes "Drooped Cat requires~~";
			next;
			mes "[Jac]";
			mes "1 Slotted Circlet";
			mes "1 Black Dyestuffs";
			mes "1 Puppet";
			mes "...Did you know this already?";
			close;
	L1_10:
			mes "[Jac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(945)<600) goto L_ITEM_10;//Items: Raccoon Leaf,
			mes "[Jac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Leaf of Transformation for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 945,600;//Items: Raccoon Leaf,
			mes "[Jac]";
			mes "Tah Dah!!!^FF0000Leaf of Transformation^000000...! Please Take it!";
			getitem 5064,1;//Items: Transformation Leaf,
			next;
			mes "[Jac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_10:
			mes "[Jac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Jac]";
			mes "Leaf of Transformation requires~~";
			next;
			mes "[Jac]";
			mes "600 Raccoon Leaf";
			mes "...Did you know this already?";
			close;
	L1_11:
			mes "[Jac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(5030)<1) goto L_ITEM_11;//Items: Panda Hat,
			if(countitem(952)<100) goto L_ITEM_11;//Items: Cactus Needle,
			if(countitem(999)<20) goto L_ITEM_11;//Items: Steel,
			if(countitem(948)<200) goto L_ITEM_11;//Items: Bears Footskin,
			mes "[Jac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Bear Pebble Hat for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 5030,1;//Items: Panda Hat,
			delitem 952,100;//Items: Cactus Needle,
			delitem 999,20;//Items: Steel,
			delitem 948,200;//Items: Bears Footskin,
			mes "[Jac]";
			mes "Tah Dah!!!^FF0000Bear Pebble Hat^000000...! Please Take it!";
			getitem 5059,1;//Items: Bear Hat,
			next;
			mes "[Jac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_11:
			mes "[Jac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Jac]";
			mes "Bear Pebble Hat requires~~";
			next;
			mes "[Jac]";
			mes "1 Panda Hat";
			mes "100 Cactus Needle";
			mes "20 Steel";
			mes "200 Bear's Footskin";
			mes "...Did you know this already?";
			close;
	L1_12:
			mes "[Jac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(5084)<1) goto L_ITEM_12;//Items: Lazy Racoon Hat,
			if(countitem(5064)<1) goto L_ITEM_12;//Items: Transformation Leaf,
			mes "[Jac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Sea Otter Hat for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 5084,1;//Items: Lazy Racoon Hat,
			delitem 5064,1;//Items: Transformation Leaf,
			mes "[Jac]";
			mes "Tah Dah!!!^FF0000Sea Otter Hat^000000...! Please Take it!";
			getitem 5078,1;//Items: Sea Otter Hat,
			next;
			mes "[Jac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_12:
			mes "[Jac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Jac]";
			mes "Sea Otter Hat requires~~";
			next;
			mes "[Jac]";
			mes "1 Troublesome Raccoon Doll";
			mes "1 Leaf of Transformation";
			mes "...Did you know this already?";
			close;
	L1_13:
			mes "[Jac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2236)<1) goto L_ITEM_13;//Items: Santa's Hat,
			if(countitem(7111)<200) goto L_ITEM_13;//Items: String Paper,
			if(countitem(7112)<1) goto L_ITEM_13;//Items: Transparent Paper,
			mes "[Jac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Sleepy Hat for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2236,1;//Items: Santa's Hat,
			delitem 7111,200;//Items: String Paper,
			delitem 7112,1;//Items: Transparent Paper,
			mes "[Jac]";
			mes "Tah Dah!!!^FF0000Sleepy Hat^000000...! Please Take it!";
			getitem 5060,1;//Items: Pointy Cap,
			next;
			mes "[Jac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_13:
			mes "[Jac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Jac]";
			mes "Sleepy Hat requires~~";
			next;
			mes "[Jac]";
			mes "1 Santa Hat";
			mes "200 String Paper";
			mes "1 Transparent Paper";
			mes "...Did you know this already?";
			close;
	L1_14:
			mes "[Jac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(7012)<400) goto L_ITEM_14;//Items: Tough Scalelike Stem,
			mes "[Jac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Straw Hat for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 7012,400;//Items: Tough Scalelike Stem,
			mes "[Jac]";
			mes "Tah Dah!!!^FF0000Straw Hat^000000...! Please Take it!";
			getitem 5062,1;//Items: Straw Hat,
			next;
			mes "[Jac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_14:
			mes "[Jac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Jac]";
			mes "Straw Hat requires~~";
			next;
			mes "[Jac]";
			mes "400 Tough Scalelike Stem";
			mes "...Did you know this already?";
			close;
	L1_15:
			mes "[Jac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2248)<1) goto L_ITEM_15;//Items: Western Grace,
			if(countitem(7030)<108) goto L_ITEM_15;//Items: Claw of Desert Wolf,
			if(countitem(7100)<100) goto L_ITEM_15;//Items: Sharpened Leaf,
			if(countitem(7120)<4) goto L_ITEM_15;//Items: Burning Horseshoe,
			mes "[Jac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Cowboy Hat for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2248,1;//Items: Western Grace,
			delitem 7030,108;//Items: Claw of Desert Wolf,
			delitem 7100,100;//Items: Sharpened Leaf,
			delitem 7120,4;//Items: Burning Horseshoe,
			mes "[Jac]";
			mes "Tah Dah!!!^FF0000Cowboy Hat^000000...! Please Take it!";
			getitem 5075,1;//Items: Cowboy Hat,
			next;
			mes "[Jac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_15:
			mes "[Jac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Jac]";
			mes "Cowboy Hat requires~~";
			next;
			mes "[Jac]";
			mes "1 Western Grace";
			mes "108 Claw of Desert Wolf";
			mes "100 Sharpened Leaf ";
			mes "4 Burning Horseshoe";
			mes "...Did you know this already?";
			close;
	L1_16:
			mes "[Jac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(5062)<1) goto L_ITEM_16;//Items: Straw Hat,
			if(countitem(952)<100) goto L_ITEM_16;//Items: Cactus Needle,
			if(countitem(1907)<1) goto L_ITEM_16;//Items: Guitar,
			mes "[Jac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Sombrero for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 5062,1;//Items: Straw Hat,
			delitem 952,100;//Items: Cactus Needle,
			delitem 1907,1;//Items: Guitar,
			mes "[Jac]";
			mes "Tah Dah!!!^FF0000Sombrero^000000...! Please Take it!";
			getitem 5067,1;//Items: Sombrero,
			next;
			mes "[Jac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_16:
			mes "[Jac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Jac]";
			mes "Sombrero requires~~";
			next;
			mes "[Jac]";
			mes "1 Straw Hat";
			mes "100 Cactus Needle";
			mes "1 Guitar";
			mes "...Did you know this already?";
			close;
}

prontera.gat,142,172,5	script 	Pac	705,{
	mes "[Pac]";
	mes "I am 3rd oldest and wisest of the 4 brothers that makes all the newer hats.";
	mes "You will need to bring me the correct items for each hat so I can make them.";
	mes "I provide 8 hats and my brothers provides the other 24.";
	mes "What hat do you want me to make?";
	next;
	menu "Hair Cap",L1_17,"Hot Blood Headband",L1_18,"Ear of Angel",L1_19,"Ear of Demon",L1_20,"Big Golden Bell",L1_21,"Mistress Crown",L1_22,"Crown of Ancient Queen",L1_23,"Alarm Mask",L1_24;
	L1_17:
			mes "[Pac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2226)<1) goto L_ITEM_17;//Items: Cap,
			if(countitem(7107)<500) goto L_ITEM_17;//Items: Antelope Skin,
			mes "[Pac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Hair Cap for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2226,1;//Items: Cap,
			delitem 7107,500;//Items: Antelope Skin,
			mes "[Pac]";
			mes "Tah Dah!!!^FF0000Hair Cap^000000...! Please Take it!";
			getitem 5076,1;//Items: Furry Hat,
			next;
			mes "[Pac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_17:
			mes "[Pac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Pac]";
			mes "Hair Cap requires~~";
			next;
			mes "[Pac]";
			mes "1 Cap";
			mes "500 Fur of Goat";
			mes "...Did you know this already?";
			close;
	L1_18:
			mes "[Pac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(10019)<1) goto L_ITEM_18;//Items: Red Muffler,
			if(countitem(7097)<300) goto L_ITEM_18;//Items: Burning Heart,
			if(countitem(982)<1) goto L_ITEM_18;//Items: White Dyestuff,
			if(countitem(2211)<1) goto L_ITEM_18;//Items: Bandana,
			mes "[Pac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Hot Blood Headband for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 10019,1;//Items: Red Muffler,
			delitem 7097,300;//Items: Burning Heart,
			delitem 982,1;//Items: White Dyestuff,
			delitem 2211,1;//Items: Bandana,
			mes "[Pac]";
			mes "Tah Dah!!!^FF0000Hot Blood Headband^000000...! Please Take it!";
			getitem 5070,1;//Items: Bandage,
			next;
			mes "[Pac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_18:
			mes "[Pac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Pac]";
			mes "Hot Blood Headband requires~~";
			next;
			mes "[Pac]";
			mes "1 Red Muffler";
			mes "300 Burning Heart";
			mes "1 White Dyestuffs";
			mes "1 Bandana";
			mes "...Did you know this already?";
			close;
	L1_19:
			mes "[Pac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2254)<1) goto L_ITEM_19;//Items: Angel Wing,
			if(countitem(2286)<1) goto L_ITEM_19;//Items: Elven Ears,
			if(Zeny < 20000) goto L_ITEM_19;
			mes "[Pac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Ear of Angel for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2254,1;//Items: Angel Wing,
			delitem 2286,1;//Items: Elven Ears,
			set Zeny,Zeny-20000;
			mes "[Pac]";
			mes "Tah Dah!!!^FF0000Ear of Angel^000000...! Please Take it!";
			getitem 5074,1;//Items: Ears of Angel,
			next;
			mes "[Pac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_19:
			mes "[Pac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Pac]";
			mes "Ear of Angel requires~~";
			next;
			mes "[Pac]";
			mes "1 Angel Wing";
			mes "1 Elven Ears";
			mes "20,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_20:
			mes "[Pac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2255)<1) goto L_ITEM_20;//Items: Evil Wing,
			if(countitem(2286)<1) goto L_ITEM_20;//Items: Elven Ears,
			if(Zeny < 20000) goto L_ITEM_20;
			mes "[Pac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Ear of Demon for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2255,1;//Items: Evil Wing,
			delitem 2286,1;//Items: Elven Ears,
			set Zeny,Zeny-20000;
			mes "[Pac]";
			mes "Tah Dah!!!^FF0000Ear of Demon^000000...! Please Take it!";
			getitem 5068,1;//Items: Ears Of Demon,
			next;
			mes "[Pac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_20:
			mes "[Pac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Pac]";
			mes "Ear of Demon requires~~";
			next;
			mes "[Pac]";
			mes "1 Evil Wing";
			mes "1 Elven Ears";
			mes "20,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_21:
			mes "[Pac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(10016)<1) goto L_ITEM_21;//Items: Golden Bell,
			if(countitem(714)<1) goto L_ITEM_21;//Items: Emperium,
			if(countitem(969)<3) goto L_ITEM_21;//Items: Gold,
			if(Zeny < 25000) goto L_ITEM_21;
			mes "[Pac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Big Golden Bell for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 10016,1;//Items: Golden Bell,
			delitem 714,1;//Items: Emperium,
			delitem 969,3;//Items: Gold,
			set Zeny,Zeny-25000;
			mes "[Pac]";
			mes "Tah Dah!!!^FF0000Big Golden Bell^000000...! Please Take it!";
			getitem 5091,1;//Items: Big Golden Bell,
			next;
			mes "[Pac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_21:
			mes "[Pac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Pac]";
			mes "Big Golden Bell requires~~";
			next;
			mes "[Pac]";
			mes "1 Golden Bell";
			mes "1 Emperium";
			mes "3 Gold";
			mes "25,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_22:
			mes "[Pac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2249)<1) goto L_ITEM_22;//Items: Coronet,
			if(countitem(714)<1) goto L_ITEM_22;//Items: Emperium,
			if(countitem(969)<3) goto L_ITEM_22;//Items: Gold,
			if(Zeny < 25000) goto L_ITEM_22;
			mes "[Pac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Mistress Crown for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2249,1;//Items: Coronet,
			delitem 714,1;//Items: Emperium,
			delitem 969,3;//Items: Gold,
			set Zeny,Zeny-25000;
			mes "[Pac]";
			mes "Tah Dah!!!^FF0000Mistress Crown^000000...! Please Take it!";
			getitem 5081,1;//Items: Crown of Mistress,
			next;
			mes "[Pac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_22:
			mes "[Pac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Pac]";
			mes "Mistress Crown requires~~";
			next;
			mes "[Pac]";
			mes "1 Coronet";
			mes "1 Emperium";
			mes "3 Gold";
			mes "25,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_23:
			mes "[Pac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(10006)<1) goto L_ITEM_23;//Items: Queen's Hair Ornament,
			if(countitem(714)<1) goto L_ITEM_23;//Items: Emperium,
			if(countitem(969)<3) goto L_ITEM_23;//Items: Gold,
			if(Zeny < 25000) goto L_ITEM_23;
			mes "[Pac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Crown of Ancient Queen for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 10006,1;//Items: Queen's Hair Ornament,
			delitem 714,1;//Items: Emperium,
			delitem 969,3;//Items: Gold,
			set Zeny,Zeny-25000;
			mes "[Pac]";
			mes "Tah Dah!!!^FF0000Crown of Ancient Queen^000000...! Please Take it!";
			getitem 5080,1;//Items: Crown of The Ancient Queen,
			next;
			mes "[Pac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_23:
			mes "[Pac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Pac]";
			mes "Crown of Ancient Queen requires~~";
			next;
			mes "[Pac]";
			mes "1 Queen's Hair Ornament";
			mes "1 Emperium";
			mes "3 Gold";
			mes "25,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_24:
			mes "[Pac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(1095)<3000) goto L_ITEM_24;//Items: Needle of Alarm,
			if(countitem(2218)<1) goto L_ITEM_24;//Items: Flu Mask,
			mes "[Pac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Alarm Mask for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 1095,3000;//Items: Needle of Alarm,
			delitem 2218,1;//Items: Flu Mask,
			mes "[Pac]";
			mes "Tah Dah!!!^FF0000Alarm Mask^000000...! Please Take it!";
			getitem 5086,1;//Items: Sad Mask,
			next;
			mes "[Pac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_24:
			mes "[Pac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Pac]";
			mes "Alarm Mask requires~~";
			next;
			mes "[Pac]";
			mes "3000 Needle of Alarm";
			mes "1 Flu Mask";
			mes "...Did you know this already?";
			close;
}

prontera.gat,143,172,5	script 	Blac	732,{
	mes "[Blac]";
	mes "I am the youngest and sexiest of the 4 brothers that makes all the newer hats.";
	mes "You will need to bring me the correct items for each hat so I can make them.";
	mes "I provide 8 hats and my brothers provides the other 24.";
	mes "What hat do you want me to make?";
	next;
	menu "Indian Hairband",L1_25,"Twin Ribbons",L1_26,"Expressionless Mask",L1_27,"Troublesome Mask",L1_28,"Surprise Mask",L1_29,"Goblin Leader Mask",L1_30,"Horn of Incubus",L1_31,"Horn of Succubus",L1_32;
	L1_25:
			mes "[Blac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2207)<1) goto L_ITEM_25;//Items: Fancy Flower,
			if(countitem(7101)<10) goto L_ITEM_25;//Items: Peco Feather,
			if(Zeny < 10000) goto L_ITEM_25;
			mes "[Blac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Indian Hairband for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2207,1;//Items: Fancy Flower,
			delitem 7101,10;//Items: Peco Feather,
			set Zeny,Zeny-10000;
			mes "[Blac]";
			mes "Tah Dah!!!^FF0000Indian Hairband^000000...! Please Take it!";
			getitem 5071,1;//Items: Indian Headband,
			next;
			mes "[Blac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_25:
			mes "[Blac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Blac]";
			mes "Indian Hairband requires~~";
			next;
			mes "[Blac]";
			mes "1 Fancy Flower";
			mes "10 Peco's Feather";
			mes "10,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_26:
			mes "[Blac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2244)<1) goto L_ITEM_26;//Items: Big Ribbon,
			if(countitem(10007)<1) goto L_ITEM_26;//Items: Silk Ribbon,
			if(countitem(5079)<1) goto L_ITEM_26;//Items: X Hairpin,
			mes "[Blac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Twin Ribbons for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2244,1;//Items: Big Ribbon,
			delitem 10007,1;//Items: Silk Ribbon,
			delitem 5079,1;//Items: X Hairpin,
			mes "[Blac]";
			mes "Tah Dah!!!^FF0000Twin Ribbons^000000...! Please Take it!";
			getitem 5085,1;//Items: Small Twin Ribbons,
			next;
			mes "[Blac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_26:
			mes "[Blac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Blac]";
			mes "Twin Ribbons requires~~";
			next;
			mes "[Blac]";
			mes "1 Big Ribbon";
			mes "1 Silk Ribbon";
			mes "1 X Cross Hairpin";
			mes "...Did you know this already?";
			close;
	L1_27:
			mes "[Blac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(999)<25) goto L_ITEM_27;//Items: Steel,
			if(countitem(5090)<1) goto L_ITEM_27;//Items: Mask of The Goblin Leader,
			if(Zeny < 50000) goto L_ITEM_27;
			mes "[Blac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Expressionless Mask for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 999,25;//Items: Steel,
			delitem 5090,1;//Items: Mask of The Goblin Leader,
			set Zeny,Zeny-50000;
			mes "[Blac]";
			mes "Tah Dah!!!^FF0000Expressionless Mask^000000...! Please Take it!";
			getitem 5087,1;//Items: Expressionless Mask,
			next;
			mes "[Blac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_27:
			mes "[Blac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Blac]";
			mes "Expressionless Mask requires~~";
			next;
			mes "[Blac]";
			mes "25 Steel";
			mes "1 Goblin Leader Mask";
			mes "50,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_28:
			mes "[Blac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(999)<25) goto L_ITEM_28;//Items: Steel,
			if(countitem(5090)<1) goto L_ITEM_28;//Items: Mask of The Goblin Leader,
			if(Zeny < 50000) goto L_ITEM_28;
			mes "[Blac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Troublesome Mask for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 999,25;//Items: Steel,
			delitem 5090,1;//Items: Mask of The Goblin Leader,
			set Zeny,Zeny-50000;
			mes "[Blac]";
			mes "Tah Dah!!!^FF0000Troublesome Mask^000000...! Please Take it!";
			getitem 5089,1;//Items: Annoyed Mask,
			next;
			mes "[Blac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_28:
			mes "[Blac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Blac]";
			mes "Troublesome Mask requires~~";
			next;
			mes "[Blac]";
			mes "25 Steel";
			mes "1 Goblin Leader Mask";
			mes "50,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_29:
			mes "[Blac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(999)<25) goto L_ITEM_29;//Items: Steel,
			if(countitem(5090)<1) goto L_ITEM_29;//Items: Mask of The Goblin Leader,
			if(Zeny < 50000) goto L_ITEM_29;
			mes "[Blac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Surprise Mask for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 999,25;//Items: Steel,
			delitem 5090,1;//Items: Mask of The Goblin Leader,
			set Zeny,Zeny-50000;
			mes "[Blac]";
			mes "Tah Dah!!!^FF0000Surprise Mask^000000...! Please Take it!";
			getitem 5088,1;//Items: Surprised Mask,
			next;
			mes "[Blac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_29:
			mes "[Blac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Blac]";
			mes "Surprise Mask requires~~";
			next;
			mes "[Blac]";
			mes "25 Steel";
			mes "1 Goblin Leader Mask";
			mes "50,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_30:
			mes "[Blac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2275)<1) goto L_ITEM_30;//Items: Red Bandana,
			if(countitem(911)<100) goto L_ITEM_30;//Items: Scell,
			mes "[Blac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Goblin Leader Mask for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2275,1;//Items: Red Bandana,
			delitem 911,100;//Items: Scell,
			mes "[Blac]";
			mes "Tah Dah!!!^FF0000Goblin Leader Mask^000000...! Please Take it!";
			getitem 5090,1;//Items: Mask of The Goblin Leader,
			next;
			mes "[Blac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_30:
			mes "[Blac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Blac]";
			mes "Goblin Leader Mask requires~~";
			next;
			mes "[Blac]";
			mes "1 Red Bandana";
			mes "100 Scell";
			mes "...Did you know this already?";
			close;
	L1_31:
			mes "[Blac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(1038)<500) goto L_ITEM_31;//Items: Little Evil Horn,
			if(countitem(7048)<80) goto L_ITEM_31;//Items: Talon of Griffon,
			if(Zeny < 50000) goto L_ITEM_31;
			mes "[Blac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Horn of Succubus for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 1038,500;//Items: Little Evil Horn,
			delitem 7048,80;//Items: Talon of Griffon,
			set Zeny,Zeny-50000;
			mes "[Blac]";
			mes "Tah Dah!!!^FF0000Horn of Succubus^000000...! Please Take it!";
			getitem 5066,1;//Items: Horns of Succubus,
			next;
			mes "[Blac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_31:
			mes "[Blac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Blac]";
			mes "Horn of Succubus requires~~";
			next;
			mes "[Blac]";
			mes "500 Little Evil Horn";
			mes "80 Talon of Gryphon";
			mes "50,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_32:
			mes "[Blac]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(1038)<500) goto L_ITEM_32;//Items: Little Evil Horn,
			if(countitem(7048)<80) goto L_ITEM_32;//Items: Talon of Griffon,
			if(Zeny < 50000) goto L_ITEM_32;
			mes "[Blac]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Horn of Incubus for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 1038,500;//Items: Little Evil Horn,
			delitem 7048,80;//Items: Talon of Griffon,
			set Zeny,Zeny-50000;
			mes "[Blac]";
			mes "Tah Dah!!!^FF0000Horn of Incubus^000000...! Please Take it!";
			getitem 5072,1;//Items: Horns Of Incubus,
			next;
			mes "[Blac]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_32:
			mes "[Blac]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Blac]";
			mes "Horn of Incubus requires~~";
			next;
			mes "[Blac]";
			mes "500 Little Evil Horn";
			mes "80 Talon of Gryphon";
			mes "50,000 Zeny";
			mes "...Did you know this already?";
			close;
}

prontera.gat,144,172,5	script 	Angel	811,{
	mes "[Angel]";
	mes "Hello.";
	mes "Im the hottest angel in Midgard!";
	mes "What can I do for you?";
	next;
	menu "Hat of Nun",L1_33,"Black Cat Ears",L1_34,"Ribbon of Red Tail",L1_35,"Helm of Orc Hero",L1_36;
	L1_33:
			mes "[Angel]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2261)<1) goto L_ITEM_33;//Items: Army Cap,
			if(countitem(1550)<1) goto L_ITEM_33;//Items: Book,
			if(countitem(2206)<1) goto L_ITEM_33;//Items: Wedding Veil,
			if(countitem(7021)<2) goto L_ITEM_33;//Items: Foolishness of the Blind,
			mes "[Angel]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Hat of Nun for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2261,1;//Items: Army Cap,
			delitem 1550,1;//Items: Book,
			delitem 2206,1;//Items: Wedding Veil,
			delitem 7021,2;//Items: Foolishness of the Blind,
			mes "[Angel]";
			mes "Tah Dah!!!^FF0000Hat of Nun^000000...! Please Take it!";
			getitem 5093,1;//Items: Nun Hat,
			next;
			mes "[Angel]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_33:
			mes "[Angel]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Angel]";
			mes "Hat of Nun requires~~";
			next;
			mes "[Angel]";
			mes "1 Army Cap";
			mes "1 Book";
			mes "1 Wedding Veil";
			mes "2 Foolishness of the Blind";
			mes "...Did you know this already?";
			close;
	L1_34:
			mes "[Angel]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2213)<1) goto L_ITEM_34;//Items: Kitty Band,
			if(countitem(7063)<200) goto L_ITEM_34;//Items: Soft Feather,
			if(countitem(983)<1) goto L_ITEM_34;//Items: Black Dyestuff,
			if(Zeny < 10000) goto L_ITEM_34;
			mes "[Angel]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Black Cat Ears for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2213,1;//Items: Kitty Band,
			delitem 7063,200;//Items: Soft Feather,
			delitem 983,1;//Items: Black Dyestuff,
			set Zeny,Zeny-10000;
			mes "[Angel]";
			mes "Tah Dah!!!^FF0000Black Cat Ears^000000...! Please Take it!";
			getitem 5057,1;//Items: Black Cat Ears,
			next;
			mes "[Angel]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_34:
			mes "[Angel]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Angel]";
			mes "Black Cat Ears require~~";
			next;
			mes "[Angel]";
			mes "1 Kitty Band";
			mes "200 Soft Feather";
			mes "1 Black Dyestuffs";
			mes "10,000 Zeny";
			mes "...Did you know this already?";
			close;
	L1_35:
			mes "[Angel]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(2244)<1) goto L_ITEM_35;//Items: Big Ribbon,
			if(countitem(2209)<1) goto L_ITEM_35;//Items: Ribbon,
			if(countitem(10007)<1) goto L_ITEM_35;//Items: Silk Ribbon,
			mes "[Angel]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Ribbon of Red Tail for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 2244,1;//Items: Big Ribbon,
			delitem 2209,1;//Items: Ribbon,
			delitem 10007,1;//Items: Silk Ribbon,
			mes "[Angel]";
			mes "Tah Dah!!!^FF0000Ribbon of Red Tail^000000...! Please Take it!";
			getitem 5083,1;//Items: Back Ribbon,
			next;
			mes "[Angel]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_35:
			mes "[Angel]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Angel]";
			mes "Ribbon of Red Tail requires~~";
			next;
			mes "[Angel]";
			mes "1 Big Ribbon";
			mes "1 Slotted Ribbon";
			mes "1 Silk Ribbon";
			mes "...Did you know this already?";
			close;
	L1_36:
			mes "[Angel]";
			mes "Let me check the items you have brought here.";
			next;
			if(countitem(7069)<350) goto L_ITEM_36;//Items: Destroyed Armor,
			if(countitem(5006)<1) goto L_ITEM_36;//Items: Machoman's Glasses,
			if(countitem(2202)<1) goto L_ITEM_36;//Items: Sunglasses,
			if(countitem(5047)<1) goto L_ITEM_36;//Items: Fashion Sunglasses,
			if(countitem(2242)<1) goto L_ITEM_36;//Items: Purple Glasses,
			if(countitem(7098)<100) goto L_ITEM_36;//Items: Fire Seed,
			if(Zeny < 1000000) goto L_ITEM_36;
			mes "[Angel]";
			mes "Wow!! Well done! Finally you have gathered all items needed!";
			mes "We will make the Helm of Orc Hero for you right away.";
			mes "Please Wait a Moment.";
   			next;
			delitem 7069,350;//Items: Destroyed Armor,
			delitem 5006,1;//Items: Machoman's Glasses,
			delitem 2202,1;//Items: Sunglasses,
			delitem 5047,1;//Items: Fashion Sunglasses,
			delitem 2242,1;//Items: Purple Glasses,
			delitem 7098,100;//Items: Fire Seed,
			set Zeny,Zeny-1000000;
			mes "[Angel]";
			mes "Tah Dah!!!^FF0000Helm of Orc Hero^000000...! Please Take it!";
			getitem 5094,1;//Items: Orc Hero Helm,
			next;
			mes "[Angel]";
			mes "I liked that, I look forward to making more.";
			mes "Thank you.";
			close;
		L_ITEM_36:
			mes "[Angel]";
			mes "Oh you already know what I create!";
			mes "Ha ha!!";
			mes "Hum~~ tell me where did you heard";
			mes "about this?";
			next;
			mes "[Angel]";
			mes "Helm of Orc Hero requires~~";
			next;
			mes "[Angel]";
			mes "350 Broken Armor Piece";
			mes "1 Machoman's Glasses";
			mes "1 Slotted Sunglasses";
			mes "1 Fashion Sunglasses";
			mes "1 Purple Glasses";
			mes "100 Fire Seed";
			mes "1,000,000 Zeny";
			mes "...Did you know this already?";
			close;
}