bard_skills.txt 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //===== eAthena Script =======================================
  2. //= Bard 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. // BARD - PANG VOICE
  24. //============================================================
  25. prontera.gat,134,328,7 script Timid man 89,{
  26. mes "[Timid man]";
  27. if(BaseJob!=Job_Bard) goto L_nobard;
  28. if(getskilllv(1010)) goto L_alreadyhave;
  29. if(JobLevel<40) goto L_nojob;
  30. mes "I'll teach you all I know, but";
  31. mes "I'm a little thirsty. Bring me";
  32. mes "1 Tropical Sograt";
  33. next;
  34. mes "[Timid man]";
  35. mes "Let me check your items.";
  36. next;
  37. if (countitem(12112)<1) goto L_noitems;//Items: Tropical_Sograt,
  38. delitem 12112, 1;//Items: Tropical_Sograt,
  39. mes "[Timid man]";
  40. mes "I see you have what you need,";
  41. mes "so I'll teach you my talent.";
  42. skill 1010,1,0;
  43. close;
  44. L_noitems:
  45. mes "[Timid man]";
  46. mes "You don't have enough items.";
  47. mes "Come back when you have all";
  48. mes "the required items for me.";
  49. close;
  50. L_nobard:
  51. mes "Hum... you don't seem to be a musician";
  52. emotion e_gasp;
  53. close;
  54. L_alreadyhave:
  55. mes "I've already taught you";
  56. mes "everything I know...";
  57. close;
  58. L_nojob:
  59. mes "Come back when you've learned";
  60. mes "more about being a Bard.";
  61. close;
  62. }