mask_of_alarm.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //===== eAthena Script =======================================
  2. //= Mask of Alarm Quest
  3. //===== By: ==================================================
  4. //= Halca (1.0)
  5. //= Mass Zero (1.1)
  6. //===== Current Version: =====================================
  7. //= 1.4a
  8. //===== Compatible With: =====================================
  9. //= Any eAthena Version.
  10. //===== Description: =========================================
  11. //= Seperate Alarm Mask quest.
  12. //===== Additional Comments: =================================
  13. //= 1.2 Fixed wrong labels, added missing text and labels,
  14. //= changed Zeny amount, fixed wrong item ID [Lupus]
  15. //= 1.3 Fixed possible exploit [Lupus]
  16. //= 1.4 Added correct item list. [shadow] & [Lupus]
  17. //= 1.4a fixed coords [Lupus]
  18. //============================================================
  19. alde_alche.gat,104,171,3 script Muslam 819,{
  20. mes "[Muslam]";
  21. mes "I love Alarms, so evil, just like me.";
  22. mes "Touch me and I will rip your arm off!";
  23. next;
  24. mes "[Muslam]";
  25. mes "Anyways... If you want an Alarm Mask, bring me";
  26. mes "3,000 Clock Hands,";
  27. mes "and 1 Mr. Scream.";
  28. next;
  29. mes "[Muslam]";
  30. mes "Got these?";
  31. next;
  32. menu "Yep!",-,"Nope!",M_EXIT;
  33. if(countitem(1095) < 3000 || countitem(2288) < 1) GOTO L_NOITEM;//Items: Mr Scream,
  34. delitem 1095,3000;//Items: Clock Hand
  35. delitem 2288,1;//Items: Mr Scream
  36. mes "[Muslam]";
  37. mes "Great!";
  38. next;
  39. getitem 5086,1;//Items: Alarm Mask,
  40. mes "[Muslam]";
  41. mes "Enjoy your item!";
  42. close;
  43. L_NOITEM:
  44. mes "[Muslam]";
  45. mes "Where are 3,000 Clock Hands and 1 Mr. Scream?";
  46. close;
  47. M_EXIT:
  48. mes "[Muslam]";
  49. mes "Mkay! byeee.";
  50. close;
  51. }