1 | //This quest is custom. Don't use it. |
---|
2 | |
---|
3 | geffen,115,107,5 script Lord Kaho's Servant 61,{ |
---|
4 | mes "[Lord Kaho's Servant]"; |
---|
5 | mes "I worked myself to death trying to fulfill Lord Kaho's ridiculous expectations for a headgear!"; |
---|
6 | mes "Now that I've finally found the formula for the perfect headgear, I'm willing to share my time and talents"; |
---|
7 | next; |
---|
8 | mes "You need the following to get the Kaho horns!"; |
---|
9 | mes "3 emperiums"; |
---|
10 | mes "Oh yea... i also forgot to mention these X_X"; |
---|
11 | next; |
---|
12 | mes "1 Skull - From Dark Lord"; |
---|
13 | mes "1 Heroic Emblem - From Orc Hero"; |
---|
14 | mes "1 Evil Horn - From Baphomet"; |
---|
15 | mes "1 Red Frame - From Doppelganger"; |
---|
16 | mes "1 Smoking Pipe - From Eddga"; |
---|
17 | mes "1 Fang of Garm - From Garm"; |
---|
18 | mes "1 Mother's Nightmare - From Maya"; |
---|
19 | mes "1 Sphynx Hat - from Osiris"; |
---|
20 | mes "1 Diamond Ring - from Mistress"; |
---|
21 | next; |
---|
22 | mes "Were' not done yet sweety..."; |
---|
23 | mes "Im a big fan of dolls, so you need to bring me these cuties"; |
---|
24 | mes "1 Poring Doll - a Poring drop"; |
---|
25 | mes "1 Chonchon Doll - a Chonchon Drop"; |
---|
26 | mes "1 Baphomet Doll - a Baphomet drop"; |
---|
27 | mes "1 Osiris Doll - an Osiris drop"; |
---|
28 | mes "1 Rocker Doll - a Rocker drop"; |
---|
29 | mes "1 Apez Fanitem Doll - a Yoyo drop"; |
---|
30 | mes "1 Racoon Doll - a Smokie drop"; |
---|
31 | mes "1 Spore Doll - a Spore drop"; |
---|
32 | next; |
---|
33 | mes "Finally, i worked hard to make these horns for my master with all the mentioned items above..."; |
---|
34 | mes "Please include 5 million zeny for my efforts."; |
---|
35 | next; |
---|
36 | mes "[Lord Kaho's Servant]"; |
---|
37 | mes ". . . . . ."; |
---|
38 | mes "Are you ready for me to make this special item?"; |
---|
39 | next; |
---|
40 | menu "Sure am!",-,"These requirements are unfathomable!",LUnfathomable; |
---|
41 | |
---|
42 | mes "[Lord Kaho's Servant]"; |
---|
43 | if(countitem(754) < 1 || countitem(753) < 1 || countitem(752) < 1 || countitem(751) < 1 || countitem(750) < 1 |
---|
44 | || countitem(743) < 1 || countitem(742) < 1 || countitem(741) < 1 || countitem(2613) < 1 |
---|
45 | || countitem(5053) < 1 || countitem(7020) < 1 || countitem(7036) < 1 || countitem(2268) < 1 |
---|
46 | || countitem(734) < 1 || countitem(923) < 1 || countitem(968) < 1 || countitem(7005) < 1 |
---|
47 | || countitem(714) < 3 || Zeny < 5000000) goto LNotEnough; |
---|
48 | delitem 754,1; |
---|
49 | delitem 753,1; |
---|
50 | delitem 752,1; |
---|
51 | delitem 751,1; |
---|
52 | delitem 750,1; |
---|
53 | delitem 743,1; |
---|
54 | delitem 742,1; |
---|
55 | delitem 741,1; |
---|
56 | delitem 2613,1; |
---|
57 | delitem 5053,1; |
---|
58 | delitem 7020,1; |
---|
59 | delitem 7036,1; |
---|
60 | delitem 2268,1; |
---|
61 | delitem 734,1; |
---|
62 | delitem 923,1; |
---|
63 | delitem 968,1; |
---|
64 | delitem 7005,1; |
---|
65 | delitem 714,3; |
---|
66 | set Zeny,Zeny-5000000; |
---|
67 | mes "Wow! You are brave indeed!"; |
---|
68 | getitem 5013,1; |
---|
69 | mes ". . . . ."; |
---|
70 | mes "Enjoy being God of Rune Midgard!"; |
---|
71 | close; |
---|
72 | |
---|
73 | LNotEnough: |
---|
74 | mes ". . . . ."; |
---|
75 | mes ". . .I'm sorry .. You don't have enough money and items .."; |
---|
76 | mes "I can't afford to make this if you don't bring all materials needed. Please understand this is to benefit heroes such as yourself!"; |
---|
77 | close; |
---|
78 | |
---|
79 | LUnfathomable: |
---|
80 | mes ". . . . ."; |
---|
81 | mes "What I had to go through was more unfathomable.."; |
---|
82 | mes "If you succeed in getting these items, you will have incredible strength!"; |
---|
83 | close; |
---|
84 | } |
---|