Skip to content

Instantly share code, notes, and snippets.

@lahwran
Forked from rymate1234/stuff.java
Created September 1, 2011 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lahwran/1186374 to your computer and use it in GitHub Desktop.
Save lahwran/1186374 to your computer and use it in GitHub Desktop.
Ok, here is code
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package net.rymate.ChangeName;
import java.util.logging.Logger;
import net.minecraft.server.EntityPlayer;
import net.minecraft.server.EntityTracker;
import net.minecraft.server.WorldServer;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.craftbukkit.entity.CraftPlayer;
import org.bukkit.plugin.java.JavaPlugin;
/**
*
* @author rymate
*/
public class ChangePlayerName extends JavaPlugin {
Logger log = Logger.getLogger("Minecraft");
public void onDisable() {
log.info(this.getDescription().getMain() + "disabled!");
}
public void onEnable() {
log.info(this.getDescription().getMain() + "enabled!");
}
public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args) {
if (!(sender instanceof CraftPlayer)) {
sender.sendMessage("You are not an in-game player!");
return false;
}
EntityPlayer player = (EntityPlayer) ((CraftPlayer) sender).getHandle();
if (args.length > 0) {
setPlayerName(player, args[0]);
} else {
sender.sendMessage("Wrong usage! /changename <name>");
}
return true;
}
//thanks to Lahwran for this code :D
public void setPlayerName(EntityPlayer player, String newname) {
WorldServer world = (WorldServer) player.world;
EntityTracker tracker = world.tracker;
tracker.untrackEntity(player);
player.name = newname;
tracker.track(player);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment