Advertisement
akbare

Stalker copy skill

Nov 25th, 2014
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. prontera,136,171,6 script Stalker 747,{
  2.  
  3. if (class == 17) goto L_01;
  4. if (class == 4018) goto L_01;
  5. if (class == 4079) goto L_01;
  6. mes "[Stalker]";
  7. mes "I don't have any business with you";
  8. close;
  9.  
  10. L_01:
  11. mes "[Stalker]";
  12. mes "Hi, "+strcharinfo(0)+"";
  13. mes "I'm the master of all stalkers";
  14. mes "I can let you copy one of my copy skill";
  15. mes "so what skill do you want to copy?";
  16. next;
  17. switch(select("Acid Demo:Acid Terror:Arrow Charge:Bowling Bash:Holy Cross:Meteor Assult:Pressure:Sacrifice:Soul Destroyer:Strom Gust:Cancel")) {
  18. case 1:
  19. mes "[Stalker]";
  20. mes "Oh so you want Acid Demonstration skill";
  21. mes "Wait hold on";
  22. next;
  23. set CLONE_SKILL, 490;
  24. set CLONE_SKILL_LV, 10;
  25. atcommand "@kick "+ strcharinfo(0);
  26. end;
  27. case 2:
  28. mes "[Stalker]";
  29. mes "Oh so you want Acid Terror skill";
  30. mes "Wait hold on";
  31. next;
  32. set CLONE_SKILL, 230;
  33. set CLONE_SKILL_LV, 5;
  34. atcommand "@kick "+ strcharinfo(0);
  35. end;
  36. case 3:
  37. mes "[Stalker]";
  38. mes "Oh so you want Arrow Charge";
  39. mes "Wait hold on";
  40. next;
  41. set CLONE_SKILL, 148;
  42. set CLONE_SKILL_LV, 1;
  43. atcommand "@kick "+ strcharinfo(0);
  44. end;
  45. case 4:
  46. mes "[Stalker]";
  47. mes "Oh so you want Bowling Bash";
  48. mes "Wait hold on";
  49. next;
  50. set CLONE_SKILL, 62;
  51. set CLONE_SKILL_LV, 10;
  52. atcommand "@kick "+ strcharinfo(0);
  53. end;
  54. case 5:
  55. mes "[Stalker]";
  56. mes "Oh so you want Holy Cross";
  57. mes "Wait hold on";
  58. next;
  59. set CLONE_SKILL, 253;
  60. set CLONE_SKILL_LV, 10;
  61. atcommand "@kick "+ strcharinfo(0);
  62. end;
  63. case 6:
  64. mes "[Stalker]";
  65. mes "Oh so you want Meteor Assult";
  66. mes "Wait hold on";
  67. next;
  68. set CLONE_SKILL, 406;
  69. set CLONE_SKILL_LV, 10;
  70. atcommand "@kick "+ strcharinfo(0);
  71. end;
  72. case 7:
  73. mes "[Stalker]";
  74. mes "Oh so you want Pressure";
  75. mes "Wait hold on";
  76. next;
  77. set CLONE_SKILL, 367;
  78. set CLONE_SKILL_LV, 5;
  79. atcommand "@kick "+ strcharinfo(0);
  80. end;
  81. case 8:
  82. mes "[Stalker]";
  83. mes "Oh so you want Sacrifice";
  84. mes "Wait hold on";
  85. next;
  86. set CLONE_SKILL, 368;
  87. set CLONE_SKILL_LV, 5;
  88. atcommand "@kick "+ strcharinfo(0);
  89. end;
  90. case 9:
  91. mes "[Stalker]";
  92. mes "Oh so you want Soul Destroyer";
  93. mes "Wait hold on";
  94. next;
  95. set CLONE_SKILL, 379;
  96. set CLONE_SKILL_LV, 10;
  97. atcommand "@kick "+ strcharinfo(0);
  98. end;
  99. case 10:
  100. mes "[Stalker]";
  101. mes "Oh so you want Storm Gust";
  102. mes "Wait hold on";
  103. next;
  104. set CLONE_SKILL, 89;
  105. set CLONE_SKILL_LV, 10;
  106. atcommand "@kick "+ strcharinfo(0);
  107. end;
  108. case 11:
  109. close;
  110. }
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement