dancer_skills.txt 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. //===== eAthena Script =======================================
  2. //= Dancer 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. // DANCER - WINK OF CHARM
  24. //============================================================
  25. comodo.gat,205,171,7 script Chanel 724,{
  26. mes "[Chanel]";
  27. if(BaseJob!=Job_Dancer) goto L_nodancer;
  28. if(getskilllv(1011)) goto L_alreadyhave;
  29. mes "I'll teach you all I know for:";
  30. mes "1 Crystal Mirror";
  31. mes "1 Alcohol";
  32. mes "1 China";
  33. mes "1 Apple";
  34. mes "3 Bananas";
  35. mes "5 Well-baked Cookies";
  36. next;
  37. mes "[Chanel]";
  38. mes "Let me check your items.";
  39. next;
  40. if(countitem(747)<1 || countitem(970)<1 || countitem(736)<1 || countitem(512)<1 || countitem(513)<3 || countitem(538)<5) goto L_noitems;//Items: Crystal_Mirror, Alcohol, China, Apple, Banana, Well-baked_Cookie,
  41. delitem 747, 1;//Items: Crystal_Mirror,
  42. delitem 970, 1;//Items: Alcohol,
  43. delitem 736, 1;//Items: China,
  44. delitem 512, 1;//Items: Apple,
  45. delitem 513, 3;//Items: Banana,
  46. delitem 538, 5;//Items: Well-baked_Cookie,
  47. mes "[Chanel]";
  48. mes "I see you have what you need,";
  49. mes "so I'll teach you my talent.";
  50. skill 1011,1,0;
  51. close;
  52. L_noitems:
  53. mes "[Chanel]";
  54. mes "You don't have enough items.";
  55. mes "Come back when you have all";
  56. mes "the required items for me.";
  57. close;
  58. L_nodancer:
  59. mes "Hum... you don't seem to be a musician";
  60. emotion e_gasp;
  61. close;
  62. L_alreadyhave:
  63. mes "I've already taught you";
  64. mes "everything I know...";
  65. close;
  66. }