🟢Arena
ArenaFactory arenaFactory = MiniGame.getArenaFactory();
Arena arena = arenaFactory.createArena("arenaName", player.getLocation(), new HashMap<>());
//or
Arena arena = arenaFactory.createArena("arenaName", player.getLocation());void addLocation(name, location); //Addes new location
Map<String, Location> getLocations(); //Gets map of locations
void removeLocation(name); //Removes location from map
Location getLocationByName(name) //Gets location by name
Optional<Location> getLocation(name); //Gets location by nameOptions options = arena.options();
//or
Options options = arena.getOptionsOrCreate();
options.setValue("key", "value"); //sets the value
Object value = options.getValue("key"); //gets the value
Object value = options.getValueOrDefault("key", "default"); //gets the value, or default value