Skip to content

Instantly share code, notes, and snippets.

@zack6849
Created June 12, 2012 14:14
Show Gist options
  • Save zack6849/2917792 to your computer and use it in GitHub Desktop.
Save zack6849/2917792 to your computer and use it in GitHub Desktop.
//-------------------------------------------------------------------------------------
if(cmd.getName().equalsIgnoreCase("umadbro")){ // u mad class :D
if(args.length >= 1) {
Player p3 = Bukkit.getPlayer(args[0]);
if(p3 == null || !p3.isOnline()) {
sender.sendMessage(args[0] + " isn't online!");
return false;
} else {
Bukkit.broadcastMessage(ChatColor.GREEN +"hey " + p3.getName() + ", You mad bro?");
player.sendMessage(sender.getName()+ "they mad.");
return true; //Done
}
}
}
}
//---------------------------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment