2018-04-13 19:08:53 +02:00
2018-04-13 19:03:44 +02:00
2018-04-13 19:08:53 +02:00

NPCLib Basic non-player character library.
Release JDK

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 (c) Jitse Boonstra 2018 All rights reserved.

S
Description
No description provided
Readme
694 KiB
Languages
Java 100%