| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
Control Minecraft on your PC using your phone as a controller!
This project consists of a Python backend that listens for commands and sends keyboard/mouse inputs to Minecraft, and a Flutter mobile app that acts as the controller interface.
Use this Flutter app as your game controller.
GitHub Repo: Minecraft Controller (Flutter App)
The app sends JSON packets like:
{ "action": "press", "key": "w" }
{ "action": "click" }
{ "action": "move", "x": 1, "y": -1 }Clone this repo (Python backend) and change into its directory:
git clone https://github.com/Musaddiq625/minecraft_python_controller.git
cd minecraft_python_controllerRun the script (it will verify/install dependencies, then exit if it installed anything):
python main.pyRerun the script if prompted:
python main.pyThe script will print your local IP address. Copy that IP into the Flutter app.
Convert your Python script into a single-file .exe for easy distribution:
pyinstaller --onefile -c 'main.py'No input registered?
Can’t bind UDP port?
Dependencies not installing?
This is just a basic proof of concept to spark your creativity! If you can improve or extend it, feel free to fork and submit a PR.
Made with ❤️ by Musaddiq625 — contributions welcome!
| Back | FazBrowse Home | New Git URL |