irc Questions

3

Solved

After some googling an obvious answer or starting point for a Java IRC bot has not presented itself, my question; is there an existing framework to help me do build an IRC bot? Failing that, is thi...
Downright asked 1/5, 2010 at 15:4

4

Solved

Is it possible for a browser-based irc client to work without using any gateway, that is, to communicate with the irc sever directly?
irc
Baseball asked 23/4, 2010 at 5:2

2

I have to develop my own IRC Server for a project for school. School does not require much and all i have to show them is a functioning irc server which accepts multiple connections and actually pe...
Woodsia asked 27/6, 2011 at 20:56

5

I'm looking for a good, free, preferrably open source, IRC client to be embedded in a web page. The obvious requirements of supporting most browsers, if requiering a plug-in it should be a plug-in...
Mathilda asked 22/4, 2009 at 17:55

1

Solved

I'm trying to programmatically send IRC messages with the PRIVMSG command. IRC uses CRLF to delimit separate commands, so "enter" is the end of each command. I want to send a single message with l...
Wilmington asked 16/12, 2012 at 4:22

4

Solved

I want to embed a small chat window in my program that will function as a basic IRC client. This requires limited functionality such as connecting, disconnecting, listing users, and sending p...
Wales asked 25/12, 2009 at 22:17

1

Solved

I use VS 2010 in Win7. I want use IRC programatically, using IRC client library in C# for Connect to an IRC server Detect if exists a channel in IRC server Get Users list of a given channel...
Lebron asked 9/9, 2012 at 21:53

1

Solved

I am trying to make Hubot detect when a user enters or leaves a channel, but so far I have been unable to actually find ANY information pertaining to this. Does anyone have any ideas of how to do ...
Ruffina asked 25/5, 2012 at 14:7

3

Solved

I'm comparing between IRC, XMPP and a third proprietary server I have. what are the pros and cons of each and suggest others if you know any mentionable ones.
Consuetudinary asked 10/11, 2010 at 21:43

3

Solved

I'm writing python code for IRC client. I want to understand how IRC client and server communicating each other. Can anyone give me good tutorial or IRC communication architecture to understand i...
Bioscopy asked 10/11, 2010 at 17:54

3

require "socket" server = "irc.rizon.net" port = "6667" nick = "Ruby IRC Bot" channel = "#0x40" s = TCPSocket.open(server, port) s.print("USER Testing", 0) s.print("NICK #{nick}", 0) s.print("JOI...
Funke asked 1/3, 2010 at 13:25

3

Solved

I've looked at the RFC but I am still struggling. I've written a basic client in C# but I cannot find documentation for how to connect properly. Once I connect and transmit NICK and USER informati...
Alecto asked 13/12, 2011 at 13:31

2

Solved

I have a command that I want to restrict only to certain ranks. I'm using unreal3.2.6 IRC. I read this: But I still am not sure what I can do to check the users rank. I want to see if the user ...
Jacksnipe asked 18/11, 2011 at 20:19

4

Solved

Intro I've been tinkering with Twisted for the past few days, having picked up python less than a month ago. My first inclination was to play with something I know and use every day, IRC. I've got...
Quintie asked 27/10, 2011 at 6:6

4

Solved

So my question is, how would i get my bot to listen if there is a PING and if there's no ping in an interval of a minute, it will react as though the connection has been lost. How would one go abou...
Akerboom asked 28/7, 2011 at 1:5

1

I am trying to write a function that will print the lists of nicks in an IRC channel to the channel using Twisted Python. How do I do this? I have read the API documentation and I have only seen on...
Plagio asked 12/7, 2011 at 21:50

2

Is it possible to have get subset of related buffers with each emacs frame when switching and displaying buffers I mean A frame that is dedicated for GNUS will show only gnus buffers A frame th...
Nymphet asked 5/6, 2011 at 16:12

1

Solved

I'm writing an IRC client in C++ and currently I'm having an issue where, upon exit, I do: Send("QUIT :Quit\r\n"); // just an inline, variadic send() wrapper shutdown(m_hSocket, SD_BOTH); closesoc...
Eddra asked 17/4, 2011 at 21:32

3

Solved

First, please tell me if I'm not allowed to ask about this protocol here... It just seemed like the best place. Sorry if I'm wrong. So according to wikipedia the USER message goes like the followi...
irc
Diatribe asked 4/3, 2011 at 22:3

6

Solved

I want to build a bot that basically does the following: Listens to the room and interacts with users and encourages them to PM the bot. Once a user has PMed the bot engage with the client ...
Subchaser asked 8/7, 2009 at 22:17

1

Solved

How would I use a regular expression to match an IRC nickname? This is being done in Ruby if that makes a difference (it probably will, with the syntax of the regex, but who knows.) EDIT: An IRC n...
Gourde asked 2/3, 2011 at 4:4

4

Solved

I'm working on a tool that needs to send IRC messages to an internal IRC channel. This isn't a constantly running program, but rather a tool that will be invoked occasionally and needs to be able t...
Coexecutor asked 30/9, 2010 at 21:34

12

I'm trying to connect my PHP script to IRC, but it keeps timing out. I'm on the server, so I know it's up and running, I can't tell what the problem is. Could it be an error in my code? <?php ...
Yumuk asked 16/9, 2010 at 14:1

5

Solved

I was wondering if there is a good IRC channel around somewhere that allows iPhone developers to get together and talk about code and etc. Any channel already around that people are using?
Marita asked 13/11, 2008 at 21:36

2

Solved

This is a sample script. When I hit Ctrl+C, the bot quits IRC but it reconnects back after some time. How do I shut down the bot correctly? #!/usr/bin/perl package main; my $bot = Perlbot->ne...
Alfreda asked 18/3, 2010 at 16:6

© 2022 - 2024 — McMap. All rights reserved.