quests_aldebaran.txt 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //===== eAthena Script =======================================
  2. //= Quest NPCs related to Aldebaran
  3. //===== By: ==================================================
  4. //= eAthena Dev Team
  5. //===== Current Version: =====================================
  6. //= 1.2
  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. //= 1.2 Removed Duplicates [Silent]
  15. //============================================================
  16. //=======================================================================================================//
  17. // 'Doctor Band', 'Feather Bonnet', 'Opera Masque', 'Sakkat Hat' Quest
  18. //=======================================================================================================//
  19. aldeba_in.gat,152,166,4 script Trader#01 86,{
  20. mes "[Trader]";
  21. mes "Muhahaha! I am the Very Famous Enigmatic Dealer! I am always hustling and bustling in and out of Rune Midgard!";
  22. mes "Take a look at my RARE and UNIQUE items from ALL OVER the WORLD!!";
  23. next;
  24. mes "(1) · ^3355FFDoctor Band^000000 :";
  25. mes "^FF55331 Red Bandana + 50 Iron + 1 Cracked Diamond + 3500 Zeny^000000.";
  26. mes "(2) · ^3355FFFeather Bonnet^000000 :";
  27. mes "^FF55331 Romantic Gent + 300 Feather of Birds + 500 Zeny^000000.";
  28. mes "(3) · ^3355FFOpera Masque^000000 :";
  29. mes "^FF553320 Iron + 1 Singing Plant + 5000 Zeny^000000.";
  30. mes "(4) · ^3355FFSakkat Hat^000000 :";
  31. mes "^FF5533120 Trunk + 10000 Zeny^000000.";
  32. next;
  33. menu "Doctor Band",-, "Feather Bonnet",M_1, "Opera Masque",M_2, "Sakkat",M_3;
  34. mes "[Trader]";
  35. if(countitem(2275) == 0 || countitem(998) < 50 || countitem(733) == 0 || Zeny < 3500) goto L_CantMake;
  36. delitem 2275,1;//Items: Red Bandana,
  37. delitem 998,50;//Items: Iron,
  38. delitem 733,1;//Items: Cracked deamond
  39. set Zeny,Zeny - 3500;
  40. mes "Hmm.... Do you have a.... MEDICAL LICENSE?!";
  41. emotion e_what;
  42. next;
  43. mes "[Trader]";
  44. mes "I've heard about a well-known unlicensed physician 'Cuwaki'... I hope you don't get caught....";
  45. mes "Anyways it's your own buisness what you do... Take this.";
  46. getitem 2273,1;//Items: Doctor Band,
  47. close;
  48. M_1:
  49. mes "[Trader]";
  50. if(countitem(2247) == 0 || countitem(916) < 300 || Zeny < 500) goto L_CantMake;//Items: Romantic Gent, Feather of Birds,
  51. delitem 2247,1;//Items: Romantic Gent,
  52. delitem 916,300;//Items: Feather of Birds,
  53. set Zeny,Zeny - 500;
  54. 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.";
  55. emotion e_heh;
  56. getitem 5018,1;//Items: Feather Bonnet,
  57. close;
  58. M_2:
  59. mes "[Trader]";
  60. if(countitem(998) < 20 || countitem(707) == 0 || Zeny < 5000) goto L_CantMake;//Items: Iron, Singing Plant,
  61. delitem 998,20;//Items: Iron,
  62. delitem 707,1;//Items: Singing Plant,
  63. set Zeny,Zeny - 5000;
  64. 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?";
  65. next;
  66. mes "[Trader]";
  67. mes ".. You like it ..Alright.. Take it!";
  68. getitem 2281,1;//Items: Opera Masque,
  69. close;
  70. M_3:
  71. mes "[Trader]";
  72. if(countitem(1019) < 120 || Zeny < 10000) goto L_CantMake;//Items: Trunk,
  73. delitem 1019,120;//Items: Trunk,
  74. set Zeny,Zeny - 10000;
  75. mes "If you have a chance to visit the Village of Payon, please go meet the Sakkat Craftsman.";
  76. mes "He's never sold a Sakkat to any other dealer but to me.";
  77. next;
  78. mes "[Trader]";
  79. 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!";
  80. next;
  81. mes "[Trader]";
  82. mes "OK! Take it!";
  83. getitem 2280,1;//Items: Sakkat,
  84. close;
  85. L_CantMake:
  86. mes "You, fool! Check the requirements again..... you're not some kinda idiot are you? C'mon..... give me a break.";
  87. emotion e_an;
  88. close;
  89. }