quests_lutie.txt 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. //===== eAthena Script =======================================
  2. //= Item Quest NPCs located in Lutie
  3. //===== By: ==================================================
  4. //= TonyMan
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= eAthena 1.0
  9. //===== Description: =========================================
  10. //= Blush, Cake Hat, Candle, Chef Hat, Raccoon Hat, Rainbow Eggshell,
  11. //= Spore Hat, Wonder Nutshell Quests
  12. //===== Additional Comments: =================================
  13. //=
  14. //============================================================
  15. xmas.gat,117,295,3 script Titicupe 704,{
  16. mes "[^469ED2Titicupe^000000]";
  17. mes "I am the well known ^27BEB7Vending Machine Man Titicupe^000000, I am also a Wizard of the great ^9A3CA2Geffen Mage Guild^000000. I can use my special magic to make some rare items, but I need ingridients. Choose an item you want.";
  18. next;
  19. menu "Blush", blush,"Cake Hat",cake_hat,"Candle",candle,"Chef Hat",chef_hat,"Raccoon Hat",raccoon_hat,"Rainbow Eggshell",rainbow_egg,"Spore Hat",spore_hat,"Wonder Nutshell",wonder_nut,"Cancel",cancel;
  20. blush:
  21. mes "[^469ED2Titicupe^000000]";
  22. mes "Hmm... spell ingridients are...";
  23. mes "100 Alice's Apron";
  24. next;
  25. menu "Here. Now do your magic!",make_blush,"Cancel",cancel;
  26. make_blush:
  27. if(countitem(7047)<100) goto fail;
  28. mes "[^469ED2Titicupe^000000]";
  29. mes "^4599A3Abra ^66A73FKa ^C7A82EDabra, ^64826BSim ^E9239ESa ^B7EB01La ^8080C0Bim^000000!! ^45A8C9*poof*^000000 I succeeded! Here take this ^D6294BBlush^000000, it's yours.";
  30. delitem 7047,100;
  31. getitem 5040,1;
  32. close;
  33. cake_hat:
  34. mes "[^469ED2Titicupe^000000]";
  35. mes "Hmm... spell ingridients are...";
  36. mes "10 Candy";
  37. mes "5 Candy Cane";
  38. mes "20 Piece of Cake";
  39. mes "10 Steel";
  40. mes "15 Well-baked Cookie";
  41. next;
  42. menu "Here. Now do your magic!",make_cake_hat,"Cancel",cancel;
  43. make_cake_hat:
  44. if((countitem(529)<10) || (countitem(530)<5) || (countitem(539)<20) || (countitem(999)<10) || (countitem(538)<15)) goto fail;
  45. mes "[^469ED2Titicupe^000000]";
  46. mes "^4599A3Abra ^66A73FKa ^C7A82EDabra, ^64826BSim ^E9239ESa ^B7EB01La ^8080C0Bim^000000!! ^45A8C9*poof*^000000 I succeeded! Here take this ^BD3CBACake Hat^000000, it's yours.";
  47. delitem 529,10;
  48. delitem 530,5;
  49. delitem 539,20;
  50. delitem 999,10;
  51. delitem 538,15;
  52. getitem 5024,1;
  53. close;
  54. candle:
  55. mes "[^469ED2Titicupe^000000]";
  56. mes "Hmm... spell ingridients are...";
  57. mes "1 Bomb Wick";
  58. mes "50 Matchstick";
  59. mes "100 Royal Jelly";
  60. next;
  61. menu "Here. Now do your magic!",make_candle,"Cancel",cancel;
  62. make_candle:
  63. if((countitem(2279)<1) || (countitem(7035)<50) || (countitem(526)<100)) goto fail;
  64. mes "[^469ED2Titicupe^000000]";
  65. mes "^4599A3Abra ^66A73FKa ^C7A82EDabra, ^64826BSim ^E9239ESa ^B7EB01La ^8080C0Bim^000000!! ^45A8C9*poof*^000000 I succeeded! Here take this ^BD3CBACandle^000000, it's yours.";
  66. delitem 2279,1;
  67. delitem 7035,50;
  68. delitem 526,100;
  69. getitem 5028,1;
  70. close;
  71. chef_hat:
  72. mes "[^469ED2Titicupe^000000]";
  73. mes "Hmm... spell ingridients are...";
  74. mes "450 Dragon Scale";
  75. mes "300 Feather";
  76. mes "120 Piece of Cake";
  77. mes " 1 White Dyestuffs";
  78. next;
  79. menu "Here. Now do your magic!",make_chef_hat,"Cancel",cancel;
  80. make_chef_hat:
  81. if((countitem(1036)<450) || (countitem(949)<300) || (countitem(539)<120) || (countitem(982)<1)) goto fail;
  82. mes "[^469ED2Titicupe^000000]";
  83. mes "^4599A3Abra ^66A73FKa ^C7A82EDabra, ^64826BSim ^E9239ESa ^B7EB01La ^8080C0Bim^000000!! ^45A8C9*poof*^000000 I succeeded! Here take this ^BD3CBAChef Hat^000000, it's yours.";
  84. delitem 1036,450;
  85. delitem 949,300;
  86. delitem 539,120;
  87. delitem 982,1;
  88. getitem 5026,1;
  89. close;
  90. raccoon_hat:
  91. mes "[^469ED2Titicupe^000000]";
  92. mes "Hmm... spell ingridients are...";
  93. mes "20 Dragon Scale";
  94. mes "1 Kitty Band";
  95. mes "300 Sea-otter Fur";
  96. mes "200 Tough Scalelike Stem";
  97. next;
  98. menu "Here. Now do your magic!",make_raccoon_hat,"Cancel",cancel;
  99. make_raccoon_hat:
  100. if((countitem(1036)<20) || (countitem(2213)<1) || (countitem(7065)<300) || (countitem(7012)<200)) goto fail;
  101. mes "[^469ED2Titicupe^000000]";
  102. mes "^4599A3Abra ^66A73FKa ^C7A82EDabra, ^64826BSim ^E9239ESa ^B7EB01La ^8080C0Bim^000000!! ^45A8C9*poof*^000000 I succeeded! Here take this ^7D4E31Raccoon Hat^000000, it's yours.";
  103. delitem 1036,20;
  104. delitem 2213,1;
  105. delitem 7065,300;
  106. delitem 7012,200;
  107. getitem 5033,1;
  108. close;
  109. rainbow_egg:
  110. mes "[^469ED2Titicupe^000000]";
  111. mes "Hmm... spell ingridients are...";
  112. mes "50 Claw of Desert Wolf";
  113. mes "1 Cobaltblue Dyestuffs";
  114. mes "1 Egg Shell";
  115. next;
  116. menu "Here. Now do your magic!",make_rainbow_egg,"Cancel",cancel;
  117. make_rainbow_egg:
  118. if((countitem(7030)<50) || (countitem(978)<1) || (countitem(5015)<1)) goto fail;
  119. mes "[^469ED2Titicupe^000000]";
  120. mes "^4599A3Abra ^66A73FKa ^C7A82EDabra, ^64826BSim ^E9239ESa ^B7EB01La ^8080C0Bim^000000!! ^45A8C9*poof*^000000 I succeeded! Here take this ^8D4178Rainbow Egg^000000, it's yours.";
  121. delitem 7030,50;
  122. delitem 978,1;
  123. delitem 5015,1;
  124. getitem 5039,1;
  125. close;
  126. spore_hat:
  127. mes "[^469ED2Titicupe^000000]";
  128. mes "Hmm... spell ingridients are...";
  129. mes "300 Burnt Tree";
  130. mes "850 Poison Spore";
  131. mes "1 Tongue";
  132. next;
  133. menu "Here. Now do your magic!",make_spore_hat,"Cancel",cancel;
  134. make_spore_hat:
  135. if((countitem(7068)<300) || (countitem(7033)<850) || (countitem(1015)<1)) goto fail;
  136. mes "[^469ED2Titicupe^000000]";
  137. mes "^4599A3Abra ^66A73FKa ^C7A82EDabra, ^64826BSim ^E9239ESa ^B7EB01La ^8080C0Bim^000000!! ^45A8C9*poof*^000000 I succeeded! Here take this ^7D4E31Raccoon Hat^000000, it's yours.";
  138. delitem 7068,300;
  139. delitem 7033,850;
  140. delitem 1015,1;
  141. getitem 5029,1;
  142. close;
  143. wonder_nut:
  144. mes "[^469ED2Titicupe^000000]";
  145. mes "Hmm... spell ingridients are...";
  146. mes "1 Nut Shell";
  147. mes "500 Wing of Dragonfly";
  148. next;
  149. menu "Here. Now do your magic!",make_wonder_nut,"Cancel",cancel;
  150. make_wonder_nut:
  151. if((countitem(5037)<1) || (countitem(7064)<500)) goto fail;
  152. mes "[^469ED2Titicupe^000000]";
  153. mes "^4599A3Abra ^66A73FKa ^C7A82EDabra, ^64826BSim ^E9239ESa ^B7EB01La ^8080C0Bim^000000!! ^45A8C9*poof*^000000 I succeeded! Here take this ^7D4E31Raccoon Hat^000000, it's yours.";
  154. delitem 5037,1;
  155. delitem 7064,500;
  156. getitem 5050,1;
  157. close;
  158. cancel:
  159. mes "[^469ED2Titicupe^000000]";
  160. mes "I bid you farewell, try not to catch a cold out here. It's ^5A9FD8freezing out here!^000000";
  161. close;
  162. fail:
  163. mes "[^469ED2Titicupe^000000]";
  164. mes "I can't cast since you don't seem to have all I need...";
  165. close;
  166. }