When you kill the ender dragon and go back to the original world, the game will show End Poem. I saw this feature in some MCPE servers, how can use this feature ?
I think this packet has to do with it. I'm not sure whether and how you can change the text or not, but here's the packet anyway: https://github.com/pmmp/PocketMine-...e/network/mcpe/protocol/ShowCreditsPacket.php
PHP: $packet = new ShowCreditsPacket();$packet->playerEid = $player->getId();$packet->status = (int)1;$player->dataPacket($packet);
It does work, you're clearly not doing it right. https://github.com/pmmp/PocketMine-...k/mcpe/protocol/ShowCreditsPacket.php#L35-L36