Note
Developers and translators are welcome to join the CubeGPT Team!
Give GPT your idea, AI generates customized Minecraft server plugins with one click, which is suitable for Bukkit, Spigot, Paper, Purpur, Arclight, CatServer, Magma, Mohist and other Bukkit-based servers.
BukkitGPT is an open source, free, AI-powered Minecraft Bukkit plugin generator. It was developed for minecraft server owners who are not technically savvy but need to implement all kinds of customized small plugins. From code to build, debug, all done by gpt.
Don't want to prepare the Python & Maven environment? Try our WebApp, designed for non-developers, just enter the plugin name and description, and you can get the plugin jar file.
*The service is paid since the API key we are using is not free. You can get 1 key for 5 generations for $1 here or here (for Chinese users)
- Automatically generate code
- Automatically fix bugs
- AI
Better Description
- Creating projects
- Projects management
Moved to Projects Tab.
- Bukkit plugin generator. {*.jar} (BukkitGPT-v3)
- Structure generator. {*.schem} (BuilderGPT, or something?)
- Serverpack generator. {*.zip} (ServerpackGPT or ServerGPT, or..?)
- Have ideas or want to join our team? Send us an email!
When the user types the plugin description, the program lets gpt-3.5-turbo
optimize the prompt, and then gives the optimized prompt to gpt-4-turbo-preview
. gpt-4-turbo-preview
will return it in json format, for example:
{
"output": [
{
"file": "%WORKING_PATH%/Main.java",
"code": "package ...;\nimport org.bukkit.Bukkit;\npublic class Main extends JavaPlugin implements CommandExecutor {\n..."
},
{
"file": "src/main/resources/plugin.yml",
"code": "name: ...\nversion: ...\n..."
},
{
"file\": "src/main/resources/config.yml",
"code\": "..."
},
{
"file": "pom.xml",
"code": "..."
}
]
}
The program parses this prompt, copies the entire projects/template
folder and names it artifact_name
, and puts the code from the prompt into the each file. Finally the program builds the jar using maven.
You can use BukkitGPT on any computer with Java, Maven, Python 3+.
And you need to install this package:
pip install openai
(Make sure you have the Python environment installed on your computer)
- Download
Source Code.zip
from the release page and unzip it. - Edit
config.yaml
, fill in your OpenAI Apikey. If you don't know how, remember that Google and Bing are always your best friends. - Install dependencies by running
pip install -r requirements.txt
. - Run
ui.py
(bashpython console.py
). - Enter the artifact name & description & package id as instructed to generate your plugin.
- Copy your plugin from
projects/<artifact_name>/target/<artifact_name>-<version>.jar
to your serverplugins/
folder. - Restart your server and enjoy your AI-powered-plugin.
Solution: Download BuildTools, place it in an empty folder, double-click it, choose "1.13.2" in Settings/Select Version
, click Compile
in the bottom right corner and let it finish. And then go to your BukkitGPT folder, in projects/<artifact_name_of_your_plugin>
, double-click build.bat
. You'll find your plugin in projects/<artifact_name_of_your_plugin>/target
folder.
If you like the project, you can give the project a star, or submit an issue or pull request to help make it better.
Copyright [2024] [CubeGPT Team]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.