Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. commands.add(new Command("!", "ping", "Ping? Pong!")
  2.         {
  3.             @Override
  4.             public void exec(String channelName, String who, String msg)
  5.             {
  6.                 ConnectionInstance.instance.messageChannel(channelName, "PONG!");
  7.             }
  8.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement