Package org.rsbot.event.events

Examples of org.rsbot.event.events.MessageEvent


  public Bot getBot() {
    return bot;
  }

  public void notifyMessage(final int id, final String sender, final String msg) {
    final MessageEvent m = new MessageEvent(sender, id, msg);
    bot.getEventManager().dispatchEvent(m);
  }
View Full Code Here

TOP

Related Classes of org.rsbot.event.events.MessageEvent

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.