U
/u/Dogeguy975
Guest
I am a beginner programmer working on a paper plugin for the first time, but there are many problems with it that the official docs, AI assistance and YT tutorials have gotten me nowhere. My plugin's name is a2 because I was not creative enough to think of a good name. My current main file looks like this:
And my plugin.yml file looks like this:
Other info;
JDK version: 21
mc version: 1.21.11
Any help is appreciated.
submitted by /u/Dogeguy975
[link] [comments]
Continue reading...
package org.a2;import org.bukkit.plugin.java.JavaPlugin;public class main extends JavaPlugin {att Overridepublic void onEnable() {getLogger().info("Plugin has been enabled!");}att Overridepublic void onDisable() {getLogger().info("Plugin has been disabled!");}}And my plugin.yml file looks like this:
name: a2version: 1.0main: org.a2.mainapi-version: '1.21'description: A basic paper pluginauthor: meOther info;
JDK version: 21
mc version: 1.21.11
Any help is appreciated.
submitted by /u/Dogeguy975
[link] [comments]
Continue reading...