Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1.         public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args){
  2.                 Player player = (Player) sender;
  3.                 if(commandLabel.equalsIgnoreCase("motd")){
  4.             String message = ChatColor.GOLD + getConfig().getString("MOTD", "Stuff you won't read..").replaceAll("&", "ยง");
  5.             player.sendMessage(message);
  6.                 }
  7.                 return false;
  8.         }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement