Hey. There are two types of messages i want to send from the plugin I am making. - Specific World Messages with Timings - Messages that are for all server but are at random timing but MUST be at least 2 minutes apart. Tell me how this is possible
for specific world: PHP: foreach($level->getPlayers() as $p){$p->sendMessage('Players who are in same world will only see this');} or PHP: $this->getServer()->broadcastMessage('Message', $level->getPlayers()); for all server: PHP: $this->getServer()->broadcastMessage('This message will see all players on server! '); // Except if other plugin is not interupting or chat is not muted Timings? You mean delayTask?