neris.txt 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. //===== eAthena Script =======================================1
  2. //= Neris (New Hat Quests)
  3. //===== By: ==================================================
  4. //= Halca (1.0)
  5. //= Mass Zero (1.1)
  6. //===== Current Version: =====================================
  7. //= 1.3a
  8. //===== Compatible With: =====================================
  9. //= Any eAthena Version.
  10. //===== Description: =========================================
  11. //= Seperate New Hat quests.
  12. //===== Additional Comments: =================================
  13. //= 1.2 Fixed wrong labels, added missing text [Lupus]
  14. //= 1.3 Fixed possible exploit, 1.3a fixed coords [Lupus]
  15. //= 1.3b Corrected the fixed coords [Zephiris]
  16. //============================================================
  17. yuno_in03.gat,20,18,7 script Neris 806,{
  18. mes "[Neris]";
  19. mes "So, whatcha want then?";
  20. next;
  21. menu "Golden Bells.",-,"Crown of Mistress.",M_COM,"Crown of Ancient Queen.",M_COAQ,"Nothing, thanks.",M_EXIT;
  22. mes "[Neris]";
  23. mes "Hehe, so you are a fan of Sohee's eh?";
  24. mes "Yeah, I guess I like the bell they carry too!";
  25. next;
  26. mes "[Neris]";
  27. mes "Looks pretty cute when you wear it.";
  28. mes "So... what can I do for you?";
  29. next;
  30. menu "Make me Golden Bells!",-,"What do I need to make it?",M_REQL,"Nothing, thanks.",M_EXIT;
  31. if(countitem(10016) < 1 || countitem(714) < 1 || countitem(969) < 3 || Zeny < 1000) GOTO L_NOITEM;//Items: Golden Bell, Emperium, Gold,
  32. delitem 10016,1;//Items: Golden Bell,
  33. delitem 714,1;//Items: Emperium,
  34. delitem 969,3;//Items: Gold,
  35. set Zeny,Zeny-1000;
  36. mes "[Neris]";
  37. mes "Now, lets swap your items.";
  38. next;
  39. getitem 5091,1;//Items: Golden Bells,
  40. mes "[Neris]";
  41. mes "Thanks, and bye!";
  42. close;
  43. M_REQL:
  44. mes "[Neris]";
  45. mes "Okay all these are gold related:";
  46. mes "1 Golden Bell,";
  47. mes "1 Emperium,";
  48. mes "3 Gold,";
  49. mes "1000 Zeny for the labor.";
  50. close;
  51. M_COM:
  52. mes "[Neris]";
  53. mes "You like mistresses?";
  54. next;
  55. mes "[Neris]";
  56. mes "So... what can I do for you?";
  57. next;
  58. menu "Make me the item.",-,"What do I need to make it?",M_REQC,"Nothing, thanks.",M_EXIT;
  59. if(countitem(2249) < 1 || countitem(714) < 1 || countitem(969) < 3 || Zeny < 1000) GOTO L_NOITEM;//Items: Coronet, Emperium, Gold,
  60. delitem 2249,1;//Items: Coronet,
  61. delitem 714,1;//Items: Emperium,
  62. delitem 969,3;//Items: Gold,
  63. set Zeny,Zeny-1000;
  64. mes "[Neris]";
  65. mes "Now, lets swap your items.";
  66. next;
  67. getitem 5081,1;//Items: Crown of Mistress,
  68. mes "[Neris]";
  69. mes "Thanks, and bye!";
  70. close;
  71. M_REQC:
  72. mes "[Neris]";
  73. mes "Okay all these are gold related:";
  74. mes "1 Coronet,";
  75. mes "1 Emperium,";
  76. mes "3 Gold,";
  77. mes "1000 Zeny for the labor.";
  78. close;
  79. M_COAQ:
  80. mes "[Neris]";
  81. mes "You like ancient queens?";
  82. next;
  83. mes "[Neris]";
  84. mes "So.. what can I do for you?";
  85. next;
  86. menu "Make me the item.",-,"What do I need to make it?",M_REQC2,"Nothing, thanks.",M_EXIT;
  87. if(countitem(10006) < 1 || countitem(714) < 1 || countitem(969) < 3 || Zeny < 1000) GOTO L_NOITEM;//Items: Queen's Hair Ornament, Emperium, Gold,
  88. delitem 10006,1;//Items: Queen's Hair Ornament,
  89. delitem 714,1;//Items: Emperium,
  90. delitem 969,3;//Items: Gold,
  91. set Zeny,Zeny-1000;
  92. mes "[Neris]";
  93. mes "Now, lets swap your items";
  94. next;
  95. getitem 5080,1;//Items: Crown of The Ancient Queen,
  96. mes "[Neris]";
  97. mes "Thanks, and bye!";
  98. close;
  99. M_REQC2:
  100. mes "[Neris]";
  101. mes "Okay all these are gold related:";
  102. mes "1 Queen's Hair Ornament,";
  103. mes "1 Emperium,";
  104. mes "3 Gold,";
  105. mes "1000 Zeny for the labor.";
  106. close;
  107. L_NOITEM:
  108. mes "[Neris]";
  109. mes "Don't take me for a fool!";
  110. mes "No items, no deal!";
  111. close;
  112. M_EXIT:
  113. mes "[Neris]";
  114. mes "Bye! Come again.";
  115. close;
  116. }