c2c21cdf2aa2469da34a38ce86a0fb00092db189
NPCLib – Basic non-player character library.

This is an API made specifically for spigot servers (Minecraft).
Current versions supported: 1.8 - 1.12.
Usage
// First we define our (global) library variable.
// This is usually done in the onEnable method.
NPCLib lib = new NPCLib(plugin);
// Creating an NPC.
NPC npc = lib.createNPC(skin, lines);
// The generate the packets for the NPC.
npc.create(location);
// Then *finally* you can show/hide it to/from players.
npc.show(player);
npc.hide(player);
// If you don't use the NPC anymore, destroy the NPC accordingly.
npc.destroy();
Copyright
Copyright (c) Jitse Boonstra 2018 All rights reserved.
Languages
Java
100%