kahohorn.txt 2.9 KB

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