alchemist_skills.txt 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //===== eAthena Script =======================================
  2. //= Blacksmith Skills Quests
  3. //===== By: ==================================================
  4. //= Lupus, Reddozen
  5. //===== Current Version: =====================================
  6. //= 1.3a
  7. //===== Compatible With: =====================================
  8. //= eAthena Revision 3800+
  9. //===== Description: =========================================
  10. //= Temp quests for new skills for 2nd classes
  11. //===== Additional Comments: =================================
  12. //= 1.0 for fully working skills only [Lupus]
  13. //= 1.1 Added more new skill quests for more classes [Lupus]
  14. //= Somehow eA engine doesn't let you keep learn't skill V_V'
  15. //= 1.2 Added to correct locations, correct NPC's, fixed
  16. //= some of the items required and made them into real
  17. //= quests. [Reddozen]
  18. //= 1.3 Fixed bugs and minor typos. Optimized [Lupus]
  19. //= 1.3a fixed an item ID typo, thx 2Spiritual Kid
  20. //= 1.3b Splitted into different files [DracoRPG]
  21. //============================================================
  22. //============================================================
  23. // ALCHEMIST - ELEMENTAL POTION CREATION
  24. //============================================================
  25. yuno_in04.gat,33,108,5 script Pislik 750,{
  26. mes "[Pislik]";
  27. if(BaseJob!=Job_Alchem) goto L_noalche;
  28. if(countitem(7434)) goto L_alreadyhave;//Items: Elemental_Potion_Creation_Guide,
  29. if(JobLevel<40) goto L_nojob;
  30. mes "I'll teach you all I know, but";
  31. mes "you have to bring me some things";
  32. mes "first.";
  33. mes "5 Yellow Gemstones";
  34. mes "4 Empty Potion Bottles";
  35. mes "10 Hearts of Mermaid";
  36. mes "10 Moth Dust";
  37. mes "20 Maneater Blossoms";
  38. mes "1 Geek Glasses";
  39. next;
  40. mes "[Pislik]";
  41. mes "Let me check your items.";
  42. next;
  43. if(countitem(715)<5 || countitem(1093)<4 || countitem(950)<10 || countitem(1057)<10 || countitem(1032)<20 || countitem(2243)<1) goto L_noitems;//Items: Yellow_Gemstone, Empty_Potion_Bottle, Heart_of_Mermaid, Moth_Dust, Maneater_Blossom, Geek_Glasses,
  44. delitem 715, 5;//Items: Yellow_Gemstone,
  45. delitem 1093, 4;//Items: Empty_Potion_Bottle,
  46. delitem 950, 10;//Items: Heart_of_Mermaid,
  47. delitem 1057, 10;//Items: Moth_Dust,
  48. delitem 1032, 20;//Items: Maneater_Blossom,
  49. delitem 2243, 1;//Items: Geek_Glasses,
  50. getitem 7434, 1;//Items: Elemental_Potion_Creation_Guide,
  51. mes "[Pislik]";
  52. mes "I see you have what you need,";
  53. mes "so I'll give you my manual.";
  54. close;
  55. L_noitems:
  56. mes "[Pislik]";
  57. mes "You don't have enough items.";
  58. mes "Come back when you have all";
  59. mes "the required items for me.";
  60. close;
  61. L_noalche:
  62. mes "Sorry, but my knowledge is only about alchemy.";
  63. mes "I can't help you.";
  64. emotion e_gasp;
  65. close;
  66. L_alreadyhave:
  67. mes "I've already given you";
  68. mes "my Elemental Potion Creation Guide...";
  69. close;
  70. L_nojob:
  71. mes "Come back when you've learned";
  72. mes "more about being an Alchemist.";
  73. close;
  74. }