Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 637 Bytes

File metadata and controls

28 lines (24 loc) · 637 Bytes

Minecraft Remote Controller

This repository is example of thin_ws_server.

Get started

git clone https://github.com/atoy322/remote_minecraft
pip install thin-ws-server
cd remote_minecraft

Usage

  1. launch websocket server
from requester import CommandRequester

cr = CommandRequester()
cr.accept()  # accept client connection
cr.request("setblock", "~~~", "tnt")  # run setblock command
cr.close()  # connection close
  1. Run below command in minecraft.
/connect {YOUR IP}:8000
  1. You can remote control the Minecraft.

not completed. developing now