2008Choco / FakeEntityLib

Fake Minecraft Entities Using ProtocolLib & The Minecraft Protocol Directly.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FakeEntityLib

Fake Minecraft Entities Using ProtocolLib & The Minecraft Protocol Directly. Supports Spigot 1.10 to 1.17.

Clone the repository

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]'
}

Example code:

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)

About

Fake Minecraft Entities Using ProtocolLib & The Minecraft Protocol Directly.


Languages

Language:Java 100.0%