First of all this seems a request and you should post it on a Plugin Requests section. Then try CustomAlerts
yes i was used customalerts since customalerts release, but i need some alternative just for Disable join and leave message
Well, you just need a plugin with these functions Code: public function onEnable(){ $this->getServer()->getPluginManager()->registerEvents($this, $this); } public function onJoin(PlayerJoinEvent $event){ $event->setJoinMessage(""); } public function onQuit(PlayerQuitEvent $event){ $event->setQuitMessage(""); }