Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
  2. Player player = (Player) sender;
  3.  
  4. if (label.equalsIgnoreCase("nick")) {
  5. if (args.length == 0) {
  6. player.sendMessage(
  7. ChatColor.BLUE + "Well, you need to enter a nickname, stupid. What, did you think it would just make one for you? Sorry, I cant make plugins that advanced yet :/");
  8. } else if (args.length == 1) {
  9. player.setDisplayName(args[1]);
  10. return true;
  11. }
  12. }
  13. return false;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement