Jump to content

DJ24966

Members
  • Posts

    37
  • Joined

  • Last visited

Everything posted by DJ24966

  1. Check your inbox. Address is in it.
  2. hmm, the only address I know of is http://chatterupchat.webhop.org/chat/channel.aspx?value=[GN]TheLobby&member=XS803m Replacing the [GN]TheLobby with the appropriate category and room name. Other than that, I'm lost.
  3. The limit box is not checked, and if I try and check it and set a number it will reset on it's own.
  4. Sorry to sound like a complete idiot, but where do I check the room limit? I thought I found it once before, but can't seem to now.
  5. As far as I can tell everything looks the way it did when everything was working. I've tried pulling over a new config and get the same results as well.
  6. We are using ChatCore as a webchat base, and for weeks now everything has been fine. Now starting today I can still connect through mirc without an issue, but when trying to use the webchat I get the following. Unknown command Error: Error According to Chatcore that means your banned from the network... I've tried using /msg ChanServ UNBAN Channel to remove any bans that could actually be there (We are not public yet, so it does not matter), but it makes no difference. Any help would be greatly appreciated. Thanks BTW - Here is a link to one of the Webchats if you need to check it out as well. http://chatterupchat.webhop.org/chat/channel.aspx?value=[GN]TheLobby&member=XS803m
  7. Sorry for the delay, We took some time off for the Holidays. Happy New year. Anyway, back to business. As of right now, you can just do /list and it will return every channel opened up on the server. I'm wanting it to display a logo beside the registered channels.
  8. They are registered with Chanserv through anope.
  9. 1 last request. Is it possible to have the roomlist page detect which channels are registered, and display a logo beside the room name, letting the user know it's an official channel? Thanks
  10. lol. It works fine as far as I can tell. I haven't noticed anything yet to say otherwise.
  11. Ok, I've been able to get it working for the most part, but the rooms show up like this in the room list. ]TheLobby It will join the correct room though, but is it possible to get rid of the ] in the text? <?php include("header.php"); error_reporting(E_ALL ^ E_NOTICE); $botnick = "Chatterup"; $server = "chatterup.webhop.net"; $port = "6667"; $channel = "GN"; ?> <html> <head> <meta http-equiv="Content-Language" content="en"> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Room List</title> </head> <body> <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" id="AutoNumber1" style="border-collapse: collapse"> <tr> <td width="8%" height="20" align="center" valign="middle" bgcolor="#FFFFCC" style="border-left:1px solid #333333;border-bottom:1px solid;border-top:1px solid #333333;FONT-FAMILY: verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;"> Users</td> <td width="15%" height="20" align="left" valign="middle" bgcolor="#FFFFCC" style="border-bottom:1px solid;border-top:1px solid #333333;FONT-FAMILY: verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;"> Roomname:</td> <td width="77%" height="20" align="left" valign="middle" bgcolor="#FFFFCC" style="border-right:1px solid #333333;border-top:1px solid #333333;FONT-FAMILY: verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;"> Topic:</td> </tr> <?php $fp = fsockopen($server, $port, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { fputs($fp,"USER $botnick $botnick 127.0.0.1 :php\n"); $nick = $botnick . rand(10000,99999); fputs($fp,"NICK $nick\n"); while (!feof($fp)) { usleep(50); $fget = @fgets($fp, 128); //echo "$fget <br>\n"; $match = explode(" ", $fget); $fget = ereg_replace ("\n", "", $fget); $fget = ereg_replace ("\r", "", $fget); if ($match[1] == "001") { fputs($fp,"LIST\n"); } else if ($match[0] == "PING") { fputs($fp, "PONG " . $match[1]); } else if ($match[1] == "433") { $nick = $botnick . rand(10000,99999); fputs($fp,"NICK $nick\n"); } else if ($match[1] == "323") { fputs($fp, "QUIT :bye!\n"); break; } else if ($match[1] == "322") { $match[3] = ereg_replace ("#", "", $match[3]); if (eregi ("$channel(.*)", $match[3], $chan)) { $topic = explode(":", $fget); unset($topic[0]); unset($topic[1]); $topic = implode(":", $topic); if ($color == "FBFBF7") { $color = "FFFFFF"; } else { $color = "FBFBF7"; } ?> <tr> <td width="8%" align="center" valign="middle" bgcolor="#<?php echo $color; ?>" style="border-top:1px solid #333333;border-left:1px solid #333333;border-bottom:1px solid #333333;FONT-FAMILY: verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;"><?php echo $match[4]; ?></td> <td width="15%" style="border-bottom:1px solid #333333;bordertop:1px solid #333333;border-top:1px solid #333333;FONT-FAMILY: verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;" bgcolor="#<?php echo $color; ?>"> <a href="http://chatterupchat.webhop.org/chat/channel.aspx?value=[GN<?php echo $chan[1]; ?>&member=XS803m"> <?php echo $chan[1]; ?> </a></td> <td width="77%" style="border-right:1px solid #333333;border-bottom:1px solid #333333;FONT-FAMILY:;border-top:1px solid #333333; verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;"bgcolor="#<?php echo $color; ?>"> <?php echo $topic; ?></td> </tr> <?php } } } fclose($fp); } ?> </table> </body> </html>
  12. Thanks, I'll give it a shot!
  13. I was asking err0r on MSN, and he told me to ask here, so here it goes. Is it possible to split your chats up into categories with Anope, or Unreal? I noticed in my roomlist file it had a Category field that was left blank, and was wondering if it were possible. It would be nice to have to make things cleaner. If someone could give me some insight I'd really appreciate it. Thanks
  14. Here is the final code. <?php include("header.php"); error_reporting(E_ALL ^ E_NOTICE); $botnick = ""; $server = ""; $port = "6667"; $channel = ""; ?> <html> <head> <meta http-equiv="Content-Language" content="en"> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Room List</title> </head> <body> <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" id="AutoNumber1" style="border-collapse: collapse"> <tr> <td width="8%" height="20" align="center" valign="middle" bgcolor="#FFFFCC" style="border-left:1px solid #333333;border-bottom:1px solid;border-top:1px solid #333333;FONT-FAMILY: verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;"> Users</td> <td width="15%" height="20" align="left" valign="middle" bgcolor="#FFFFCC" style="border-bottom:1px solid;border-top:1px solid #333333;FONT-FAMILY: verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;"> Roomname:</td> <td width="77%" height="20" align="left" valign="middle" bgcolor="#FFFFCC" style="border-right:1px solid #333333;border-top:1px solid #333333;FONT-FAMILY: verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;"> Topic:</td> </tr> <?php $fp = fsockopen($server, $port, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { fputs($fp,"USER $botnick $botnick 127.0.0.1 :php\n"); $nick = $botnick . rand(10000,99999); fputs($fp,"NICK $nick\n"); while (!feof($fp)) { usleep(50); $fget = @fgets($fp, 128); //echo "$fget <br>\n"; $match = explode(" ", $fget); $fget = ereg_replace ("\n", "", $fget); $fget = ereg_replace ("\r", "", $fget); if ($match[1] == "001") { fputs($fp,"LIST\n"); } else if ($match[0] == "PING") { fputs($fp, "PONG " . $match[1]); } else if ($match[1] == "433") { $nick = $botnick . rand(10000,99999); fputs($fp,"NICK $nick\n"); } else if ($match[1] == "323") { fputs($fp, "QUIT :bye!\n"); break; } else if ($match[1] == "322") { $match[3] = ereg_replace ("#", "", $match[3]); if (eregi ("$channel(.*)", $match[3], $chan)) { $topic = explode(":", $fget); unset($topic[0]); unset($topic[1]); $topic = implode(":", $topic); if ($color == "FBFBF7") { $color = "FFFFFF"; } else { $color = "FBFBF7"; } ?> <tr> <td width="8%" align="center" valign="middle" bgcolor="#<?php echo $color; ?>" style="border-top:1px solid #333333;border-left:1px solid #333333;border-bottom:1px solid #333333;FONT-FAMILY: verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;"><?php echo $match[4]; ?></td> <td width="15%" style="border-bottom:1px solid #333333;bordertop:1px solid #333333;border-top:1px solid #333333;FONT-FAMILY: verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;" bgcolor="#<?php echo $color; ?>"> <a href="http://chatterupchat.webhop.org/chat/channel.aspx?value=<?php echo $chan[1]; ?>&member=XS803m"> <?php echo $chan[1]; ?> </a></td> <td width="77%" style="border-right:1px solid #333333;border-bottom:1px solid #333333;FONT-FAMILY:;border-top:1px solid #333333; verdana;FONT-SIZE: 8pt;TEXT-DECORATION: none;"bgcolor="#<?php echo $color; ?>"> <?php echo $topic; ?></td> </tr> <?php } } } fclose($fp); } ?> </table> </body> </html>
  15. I don't even know you, and we fixed the issue anyway..
  16. I know the basics of php, and know a good deal about the irc, but like everybody else, you learn new things everyday. However, this problem still exists, even after countless hours of trying things.
  17. I've got mine working fine for IRCX, and have been trying to get one working for him. I still have not gotten anything, could someone please help us out?
  18. I talked with Kevin after he posted this, and thats all he was wanting to do was show the rooms. I figured out how to do the join now. I could help him with that much. When I tried it with IRCD, even the one that was corrected for me in the other thread, It would just sit, take forever to load, show the top table (Users, Room, Topic). Then have nothing under it. However it works fine for IRCX.
  19. I know a bit of php and had no idea where to start with mine. The stuff in that file I had never even seen before until know. Does it require major changes?
  20. I tried unrealircd with the ones here as well, and couldn't get it working. Unreal is nice because it's free, unlike what I'm currently testing. It would be nice to have one though...
×
×
  • Create New...