xX10Eric02Xx Posted January 4, 2014 Share Posted January 4, 2014 (edited) Hey Freunde Ich wollte ein Plugin machen wo man sich mit einem befehl zu bestimmten Koordinaten (X Y Z) teleportieren kann. Mein Problem ist: Ich bin in Welt [spawn] und will mich nach Welt [Park] teleportieren mit den Koordinaten X=190 Y=444 Z=213. Wenn ich es mache lande ich aber in [spawn] bei den Koordinaten und nicht bei [Park]! Wie kann ich es einstellen das ich in [Park] und nicht in [spawn] lande? Hier ist der Code: package eu.owncraft.tp; import org.bukkit.Location; import org.bukkit.command.Command; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; import org.bukkit.plugin.java.JavaPlugin; public class tp extends JavaPlugin { @Override public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) { //sender -> Player Player p = null; if(sender instanceof Player){ p = (Player) sender; } //Command "Freizeitpark" if(cmd.getName().equalsIgnoreCase("freizeitpark")){ if(p.hasPermission("owntp.freizeitpark")) if(p != null){ Location loc = new Location(getServer().getWorld(p.getWorld().getName()), 123, 456, 789); p.teleport(loc); p.sendMessage("?6Wilkommen im Park ?b" + p.getDisplayName() + "?6. Erbaut von: <Name>, <Name> und <Name>"); return true; } } return false; } } Vielen Dank im Voraus Edited January 4, 2014 by Eric Link to comment Share on other sites More sharing options...
Arkanus Posted January 4, 2014 Share Posted January 4, 2014 Location loc = new Location(getServer().getWorld("Park"), 123, 456, 789); Deine Location einfach mit dieser hier ersetzen. Dein Fehler war, dass du immer die aktuelle Welt des Spielers nimmst. Link to comment Share on other sites More sharing options...
xX10Eric02Xx Posted January 4, 2014 Author Share Posted January 4, 2014 (edited) Danke Dass das so einfach ist hätte ich nicht gedacht Oo mache das erst seit vorgestern Edited January 4, 2014 by Eric Link to comment Share on other sites More sharing options...
Biber Posted January 4, 2014 Share Posted January 4, 2014 (edited) Offtopic: Wo haste das so schnell gelernt? Gerne auch per PN. LG Gesendet von meinem GT-I9505 mit Tapatalk Edited January 4, 2014 by Biber Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now