Package org.ossnipes.snipes.lib.events

Examples of org.ossnipes.snipes.lib.events.Channel


          this.getParent().sendPrivMsg(sendTo,
              "!isuserinchan requires two arguments.");
          return;
        }

        Channel channel = this.getParent().getChannelForName(
            msgSplit[2]);

        if (channel == null)
        {
          this.getParent().sendPrivMsg(sendTo,
              "We are not in that channel.");
          return;
        }

        this.getParent().sendPrivMsg(sendTo,
            "Status: " + channel.isUserInChannel(msgSplit[1]));
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.ossnipes.snipes.lib.events.Channel

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.