#How to make a Bukkit minigame This is a tutorial on how to make a Bukkit minigame plugin for 1.7/1.8. You should have some basic knowledge of Java, OOP, and Bukkit.
##Arenas
Arenas are the base to any minigame (unless you only want one instance of the game). These can be implemented in many different ways, but my favorite is to have an Arena
class with a static ArrayList<Arena>
inside it.
public class Arena {
//global list
private static ArrayList arenaList = new ArrayList();