Beispiel #1
0
 /** Sends directly an RCon command to the server.
  * This function is bound to the !rcon command. It sends directly an RCon command to the server, without altering it.
  * 
  * \param $id The game ID of the player who executed the command.
  * \param $command The command parameters.
  * 
  * \return Nothing.
  */
 public function CommandRCon($id, $command)
 {
     RCon::send(join(' ', $command));
 }