fox_mask.txt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //===== eAthena Script =======================================
  2. //= Fox Mask Quest
  3. //===== By: ==================================================
  4. //= KitsuneStarWind (1.0)
  5. //= Mass Zero (1.1)
  6. //===== Current Version: =====================================
  7. //= 1.2a
  8. //===== Compatible With: =====================================
  9. //= Any eAthena version.
  10. //===== Description: =========================================
  11. // Seperate quest for the Fox Mask.
  12. //===== Additional Comments: =================================
  13. // 1.2a optimized [Lupus]
  14. //============================================================
  15. pay_dun04.gat,204,152,2 script Nine Tail 1180,{
  16. mes "[Nine Tail]";
  17. mes "What do you want?";
  18. next;
  19. mes "[Nine Tail]";
  20. mes "Have you come here for a ^FF3300 Fox Mask^000000?";
  21. next;
  22. menu "Yeah, Sure.",-,"No",M_EXIT;
  23. mes "[Nine Tail]";
  24. mes "Fine then. If I make one for you, will you go away?";
  25. mes "You realize that it requires 999 Nine Tails to make, do you?";
  26. next;
  27. menu "Sure.",M_MAKE,"Nah.",-;
  28. mes "[Nine Tail]";
  29. mes "Grrrr... I'll make one anyway but I hope my master gets you.";
  30. next;
  31. M_MAKE:
  32. mes "[Nine Tail]";
  33. mes "Ok then, I shall make one for you.";
  34. next;
  35. if(countitem(1022) < 999) goto L_NOITEM;//Items: Nine Tails,
  36. delitem 1022,999;//Items: Nine Tails,
  37. getitem 5069,1;//Items: Fox Mask,
  38. mes "[Nine Tails]";
  39. mes "Have fun.";
  40. close;
  41. L_NOITEM:
  42. mes "[Nine Tail]";
  43. mes "You do not have have enough Nine Tails.";
  44. mes "You need 999 of them.";
  45. close;
  46. M_EXIT:
  47. mes "[Nine Tail]";
  48. mes "Then leave me alone... I am waiting for my master.";
  49. close;
  50. }