Chapter 3. Creating Your First Bukkit Plugin
The Bukkit plugins that we will program will be written in the Java programming language. I am assuming that you already have basic knowledge of Java. If this is not the case or you find yourself not understanding parts of this book, then I suggest you visit codisimus.com/learnjava, which has an introduction to the Java language and information on various concepts that you will need to know in order to create good plugins throughout the course of this book.
We will use an IDE to write the plugins. An IDE is an Integrated Development Environment and it is the software that will aid us in writing the Java code. It has many tools and features that make programming much easier. For example, it automatically detects errors in our code, it often tells us how to fix these errors or even does it for us, and it provides us with many shortcuts, such as one keystroke to compile our code and build a jar, so that the code can be executed. In this chapter we...