Advertisement
Guest User

Untitled

a guest
Jun 29th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public static net.md_5.bungee.api.ChatColor getColor(String s) {
  2. try {
  3. Class c = net.md_5.bungee.api.ChatColor.class;
  4. Method m = c.getMethod("of", String.class);
  5. Object o = m.invoke(null, s);
  6. return (net.md_5.bungee.api.ChatColor)o;
  7.  
  8. }catch (Exception e) {
  9. return net.md_5.bungee.api.ChatColor.WHITE;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement