Skip to content

yokmama/hackCraft-dart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HackCraft

A Dart library for Minecraft hacking and automation.

Features

  • [Feature 1]
  • [Feature 2]
  • [Feature 3]

Getting started

Add this to your package's pubspec.yaml file:

dependencies:
  hackcraft: ^0.0.1

Usage

import '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();
}

Additional information

For more information about this package, please visit the GitHub repository.

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages