quests_aldebaran.txt 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. //===== eAthena Script =======================================
  2. //= Item Quest NPCs located in Aldebaran
  3. //===== By: ==================================================
  4. //=
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //= 'Doctor Band', 'Feather Bonnet', 'Opera Masque', 'Sakkat Hat' Quests.
  11. //===== Additional Comments: =================================
  12. //= Fully working
  13. //= 1.1 Fixed Doctor Band items [Lupus]
  14. //============================================================
  15. //=======================================================================================================//
  16. // 'Doctor Band', 'Feather Bonnet', 'Opera Masque', 'Sakkat Hat' Quest
  17. //=======================================================================================================//
  18. aldeba_in.gat,152,166,4 script Trader 86,{
  19. mes "[Trader]";
  20. mes "Muhahaha! I am the Very Famous Enigmatic Dealer! I am always hustling and bustling in and out of Rune Midgard!";
  21. mes "Take a look at my RARE and UNIQUE items from ALL OVER the WORLD!!";
  22. next;
  23. mes "(1) · ^3355FFDoctor Band^000000 :";
  24. mes "^FF55331 Red Bandana + 50 Iron + 1 Cracked Diamond + 3500 Zeny^000000.";
  25. mes "(2) · ^3355FFFeather Bonnet^000000 :";
  26. mes "^FF55331 Romantic Gent + 300 Feather of Birds + 500 Zeny^000000.";
  27. mes "(3) · ^3355FFOpera Masque^000000 :";
  28. mes "^FF553320 Iron + 1 Singing Plant + 5000 Zeny^000000.";
  29. mes "(4) · ^3355FFSakkat Hat^000000 :";
  30. mes "^FF5533120 Trunk + 10000 Zeny^000000.";
  31. next;
  32. menu "Doctor Band",-, "Feather Bonnet",M_1, "Opera Masque",M_2, "Sakkat",M_3;
  33. mes "[Trader]";
  34. if(countitem(2275) == 0 || countitem(998) < 50 || countitem(733) == 0 || Zeny < 3500) goto L_CantMake;
  35. delitem 2275,1;//Items: Red Bandana,
  36. delitem 998,50;//Items: Iron,
  37. delitem 733,1;//Items: Cracked deamond
  38. set Zeny,Zeny - 3500;
  39. mes "Hmm.... Do you have a.... MEDICAL LICENSE?!";
  40. emotion e_what;
  41. next;
  42. mes "[Trader]";
  43. mes "I've heard about a well-known unlicensed physician 'Cuwaki'... I hope you don't get caught....";
  44. mes "Anyways it's your own buisness what you do... Take this.";
  45. getitem 2273,1;//Items: Doctor Band,
  46. close;
  47. M_1:
  48. mes "[Trader]";
  49. if(countitem(2247) == 0 || countitem(916) < 300 || Zeny < 500) goto L_CantMake;//Items: Romantic Gent, Feather of Birds,
  50. delitem 2247,1;//Items: Romantic Gent,
  51. delitem 916,300;//Items: Feather of Birds,
  52. set Zeny,Zeny - 500;
  53. mes "Umhahaha. You have good fashion sense. I know you had a hard time collecting these items, but this bonnet is definately worth it. Take it.";
  54. emotion e_heh;
  55. getitem 5018,1;//Items: Feather Bonnet,
  56. close;
  57. M_2:
  58. mes "[Trader]";
  59. if(countitem(998) < 20 || countitem(707) == 0 || Zeny < 5000) goto L_CantMake;//Items: Iron, Singing Plant,
  60. delitem 998,20;//Items: Iron,
  61. delitem 707,1;//Items: Singing Plant,
  62. set Zeny,Zeny - 5000;
  63. mes "This is a pretty nice item. A little bit creepy looking though.... I think it gives off some kinda weird vibe. What do you think?";
  64. next;
  65. mes "[Trader]";
  66. mes ".. You like it ..Alright.. Take it!";
  67. getitem 2281,1;//Items: Opera Masque,
  68. close;
  69. M_3:
  70. mes "[Trader]";
  71. if(countitem(1019) < 120 || Zeny < 10000) goto L_CantMake;//Items: Trunk,
  72. delitem 1019,120;//Items: Trunk,
  73. set Zeny,Zeny - 10000;
  74. mes "If you have a chance to visit the Village of Payon, please go meet the Sakkat Craftsman.";
  75. mes "He's never sold a Sakkat to any other dealer but to me.";
  76. next;
  77. mes "[Trader]";
  78. mes "Because only I can recognize a Sakkat hats' quality. Due to the fact that it's so rare, the Sakkat Hat has become a very popular item!";
  79. next;
  80. mes "[Trader]";
  81. mes "OK! Take it!";
  82. getitem 2280,1;//Items: Sakkat,
  83. close;
  84. L_CantMake:
  85. mes "You, fool! Check the requirements again..... you're not some kinda idiot are you? C'mon..... give me a break.";
  86. emotion e_an;
  87. close;
  88. }