Hello everyone, I have a problem with my server, in the list of players I would like to show the icons XBOX of the players connected [look screen], I not found a solution to my problem, I have trying many things without success...
Yes, what we said is not important anyway, he asked me some questions. And my problem is not resolved
Use this protocols/packets: PlayerListPacket and PlayerListEntry (check documentation) If you want ADD Player in list, use: type = PlayerListPacket::TYPE_ADD; entries[] = PlayerListEntry::createAdditionEntry(/*information requested (check documentation)*/); If you want REMOVE Player in list, use: type = PlayerListPacket::TYPE_REMOVE; entries[] = PlayerListEntry::createRemovalEntry(/*information requested (check documentation)*/); Documentation: - PlayerListEntry: https://github.com/pmmp/PocketMine-...k/mcpe/protocol/types/PlayerListEntry.php#L40 - PlayerListPacket: https://github.com/pmmp/PocketMine-...ne/network/mcpe/protocol/PlayerListPacket.php