So I want when a player joins, they get a message. Then after 1 second they get another message. I'm familiar with the sleep($int); function, but it seems to pause the whole server. Any way to get it to just pause the one plugin? PHP: sleep(2);$player->sendMessage("Message appears after two seconds...");sleep(6);$player->sendMessage("It's been six seconds!");