EasySpawn/src/net/jimmy1248/easyspawn/EasySpawn.java

38 lines
1.2 KiB
Java
Raw Normal View History

2013-12-27 06:14:36 +00:00
package net.jimmy1248.easyspawn;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;
public class EasySpawn extends JavaPlugin{
2014-03-29 03:01:09 +00:00
2013-12-27 06:14:36 +00:00
@Override
public boolean onCommand(CommandSender sender, Command command,
String label, String[] args) {
if(sender instanceof Player){
Player player = (Player)sender;
if(command.getName().equalsIgnoreCase("spawn")){
player.teleport(player.getWorld().getSpawnLocation());
player.sendMessage("You have been teleported to spawn.");
return true;
}
if(command.getName().equalsIgnoreCase("setspawn")){
player.getWorld().setSpawnLocation(player.getLocation().getBlockX(),
player.getLocation().getBlockY(),player.getLocation().getBlockZ());
player.sendMessage("Spawn set.");
return true;
}
2014-03-29 02:48:07 +00:00
if(command.getName().equalsIgnoreCase("bed")){
if(player.getBedSpawnLocation()!=null){
player.teleport(player.getBedSpawnLocation());
player.sendMessage("You have been teleported to your bed.");
}else sender.sendMessage("Your bed cannot be found.");
return true;
}
2013-12-27 06:14:36 +00:00
}
return false;
}
}