Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

28
LINES

< > BotCompany Repo | #1002675 // Test PircBot (list channels - may return a HUGE list!)

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Uses 75K of libraries. Click here for Pure Java version (71L/1K/3K).

!752

!1002672 // pircbot library

import org.jibble.pircbot.*;

p {
  new MyBot bot;
  bot.setVerbose(true);
  bot.connect("irc.freenode.net");
  bot.joinChannel("#pircbot");
}

static class MyBot extends PircBot {
  MyBot() {
    setName("a12345");
    setAutoNickChange(true);
  }
  
  public void onConnect() {
    listChannels(">10");
  }
  
  public void onChannelInfo(String channel,
                            int userCount,
                            String topic) {
    print("Channel found: " + channel + " (" + userCount + ") - " + topic);
  }
}

Author comment

Began life as a copy of #1002673

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1002675
Snippet name: Test PircBot (list channels - may return a HUGE list!)
Eternal ID of this version: #1002675/1
Text MD5: 11f4c69a6460c923c03ca052a192d332
Transpilation MD5: 9d4a742086ed31db07021b6685db205f
Author: stefan
Category: javax
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-02-12 17:03:58
Source code size: 585 bytes / 28 lines
Pitched / IR pitched: No / No
Views / Downloads: 536 / 519
Referenced in: [show references]