├── LICENSE.txt ├── README.md └── mod_jars ├── 1.10.2 ├── .DS_Store └── pythontool-0.8.jar ├── 1.10 └── pythontool-0.8.jar ├── 1.11.2 ├── .DS_Store └── pythontool-0.8.jar ├── 1.12.2 └── pythontool-0.8.jar ├── 1.8.8 └── pythontool-0.8.jar ├── 1.8.9 └── pythontool-0.8.jar ├── 1.8 ├── .DS_Store └── pythontool-0.8.jar ├── 1.9.4 └── pythontool-0.8.jar └── 1.9 └── pythontool-0.8.jar /LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016, Alvaro Perez-Diaz & Hans Fangohr 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![DOI](https://zenodo.org/badge/65482833.svg)](https://zenodo.org/badge/latestdoi/65482833) 2 | 3 | # :snake: PythonTool-Mod for Minecraft 4 | #### Interactively alter your Minecraft world in real time, using Python. 5 | 6 | ![PythonTool-logo-large](https://ngcm.github.io/PythonTool-Mod/images/pythontool_logo.jpg) 7 | 8 | ### [Official website](https://ngcm.github.io/PythonTool-Mod/): installation instructions, user guide, troubleshooting, etc. 9 | 10 | ### [PythonTool](https://github.com/ngcm/PythonTool-Mod/branches/all) is available for Minecraft 1.8, 1.8.8, 1.8.9, 1.9, 1.9.4, 1.10, 1.10.2, 1.11.2 & 1.12.2. The code is organised using branches, one for each version. 11 | 12 | --- 13 | 14 | Ever wanted to learn how to program? PythonTool Mod provides an interactive way to get started with Python programming inside your Minecraft adventures. Python is a very common and powerful -yet simple- programming language that can be used to modify your Minecraft worlds in real time. There are plenty of resources, have a look at the [How to create your own scripts](https://ngcm.github.io/PythonTool-Mod/startcoding/) section to learn more! 15 | 16 | Build arbitrary things, turn blocks into bombs or create interactive games, just with one click! 17 | This [mod](https://ngcm.github.io/PythonTool-Mod/troubleshooting/#wait-what-is-a-mod) builds on top of [Raspberry Jam Mod](https://github.com/arpruss/raspberryjammod) and provides a visual interface to use in-game Python scripts. Write your own scripts or get plenty of examples online, and use them inside the game with the mighty Computer Block and Python Script items. Have a look at the possibilities PythonTool Mod offers in the **following video**: 18 | 19 | [![PythonTool video](https://img.youtube.com/vi/mghcv0qJNv8/0.jpg)](https://www.youtube.com/watch?v=mghcv0qJNv8) 20 | -------------------------------------------------------------------------------- /mod_jars/1.10.2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.10.2/.DS_Store -------------------------------------------------------------------------------- /mod_jars/1.10.2/pythontool-0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.10.2/pythontool-0.8.jar -------------------------------------------------------------------------------- /mod_jars/1.10/pythontool-0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.10/pythontool-0.8.jar -------------------------------------------------------------------------------- /mod_jars/1.11.2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.11.2/.DS_Store -------------------------------------------------------------------------------- /mod_jars/1.11.2/pythontool-0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.11.2/pythontool-0.8.jar -------------------------------------------------------------------------------- /mod_jars/1.12.2/pythontool-0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.12.2/pythontool-0.8.jar -------------------------------------------------------------------------------- /mod_jars/1.8.8/pythontool-0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.8.8/pythontool-0.8.jar -------------------------------------------------------------------------------- /mod_jars/1.8.9/pythontool-0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.8.9/pythontool-0.8.jar -------------------------------------------------------------------------------- /mod_jars/1.8/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.8/.DS_Store -------------------------------------------------------------------------------- /mod_jars/1.8/pythontool-0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.8/pythontool-0.8.jar -------------------------------------------------------------------------------- /mod_jars/1.9.4/pythontool-0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.9.4/pythontool-0.8.jar -------------------------------------------------------------------------------- /mod_jars/1.9/pythontool-0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngcm/PythonTool-Mod/520ddb7a4104362fb427a474ac7c8845d8feca7b/mod_jars/1.9/pythontool-0.8.jar --------------------------------------------------------------------------------