sendCommand function

bool sendCommand(
  1. String message
)

Send the provided command to the RCON server using the Returns a boolean that specifies if the command was successful.

Implementation

bool sendCommand(String message) {
  return sendMsg(2, message);
}