Advertisement
XploreLP

Untitled

Dec 28th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. public class Test{
  2.  
  3.     public static String prefix = ChatColor.GREEN + "Network " + ChatColor.DARK_GREEN + "➠ " + ChatColor.GRAY;
  4.     public static String errorPrefix = ChatColor.RED + "Network " + ChatColor.DARK_RED + "➠ " + ChatColor.GRAY;
  5.  
  6.     public void onEnable(){
  7.         //blabla
  8.     }
  9.  
  10.     public boolean onCommand(){
  11.         player.sendMessage(prefix + "Alles in Ordnung!");
  12.         player.sendMessage(errorPrefix + "Alles ist schief gegangen!");
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement