Hey Guys! How can i get the murder of a player by using the player.death handler? I know it's $data["cause"]; , but this gives me an entity. How can i get the player object, so i can do things like: $murder = PHP: $murder->sendChat("Why did you kill a player?"); ` or PHP: $murder->setHealth(0); I have taken this PHP: if(is_numeric($data["cause"])){ $e = $this->api->entity->get($data["cause"]); if($e instanceof Entity){ switch($e->class){ case ENTITY_PLAYER: break; } } } from the PlayerAPI, but it doesn't work. Thanks.