Handler: This is a very interesting thing that will allow you to perform some function when the player's actions. First, create a self handler: PHP: $this->api->addHandler("player.spawn", array($this, "handle"), 5); player.spawn - event | array($this, "handle") - transmit event data to function | 5 - priority --- We have just added a command handler player.spawn! If a player already connected and entered the game we call the handler function that will handle the event. PHP: public function handle ($data, $event){switch ($event) {case "player.spawn": $this->api->chat->broadcast("Player ".$data->username." has joined the game!");}} Schedule: PHP: $this->api->schedule(1200, array($this, "minuteSchedule"), array(), true); ...