Advertisement
igromanru

Healing Arrows

May 24th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [ENABLE]
  2. {$lua}
  3. if not syntaxcheck then
  4. local healingBolts = { --Gives Bonfire & Budding Green Moss on Hit
  5. {800,0x6C,"6E 00 00 00 "}, --Standard Bolt Bonfire
  6. {800,0x74,"EE 07 00 00 "}, --Standard Bolt Budding Green Moss
  7. {810,0x6C,"6E 00 00 00 "}, --Heavy Bolt Bonfire
  8. {810,0x74,"EE 07 00 00 "}, --Heavy Bolt Budding Green Moss
  9. {820,0x6C,"6E 00 00 00 "}, --Sniper Bolt Bonfire
  10. {820,0x74,"EE 07 00 00 "}, --Sniper Bolt Budding Green Moss
  11. {830,0x6C,"6E 00 00 00 "}, --Wood Bolt Bonfire
  12. {830,0x74,"EE 07 00 00 "}, --Wood Bolt Budding Green Moss
  13. {840,0x6C,"6E 00 00 00 "}, --Lightning Bolt Bonfire
  14. {840,0x74,"EE 07 00 00 "}, --Lightning Bolt Budding Green Moss
  15. {850,0x6C,"6E 00 00 00 "}, --Splintering Bolt Bonfire
  16. {850,0x74,"EE 07 00 00 "}, --Splintering Bolt Budding Green Moss
  17. {851,0x6C,"6E 00 00 00 "}, --Splintering Bolt Splinters Bonfire
  18. {851,0x74,"EE 07 00 00 "}, --Splintering Bolt Splinters Budding Green Moss
  19. {860,0x6C,"6E 00 00 00 "}, --Exploding Bolt Bonfire
  20. {860,0x74,"EE 07 00 00 "}, --Exploding Bolt Budding Green Moss
  21. {861,0x6C,"6E 00 00 00 "}, --Exploding Bolt Explosion Bonfire
  22. {860,0x74,"EE 07 00 00 "}, --Exploding Bolt Explosion Budding Green Moss
  23.  
  24. }
  25. local healingArrows = { -- Gives Bonfire & Budding Green Moss on Hit
  26. {500,0x6C,"6E 00 00 00 "}, -- Standard Arrow Bonfire
  27. {500,0x74,"EE 07 00 00 "}, -- Standard Arrow Budding Green Moss
  28. {510,0x6C,"6E 00 00 00 "}, -- Large Arrow Bonfire
  29. {510,0x74,"EE 07 00 00 "}, -- Large Arrow Budding Green Moss
  30. {520,0x6C,"6E 00 00 00 "}, -- Feather Arrow Bonfire
  31. {520,0x74,"EE 07 00 00 "}, -- Feather Arrow Budding Green Moss
  32. {530,0x6C,"6E 00 00 00 "}, -- Fire Arrow Bonfire
  33. {530,0x74,"EE 07 00 00 "}, -- Fire Arrow Budding Green Moss
  34. {540,0x6C,"6E 00 00 00 "}, -- Poison Arrow Bonfire
  35. {540,0x74,"EE 07 00 00 "}, -- Poison Arrow Budding Green Moss
  36. {550,0x6C,"6E 00 00 00 "}, -- Moonlight Arrow Bonfire
  37. {550,0x74,"EE 07 00 00 "}, -- Moonlight Arrow Budding Green Moss
  38. {570,0x6C,"6E 00 00 00 "}, -- Dark Arrow Bonfire
  39. {570,0x74,"EE 07 00 00 "}, -- Dark Arrow Budding Green Moss
  40. }
  41. local healingGreatArrows = { -- Gives Bonfire & Budding Green Moss on Hit
  42. {700,0x6C,"6E 00 00 00 "}, -- DragonSlayer Great Arrow Bonfire
  43. {700,0x74,"EE 07 00 00 "}, -- DragonSlayer Great Arrow Budding Green Moss
  44. {710,0x6C,"6E 00 00 00 "}, -- DragonSlayer Lightning Arrow Bonfire
  45. {710,0x74,"EE 07 00 00 "}, -- DragonSlayer Lightning Arrow Budding Green Moss
  46. {720,0x6C,"6E 00 00 00 "}, -- Onislayer Great Arrow Bonfire
  47. {720,0x74,"EE 07 00 00 "}, -- Onislayer Great Arrow Budding Green Moss
  48. {730,0x6C,"6E 00 00 00 "}, -- Millwood Great Arrow Bonfire
  49. {730,0x74,"EE 07 00 00 "}, -- Millwood Great Arrow Budding Green Moss
  50. }
  51.  
  52. ParamIterator ("Bullet",healingBolts,"healingBoltsOriginal")
  53. ParamIterator ("Bullet",healingArrows,"healingArrowsOriginal")
  54. ParamIterator ("Bullet",healingGreatArrows,"healingGreatArrowsOriginal")
  55. end
  56.  
  57. {$asm}
  58. [DISABLE]
  59. {$lua}
  60. if not syntaxcheck then
  61. ParamDepatcher ("healingBoltsOriginal")
  62. ParamDepatcher ("healingArrowsOriginal")
  63. ParamDepatcher ("healingGreatArrowsOriginal")
  64. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement