ironcane.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //===== eAthena Script =======================================
  2. //= Quest For Iron Cain
  3. //===== By: ==================================================
  4. //= eA Dev Team
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= eAthena 1.0
  9. //===== Description: =========================================
  10. //= Iron Cain (lower part of a full helmet)
  11. //===== Additional Comments: =================================
  12. //= 1.1 Fixed exploit [Lupus]
  13. //============================================================
  14. payon,109,118,5 script Iron Cain Quest 76,{
  15. mes "[Iron Cain Quest]";
  16. mes "Here's what you need";
  17. mes "The requirements, should you be brave enough to collect them, are:";
  18. mes "- 200 Orcish vouchers";
  19. mes "- 1 Heroic Emblem";
  20. next;
  21. mes "[Iron Cain Quest]";
  22. mes "Are you ready for me to make this special item?";
  23. next;
  24. menu "Sure am!",-, "The requirements are unfathomable!",L_Unfathomable;
  25. mes "[Iron Cain Quest]";
  26. if(countitem(931) < 200 || countitem(968) < 1) goto L_NotEnough;
  27. delitem 931,200;
  28. delitem 968,1;
  29. mes "Wow! You are brave indeed!";
  30. next;
  31. mes "[Iron Cain Quest]";
  32. mes "Enjoy!";
  33. getitem 2266,1;
  34. close;
  35. L_NotEnough:
  36. mes ". . .I'm sorry. You don't have enough money and items.";
  37. mes "I can't afford to make this if you don't bring all materials needed.";
  38. mes "Please understand this is to benefit heroes such as yourself!";
  39. close;
  40. L_Unfathomable:
  41. mes "[Iron Cain Quest]";
  42. mes "What I had to go through was more unfathomable..";
  43. mes "If you succeed in getting these items, you will have incredible strength!";
  44. close;
  45. }