Skip to main content

A Bot for Minecraft: Bedrock Edition programmed in python using websocket

Project description

Quickstart

Installation

Install with pip install mcbe and import it.

from mcbe import ws
from mcbe.chat import Color, Style, Message

Contents

  1. Create a simple bot
  2. Minecraft Events
  3. Advanced bot options

Create a simple bot

Credits to discord.py for the awesome syntax inspiration.

bot = ws.Bot(
    name = "My Bot",
    prefix = "!"
)


@bot.event
# this is the only event that is not async
def on_ready(ctx):
    print(f"Ready @ {ctx.host}:{ctx.port}")

@bot.event
async def on_connect(ctx):
    print("Connected!")
    ctx.msg("Hello World.")

@bot.event
async def on_disconnect(ctx):
    print("Disconnected!")

@bot.command()
async def ping(ctx):
    ctx.msg("Pong")
    ctx.cmd("title @a actionbar Welcome")


bot.run("localhost", 6464)

We will go with 6464 as the port but you can choose any other four-digit number.

Now type /connect localhost:6464 in the Minecraft Chat and wait for a response.

You may have to disable "Require Encrypted Websockets" for it to work.

Most of the time the ctx argument has methods for sending messages in the game. These are:

  • cmd(command)

Executes a minecraft command. The slash prefix is optional. Also accessable with command(...) and execute(...)

  • raw(message, target = "@a")

Sends a raw message to the specified target.

  • msg(message, target = "@a")

Sends a message to the specified target. Also accessable with message(...)

  • debug(message, target = "@a")

Sends a debug message to the specified target. The logging level must be set to debug or higher.

  • info(message, targt = "@a")

Sends an info message to the specified target. The logging level must be set to info or higher.

  • err(message, target = "@a")

Sends a error message to the specified target. The logging level must be set to error or higher. Also accessable with error(...)

  • warning(message, target = "@a")

Sends a warning to the specified target. The logging level must be set to warning or higher. Also accessable with warn(...)

  • critical(message, target = "@a")

Sends a critical message to the specified target. The logging level must be set to critical. Also accessable with fatal(...)

Minecraft Events

Minecraft sends several events to the bot. You can react on them with the minectaftevent decorator:

@bot.minecraftevent
async def block_broken(ctx):
    ctx.info(f"{ctx.block_name} has been broken.")

This will display a message which block got broken.

Some events have supported methods (e.g. in this case block_name) but some don't. You can access the data with ctx.data["<name>"] where name could be "name".

Keep in mind that you have to change the event name into snakecase format. That means that BlockBroken becomes block_broken.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcbews-0.0.1b0-py3-none-any.whl (13.2 kB view details)

Uploaded Python 3

File details

Details for the file mcbews-0.0.1b0-py3-none-any.whl.

File metadata

  • Download URL: mcbews-0.0.1b0-py3-none-any.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for mcbews-0.0.1b0-py3-none-any.whl
Algorithm Hash digest
SHA256 daa8df9210f4b65efde0ae5c3bd029f84380bcf23fbb093052734b70567c6824
MD5 eaf804f1d88ffa72712860bec2b8226c
BLAKE2b-256 9011e82a472c7b0f53a8a4cd1244f644334a9b841cc0e7cadd6182a8a0026a2d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page