getConfig().set("Schreibe hier den Namen der Variable hin", "Schreibe hier den Wert der Variable hin");
saveConfig();
String var1 = getConfig().getString("Schreibe hier den Namen der Variable hin");
Location hilfelocation = getConfig().getString("location");
011 private World world;
012 private double x;
013 private double y;
014 private double z;
015 private float pitch;
016 private float yaw;
Location hilfelocation = getConfig().getString("location");
Player targetPlayer = player.getServer().getPlayer(args[0]);
Location wo = targetPlayer.getLocation();
getConfig().set("location", wo);
saveConfig();
final String worldName = loc.getWorld().getName();
final double locX = loc.getX();
final double locZ = loc.getZ();
final double locY = loc.getY();
final float pitch = loc.getPitch();
final float yaw = loc.getYaw();
String world = getConfig().getString("world");
String x = getConfig().getString("x");
String y = getConfig().getString("y");
String z = getConfig().getString("z");
String yaw = getConfig().getString("yaw");
String pitch = getConfig().getString("pitch");
Location hilfelocation = Location(world, x, y, z, yaw, pitch);
Location(World world, double x, double y, double z, float yaw, float pitch)