World world = getConfig().getString("world");
double x = getConfig().getString("x");
double y = getConfig().getString("y");
double z = getConfig().getString("z");
float yaw = getConfig().getString("yaw");
float pitch = getConfig().getString("pitch");
Location hilfelocation = Location(world, x, y, z, yaw, pitch);
Hast du schon einmal darüber nachgedacht, erst Java zu lernen und danach mit Bukkit-Plugins anzufangen?
http://jd.bukkit.org/dev/apidocs/getWorld(String name)
Location hilfelocation = Location(world, x, y, z, yaw, pitch);
World world = getConfig().getWorld("world");
Location hilfelocation = (Location) world, x, y, z, yaw, pitch;