rcon 1.0.0 copy "rcon: ^1.0.0" to clipboard
rcon: ^1.0.0 copied to clipboard

A client for Minecraft's RCON protocol written in Dart. RCON is a protocol that allows server administrators to remotely execute Minecraft commands.

RCON.dart #

A client for Minecraft's RCON protocol written in Dart.

Usage #

import 'package:rcon/rcon.dart';

main() async {
  Client client = await Client.create("192.168.1.1", 25575);
  client.login("test");
  print(client.send(Message.create(client, PacketType.command, "help")));
  client.close();
}

Command Line Usage #

For command line usage, run the example.dart file.

0
likes
130
pub points
0%
popularity

Publisher

verified publisheronelemonyboi.dev

A client for Minecraft's RCON protocol written in Dart. RCON is a protocol that allows server administrators to remotely execute Minecraft commands.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on rcon