assassin_skills.txt 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //===== eAthena Script =======================================
  2. //= Assassin 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. // ASSASSIN - SONIC ACCELERATION + THROW VENOM KNIFE
  24. //============================================================
  25. in_moc_16.gat,14,21,3 script Kiltin 884,{
  26. mes "[Kiltin]";
  27. if(BaseJob!=Job_Assassin) goto L_nosin;
  28. if(getskilllv(1003) && getskilllv(1004)) goto L_alreadyhave;
  29. mes "I'll teach you all I know, but";
  30. mes "you need to steal some things";
  31. mes "for me:";
  32. mes "3 Sapphires";
  33. mes "1 Ruby";
  34. next;
  35. mes "[Kiltin]";
  36. mes "Let me check your items.";
  37. next;
  38. if(countitem(726)<3 || countitem(723)<1) goto L_noitems;//Items: Sapphire, Ruby,
  39. delitem 726, 3;//Items: Sapphire,
  40. delitem 723, 1;//Items: Ruby,
  41. mes "[Kiltin]";
  42. mes "I see you have what you need,";
  43. mes "so I'll teach you my talent.";
  44. skill 1003,1,0;
  45. skill 1004,1,0;
  46. close;
  47. L_noitems:
  48. mes "[Kiltin]";
  49. mes "You don't have enough items.";
  50. mes "Come back when you have all";
  51. mes "the required items for me.";
  52. close;
  53. L_nosin:
  54. mes "Sorry, but I'm on service of Shadowmen.";
  55. emotion e_gasp;
  56. close;
  57. L_alreadyhave:
  58. mes "I've already taught you";
  59. mes "everything I know...";
  60. close;
  61. }