Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. Ash, found an issue, haven't been able to find the root of it yet. I have this mob:
  2.  
  3. PunchingBag:
  4. Type: WITHER_SKELETON
  5. Display: '&aHit Me'
  6. Health: 300
  7. Damage: 8
  8. Equipment:
  9. - IRON_HELMET HEAD
  10. - IRON_CHESTPLATE CHEST
  11. - IRON_LEGGINGS LEGS
  12. - IRON_BOOTS FEET
  13. - IRON_SWORD HAND
  14. - SHIELD OFFHAND
  15. LevelModifiers:
  16. - health 5
  17. - damage 0.5
  18. Modules:
  19. ImmunityTable: true
  20. Options:
  21. MovementSpeed: 0.1
  22. NoAI: true
  23. NoDamageTicks: 1
  24.  
  25. I this item using Artifacts skills:
  26.  
  27. Tester2:
  28. Id: DIAMOND_SWORD
  29. Data: 0
  30. Display: '&6I Hit other Things'
  31. Skills:
  32. - skill{s=otherstuff} ~onAttack @target
  33.  
  34. Here is the skill:
  35.  
  36. otherstuff:
  37. Skills:
  38. - damage{amount='100 * 0.5'} @trigger
  39. - damage{amount=300} @target
  40.  
  41. The issue is that when I have the item equipped and hit the mob, the damage skills are not getting passed to the mob, only the regular weapon damage. I have a half assed damage tracker I made installed, and it sees the 50 and 300 damage that should be passed, but it never actually gets taken off the mob.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement