Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. //ab0y88
  2. //added more effect rather than just heal.
  3. //thx to Aozi, rokimoki, and hopper
  4. //hope you guys enjoy it.
  5.  
  6.  
  7.  
  8. payon,162,230,4 script Healer Angeling 1096,2,2,{
  9.  
  10.  
  11. OnInit:
  12. initnpctimer;
  13. end;
  14. OnTimer15000: //15 seconds
  15. npcwalkto 175,230;
  16. end;
  17. OnTimer30000:
  18. npcwalkto 162,230;
  19. stopnpctimer;
  20. initnpctimer;
  21. end;
  22. OnTouch:
  23. if (Hp == MaxHp && Sp == MaxSp) {
  24. end;
  25. }
  26. npctalk "Heal !!";
  27. skilleffect 28,9999;
  28. percentheal 100,100;
  29. sc_start SC_ANGELUS,.duration,10; // Angelus lvl 10
  30. sc_start SC_BLESSING,.duration,10; // Blessing lvl 10
  31. sc_start SC_INCREASEAGI,.duration,10; // Increase agi lvl 10
  32. sc_start SC_IMPOSITIO,.duration,5; // Impositio manus lvl 5
  33. sc_start SC_SUFFRAGIUM,.duration,3; // Suffragium lvl 3
  34. sc_start SC_MAGNIFICAT,.duration,5; // Magnificat lvl 10
  35. sc_start SC_WINDWALK,.duration,10; // Wind walk lvl 10
  36. sc_start SC_NEN,.duration,5; // Soul ninja skill lvl 5
  37. sc_start SC_CONCENTRATION,.duration,10; // Improve Concentration lvl 10
  38. getitem 7139,1; // Get the Glistering Coat needed to cast FCP
  39. atcommand "@useskill 479 5 " +strcharinfo(0); // Full chemical protection lvl 5
  40. end;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement