Hi guys, i was watching the official docs and i had also a conversation with a PM developer that has more experience than me but he has no idea of how to do what i am going to ask you. Before explain Everything what here:  OK, i am talking about this, that i call " info text ". I am wondering about how to make it. Anybody know it? I think so, i hope so, thanks
And this is code form Mentha Haplocalyx @Alcatraz_Du PHP: public function onPlayerJoin(PlayerJoinEvent $ev){$p = $ev->getPlayer(); $ids= $this->tag["id"]; $n = count($ids);for($id = 0;$id < $n; $id++){ $idinfo = $this->tag[$ids[$id]]; $this->onTag($p,$idinfo,$ids[$id]);}}public function onTag(Player $p,$info,$eid){ $pk = new AddPlayerPacket(); $pk->eid = $eid; $pk->username = $info["message"]; $pk->x = $info["x"]; $pk->y = $info["y"]; $pk->z = $info["z"]; $pk->skin = \str_repeat("\x00", 64 * 32 * 4); $pk->metadata = [ Entity::DATA_FLAGS => [Entity::DATA_TYPE_BYTE, 1 << Entity::DATA_FLAG_INVISIBLE], Entity::DATA_AIR => [Entity::DATA_TYPE_SHORT, 300], Entity::DATA_SHOW_NAMETAG => [Entity::DATA_TYPE_BYTE, 1], Entity::DATA_NO_AI => [Entity::DATA_TYPE_BYTE, 1] ]; $p->dataPacket($pk);}