quests_morocc.txt 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //===== eAthena Script =======================================
  2. //= Quest NPCs related to Morroc
  3. //===== By: ==================================================
  4. //= kobra_k88
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //= Stop Post and Binoculars Quest.
  11. //===== Additional Comments: =================================
  12. //= 1.1 Fixed exploits [Lupus]
  13. //============================================================
  14. //==================================================================================//
  15. // Stop Post Quest
  16. //==================================================================================//
  17. morocc_in.gat,142,100,4 script William 89,{
  18. mes "[William]";
  19. mes "Welcome to MacMillan's ^3355FF'Post'^000000 Workshop .";
  20. next;
  21. mes "[William]";
  22. mes "My Clan, MacMillan, Has been producing professional grade Traffic Signal Posts for more than 250 years.";
  23. mes "Nowadays we are taking special orders for our very unique, ^3355FF'Stop Post'^000000.";
  24. next;
  25. menu "Could I order a ^3355FF'Stop Post'^000000?",-, "I'm not interested.",M_End;
  26. mes "[William]";
  27. mes "MacMillan's one of a kind ^3355FF'Stop Post'^000000 fits comfortably on a persons head.";
  28. mes "Not only does it make an interesting head accessory, but it can actually be used as a stop sign as well.";
  29. next;
  30. mes "[William]";
  31. mes "I garauntee that our ^3355FF'Stop Post'^000000 will last for well over 100 years, or my name isn't MacMillan!!";
  32. next;
  33. mes "[William]";
  34. mes "For us to make you a ^3355FF'Stop Post'^000000, we will need:";
  35. mes "^3355FF91100 Zeny,";
  36. mes "50 Trunks,";
  37. mes "and 1 Black Dyestuff^000000.";
  38. next;
  39. if(countitem(1019) >= 50 && countitem(983) >= 1 && Zeny >= 91100) goto sL_GetPost;
  40. mes "[William]";
  41. mes "Come back when you have all of the items.";
  42. close;
  43. sL_GetPost:
  44. delitem 1019,50;
  45. delitem 983,1;
  46. set Zeny, Zeny - 91100;
  47. mes "[William]";
  48. mes "Here you are! A hand made, one of a kind, ^3355FF'Stop Post '^000000! Thank you for your patronage!";
  49. getitem 2272,1;
  50. emotion e_thx;
  51. close;
  52. M_End:
  53. mes "[William]";
  54. mes "Thanks for stopping by the MacMillan's Workshop. I hope to see you soon.";
  55. close;
  56. }
  57. //==================================================================================//
  58. // Binoculars Quest
  59. //==================================================================================//
  60. morocc_in.gat,76,163,4 script Alchemist 64,{
  61. mes "[Marius]";
  62. mes "Howdy! A new customer........ Wait!!! I know what you're here for....... You're interested in those magical goggles aren't you?";
  63. next;
  64. menu "What is that ?",-, "Make",M_Make, "Ignore him",M_End;
  65. mes "[Marius]";
  66. mes "It is actually called ^3355FF'Binoculars'^000000! It is an opitcal device that allows the wearer to see far away objects.";
  67. next;
  68. mes "[Marius]";
  69. mes "You see, when two lens are placed next to each other in front of your eyes, your brain interperets this image........ blah blah...... blah....";
  70. next;
  71. mes "[Marius]";
  72. mes "............... What's this? You don't seem interested in what I have to say?? I don't think you realize what I'm talking about!";
  73. emotion e_hmm;
  74. next;
  75. mes "[Marius]";
  76. mes "For us to make you a ^3355FF'Binoculars'^000000, we will need:";
  77. mes "^3355FF50,000 Zeny,";
  78. mes "100 Steel,";
  79. mes "and 1 Geek Glasses.^000000.";
  80. next;
  81. mes "[Marius]";
  82. mes "Oh c'mon! Don't be a jerk! What I'm talking about is REALLY COOL!!";
  83. close;
  84. M_Make:
  85. mes "[Marius]";
  86. if(countitem(2243) < 1 || countitem(999) < 100 || Zeny < 50000) goto sL_NotEnuf;
  87. delitem 2243,1;
  88. delitem 999,100;
  89. set Zeny, Zeny - 50000;
  90. mes "Gr~~~~eat ! You'll definitely enjoy a pair of these!";
  91. next;
  92. mes "[Marius]";
  93. mes "Here it is ! The Binoculars!";
  94. getitem 2296,1;
  95. next;
  96. mes "[Marius]";
  97. mes "But before you go out and use them I have to tell you......";
  98. if(sex==0) mes "DON'T USE THEM TO BE A PEEPING TOM!!!";
  99. if(sex==1) mes "Becarefull where you look..... you might see someting you didn't want to........";
  100. close;
  101. sL_NotEnuf:
  102. mes "Argggghhhhhhh !! You didn't bring enough items!! You need:";
  103. mes "^3355FF1 pair of Geek Glasses, 50,000 Zeny and 100 Steel^000000.";
  104. emotion e_an;
  105. close;
  106. M_End:
  107. mes "[Marius]";
  108. mes "Hey you! You DARE IGNORE ME!! I am MARIUS the alchemist of ALCHEMISTS!!!!!";
  109. emotion e_omg;
  110. close;
  111. }