Basically slightly on top of the inventory, the message would be like "§c{player} §fwas killed by §c{player} !" or "§c{player} §fell into the void !}" so to basically just move the death messages slightly above the middle of the inventory.
PHP: public function onPlayerDeath(PlayerDeathEvent $event){ $entity = $event->getEntity(); if($entity instanceof Player){ $event->setMessage(""); foreach($this->plugin->getServer()->getOnlinePlayers() as $player){ $player->sendTip($entity->getName()." Died in a hole!"); } }}