Fake Minecraft Entities Using ProtocolLib & The Minecraft Protocol Directly. Supports Spigot 1.10 to 1.17.
Maven:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.lewysDavies</groupId>
<artifactId>FakeEntityLib</artifactId>
<version>[jitpack release]</version>
</dependency>
Gradle:
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.lewysDavies:FakeEntityLib:[jitpack release]'
}
Spawning a fake armour stand and showing it to the player
FakeStand fakeStand = new FakeStand(location.getWorld(), location.getX(), location.getY(), location.getZ());
fakeStand.show(player)
//fakestand.setGloballyVisible(true)