[SPIGOT-6676] CLONE - Error While Displaying NPC Skin Created: 25/Jul/21  Updated: 25/Jul/21  Resolved: 25/Jul/21

Status: Closed
Project: Spigot
Component/s: None
Affects Version/s: None
Fix Version/s: None

Type: New Feature Priority: Minor
Reporter: Nour Edden Assignee: Unassigned
Resolution: Duplicate Votes: 0
Labels: Spigot, entity

Issue Links:
Cloners
clones SPIGOT-6675 Error While Displaying NPC Skin Closed
Version: CraftBukkit version git-PaperSpigot-"4c7641d" (MC: 1.8.8) (Implementing API version 1.8.8-R0.1-SNAPSHOT)
Guidelines Read: Yes

 Description   

I'm working on a plugin that contains CustomPlayers ( BOTS ) and i have an ISSUE while displaying the skin of the CustomPlayer

[Player Skin|https://prnt.sc/1foox8w]

Required Skin: 

public static GameSelectorNPC createNPC(Player player, World world, Location location) {
    MinecraftServer nmsServer = ((CraftServer) Bukkit.getServer()).getServer();
    WorldServer nmsWorld = ((CraftWorld) world).getHandle();
    GameProfile profile = new GameProfile(UUID.randomUUID(), player.getName());
    PlayerInteractManager interactManager = new PlayerInteractManager(nmsWorld);
    GameSelectorNPC entityPlayer = new GameSelectorNPC(nmsServer, nmsWorld, profile, interactManager);
    entityPlayer.playerConnection = new PlayerConnection(nmsServer, new NetworkManager(EnumProtocolDirection.CLIENTBOUND), entityPlayer);

    EntityPlayer craftplayer = ((CraftPlayer) player).getHandle();
    GameProfile playerProfile = craftplayer.getProfile();
    Property property = playerProfile.getProperties().get("textures").iterator().next();
    String texture = property.getValue();
    String signature = property.getSignature();

    setSkin(entityPlayer.getBukkitEntity(), texture, signature);

    entityPlayer.setLocation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
    nmsWorld.addEntity(entityPlayer);

    PacketPlayOutPlayerInfo playerInfoAdd = new PacketPlayOutPlayerInfo(PacketPlayOutPlayerInfo.EnumPlayerInfoAction.ADD_PLAYER, entityPlayer);
    PacketPlayOutNamedEntitySpawn namedEntitySpawn = new PacketPlayOutNamedEntitySpawn(entityPlayer);
    PacketPlayOutEntityHeadRotation headRotation = new PacketPlayOutEntityHeadRotation(entityPlayer, (byte) ((location.getYaw() * 256f) / 360f));
    PacketPlayOutPlayerInfo playerInfoRemove = new PacketPlayOutPlayerInfo(PacketPlayOutPlayerInfo.EnumPlayerInfoAction.REMOVE_PLAYER, entityPlayer);

    for (Player onlinePlayer : Bukkit.getOnlinePlayers()) {
        PlayerConnection connection = ((CraftPlayer) onlinePlayer).getHandle().playerConnection;
        connection.sendPacket(playerInfoAdd);
        connection.sendPacket(namedEntitySpawn);
        connection.sendPacket(headRotation);
        connection.sendPacket(playerInfoRemove);
    }
    return entityPlayer;
}

SetSkin Code

public static void setSkin(Player player, String texture, String signature) {
    EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
    GameProfile playerProfile = entityPlayer.getProfile();
    playerProfile.getProperties().put("textures", new Property("textures", texture, signature));
    for (Player online : Bukkit.getOnlinePlayers()) {
        online.hidePlayer(player);
        online.showPlayer(player);
    }
}

 
 


Generated at Thu Apr 03 15:45:32 UTC 2025 using Jira 10.3.3#10030003-sha1:d220e3fefc8dfc6d47f522d3b9a20c1455e12b7b.