Package net.minecraft.server.v1_6_R3

Examples of net.minecraft.server.v1_6_R3.World.addEntity()


    }

    public static HumanNPC spawnNPC(final HumanNPC npc, final Location loc) {
        World ws = getWorldServer(loc.getWorld());
        npc.getHandle().setPositionRotation(loc.getX(), loc.getY(), loc.getZ(), loc.getYaw(), loc.getPitch());
        ws.addEntity(npc.getHandle());
        Bukkit.getScheduler().scheduleSyncDelayedTask(Citizens.plugin, new Runnable() {
            @Override
            public void run() {
                npc.getHandle().aA = loc.getYaw();
            }
View Full Code Here


            @Override
            public void run() {
                eh.aA = loc.getYaw();
            }
        });
        ws.addEntity(eh);
        ws.players.remove(eh);
        return new HumanNPC(eh, UID, name);
    }

    public static HumanNPC spawnNPC(final Location loc, CreatureNPCType type) {
View Full Code Here

                @Override
                public void run() {
                    eh.aA = loc.getYaw();
                }
            });
            ws.addEntity(eh);
            ws.players.remove(eh);
            return new HumanNPC(eh, -1 /*Fake UID*/, name);
        } catch (Exception e) {
            e.printStackTrace();
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.