- Building Minecraft Server Modifications(Second Edition)
- Cody M. Sommer
- 357字
- 2021-07-30 09:52:18
Introduction to Spigot
As you set up your own server and begin to create plugins, you will encounter a few terms that may be new to you. The terms are Vanilla, Bukkit, CraftBukkit, and Spigot.
Vanilla refers to the normal Minecraft game developed by Mojang/Microsoft. The Vanilla Server is the official version of the game. It can be downloaded from minecraft.net and is typically named minecraft_server.jar
or minecraft_server.exe
. The vanilla server currently does not support any sort of mods or plugins. This is where Bukkit comes in.
Bukkit is an API that helps us to develop plugins. We will discuss this in detail in Chapter 2, Learning the Bukkit API. Until then, it is sufficient to know that when you hear the phrase bukkit plugins, it is referring to the plugins that are built against the Bukkit API.
The Bukkit API was originally developed by the CraftBukkit team. This brings us to the next term. CraftBukkit is a modified Minecraft server that replaces the vanilla server. CraftBukkit and vanilla Minecraft provide us with essentially the same game. The difference is that CraftBukkit has the ability to load Bukkit plugins and execute the code within the game. CraftBukkit translates the Bukkit methods and variables into Minecraft code, which was developed by Mojang. CraftBukkit also includes additional code to aid plugin developers with completing certain tasks, such as saving/loading data, listening for server events, and scheduling the code that needs to be executed. We will not mention CraftBukkit much in this book, because it has been replaced with a project named Spigot.
Spigot completely replaces the vanilla Minecraft server, just as CraftBukkit does. Spigot was built on top of the CraftBukkit project. Therefore, they share a lot of the same code. However, Spigot is more configurable via its settings; in many ways, it is much faster. The Spigot team now maintains all three of the projects, namely Bukkit, CraftBukkit, and Spigot. You will be able to use either CraftBukkit or Spigot to run a server, since the Spigot team has been kind enough to provide us with both. I recommend running the Spigot server for the reasons mentioned earlier.
- Qt 5 and OpenCV 4 Computer Vision Projects
- 大學計算機應用基礎實踐教程
- 自己動手實現Lua:虛擬機、編譯器和標準庫
- JavaScript語言精髓與編程實踐(第3版)
- Java 9 Programming Blueprints
- Unity Virtual Reality Projects
- Mastering Unity Shaders and Effects
- RESTful Java Web Services(Second Edition)
- Getting Started with Eclipse Juno
- Microsoft 365 Certified Fundamentals MS-900 Exam Guide
- UML2面向對象分析與設計(第2版)
- HTML5+CSS3+jQuery Mobile APP與移動網站設計從入門到精通
- Python Machine Learning Blueprints:Intuitive data projects you can relate to
- Vue.js光速入門及企業項目開發實戰
- Redmine Cookbook