A Dart library for Minecraft hacking and automation.
- [Feature 1]
- [Feature 2]
- [Feature 3]
Add this to your package's pubspec.yaml file:
dependencies:
hackcraft: ^0.0.1import 'dart:async';
import 'package:hackcraft/src/hackcraft_client.dart';
Future<void> main() async {
// プレイヤーを生成
final player = Player('your name');
// サーバーにログイン
await player.login('localhost', 25570);
// エンティティを取得
final hello = await player.getEntity('your pet');
// メッセージを送信
await hello.say('hello world');
// ログアウト
await player.logout();
}
For more information about this package, please visit the GitHub repository.
This project is licensed under the MIT License - see the LICENSE file for details.