Blogs Article

Bukkit Plugin Making Tutorial Part 1

  • 410 views 0 today
  • 1
  • 0
Jackobs
Lvl 14Journeyman System
20
Today we are going to make a Bukkit plugin. Not many people know how to Make Bukkit plugins, so I will share the knowledge. Here is the code, please watch and don't be a skid:

package youtube.main;

import org.bukkit.plugin.java.JavaPlugin;

public class Main extends JavaPlugin{

public void onEnable()
{
getLogger().info("YouTube Enabled");
}

public void onDisable()
{
getLogger().info("YouTube Disabled");
}

}

Here is the video:

More like this

  Have something to say?

Welcome