ConfigurationSection areaSection = conf.getConfigurationSection("restrictedareas");
if (areaSection != null) {
for (String areaKey : areaSection.getKeys(false)) {
String worldName = conf.getString("restrictedareas."+areaKey+".world");
double multiplier = conf.getDouble("restrictedareas."+areaKey+".multiplier", 0.0);
World world = Bukkit.getServer().getWorld(worldName);
if (world == null)
continue;
Location point1 = new Location(world,
conf.getDouble("restrictedareas."+areaKey+".point1.x", 0.0),
conf.getDouble("restrictedareas."+areaKey+".point1.y", 0.0),