/**
  * Sets rcon password, for future use in Rcon()
  *
  * @param string $Command Command to execute on the server
  *
  * @return bool|string Answer from server in string, false on failure
  */
 public function Rcon($Command)
 {
     if (!$this->Connected) {
         return false;
     }
     return $this->Rcon->Command($Command);
 }