kidshock67-dev Hi.
In Wurst 7, killaura checks for EntityUtils.getAttackableEntities()
This is Wurst's way of checking for attackable entities. In EntityUtils, Wurst's targets are MC.level.entitiesForRendering()
However, the target must be one of the following.
LivingEntity
EndCrystal
ShulkerBullet
This is filtered through:
e != null
!e.isRemoved()
(
e instanceof LivingEntity && ((LivingEntity)e).getHealth() > 0
| e instanceof EndCrystal (its actually || for both EndCrystal and Shulkerbullet, but WurstForum will see it as a spoilertext.)
| e instanceof ShulkerBullet
)
e != MC.player
!(e instanceof FakePlayerEntity)
!WURST.getFriends().isFriend(e)
The mob you see on Oraxen is NOT a LivingEntity. This is confirmed by the fact that Wurst's MobESP cannot see it. Therefore, it is filtered out on the hardcoded level. There is no way to bypass or fix this, as a valid target must be one of those three things. The mob you see here is likely a MythicMob controlled entity, which you can confirm with a packet sniffer mod to get entity data, and if it says something like minecraft:interaction (or something that isn't one of those 3), then Wurst 7 will not pick up on it.
Hope this helps, mark as best answer if this did!
@Alexander01998 Please correct me if any information here is inaccurate.