Package uk.co.thomasc.scrapbanktf.command

Examples of uk.co.thomasc.scrapbanktf.command.Command


          } else {
            final String[] args = callback.getMessage().split(" ");
            final String text = Util.removeArg0(callback.getMessage());
            final String[] pArgs = text.split(" ");

            Command cmd = Commands.getCommand(args[0]);
            if (cmd != Commands.unknown) {
              response = cmd.call(Bot.this, callback.getChatterID(), pArgs, text);
            }
          }
          steamFriends.sendChatRoomMessage(callback.getChatRoomID(), EChatEntryType.ChatMsg, response);
        }
      }
View Full Code Here

TOP

Related Classes of uk.co.thomasc.scrapbanktf.command.Command

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.