/[projects]/miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/GetposCommand.java
ViewVC logotype

Diff of /miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/GetposCommand.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2092 by torben, Fri Jan 27 12:21:27 2012 UTC revision 2093 by torben, Sat Dec 7 15:18:04 2013 UTC
# Line 1  Line 1 
1  package dk.thoerup.bukkit.hoeruputils;  package dk.thoerup.bukkit.hoeruputils;
2    
3  import org.bukkit.Location;  import org.bukkit.Location;
4    import org.bukkit.World;
5  import org.bukkit.command.Command;  import org.bukkit.command.Command;
6  import org.bukkit.command.CommandExecutor;  import org.bukkit.command.CommandExecutor;
7  import org.bukkit.command.CommandSender;  import org.bukkit.command.CommandSender;
# Line 17  public class GetposCommand implements Co Line 18  public class GetposCommand implements Co
18                                    
19                  Player p = (Player) sender;                  Player p = (Player) sender;
20                  Location l = p.getLocation();                  Location l = p.getLocation();
21    
22                    World world = l.getWorld();
23                                    
24                    String worldMsg = "You are currently in world: " + world.getName();
25                    p.sendMessage( worldMsg );
26                    
27                                    
28                  String message = String.format("Your current location is %d,%d,%d", (int)l.getX(), (int)l.getY(), (int)l.getZ() );                  String message = String.format("Your current location is %d,%d,%d", (int)l.getX(), (int)l.getY(), (int)l.getZ() );
29                  p.sendMessage(message);                  p.sendMessage(message);
30                                    

Legend:
Removed from v.2092  
changed lines
  Added in v.2093

  ViewVC Help
Powered by ViewVC 1.1.20