<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/6255" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2003-12-17T07:29:09-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/6255</id>

		<entry>
		<author><name><![CDATA[MD87]]></name></author>
		<updated>2003-12-17T07:29:09-04:00</updated>

		<published>2003-12-17T07:29:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=31540#p31540</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=31540#p31540"/>
		<title type="html"><![CDATA[PhP script connecting to the eggdrop]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=31540#p31540"><![CDATA[
From what I remember from doing something similar, it isn't actually a problem. All it means is that eggdrop couldn't get an ident reply from the server the script was running on. There's a setting in the eggdrop.conf to reduce the time it waits for this, if that helps (sorry, I can't look it up, I'm working from my laptop and don't have a config file on here <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> )<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2374">MD87</a> — Wed Dec 17, 2003 7:29 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ShavdApe]]></name></author>
		<updated>2003-12-16T22:12:28-04:00</updated>

		<published>2003-12-16T22:12:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=31533#p31533</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=31533#p31533"/>
		<title type="html"><![CDATA[PhP script connecting to the eggdrop]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=31533#p31533"><![CDATA[
I recieve the same error you do but it does announce so perhaps check that your bot is getting the chan it needs to announce from<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4266">ShavdApe</a> — Tue Dec 16, 2003 10:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-11-29T20:47:04-04:00</updated>

		<published>2003-11-29T20:47:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=30870#p30870</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=30870#p30870"/>
		<title type="html"><![CDATA[PhP script connecting to the eggdrop]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=30870#p30870"><![CDATA[
There are no bots connected from the same ip.<br>This bot stands alone.<br><br>It's a script for vbb<br>this is the php file<br>&lt;?<br>function postonirc ($posttext) {<br>global $goto, $DB_site, $Action, $homeurl, $ircdata;<br><br>$fp = fsockopen ($ircdata[ircserver], $ircdata[ircport], $errno, $errstr, 30);<br><br>if (!$fp) { echo "$errstr ($errno)&lt;br&gt;\n";}<br>else<br>{<br>global $threadid, $postusername, $subject, $forumid;<br><br>if($ircdata[ircchannel1] != FALSE){<br>fputs($fp,$posttext);<br>}<br><br>$info .= fgets ($fp,1280);<br>fclose ($fp);<br>}<br>}<br><br>$forumname = $DB_site-&gt;query_first("SELECT title FROM forum WHERE forumid=".$forumid);<br><br>$putstring  = "§".$ircdata[ircchannel1]." ";<br>$putstring .= "§\002[\00311,01Board\00300,01]\002 New thread in: \002".$forumname[title]."\002 Poster: \002".$postusername." \002 Subject: \002".$subject."\002";<br>$putstring .= "§\002[\00311,01Board\00300,01]\002 Link: <a href="http://www.mydomain.com/%22.$goto.%22%5C002" class="postlink">http://www.mydomain.com/".$goto."\002</a>";<br>$putstring .= "\n";<br>postonirc($putstring);<br>      <br><br>?&gt;<br><br>And this is the tcl<br><br>listen 13481 script vbulletinaccept5<br>proc vbulletinaccept5 {idx5} {<br>control $idx5 vbincoming5<br>}<br>proc vbincoming5 {idx5 args5} {<br>if {[join $args5] != "" } {<br>set chan [lindex [split $args5 §] 1]<br>set msg [lindex [split $args5 §] 2]<br>set msg3 [lindex [split $args5 §] 3]<br>set msg4 [lindex [split $args5 §] 4]<br>set msg5 [lindex [split $args5 §] 5]<br>set msg6 [lindex [split $args5 §] 6]<br>set msg7 [lindex [split $args5 §] 7]<br>set msg8 [lindex [split $args5 §] 8]<br>if {[join $msg] != "" } {<br>putserv "PRIVMSG $chan : $msg"<br>}<br>if {[join $msg3] != "" } {<br>putserv "PRIVMSG $chan : $msg3"<br>}<br>if {[join $msg4] != "" } {<br>putserv "PRIVMSG $chan : $msg4"<br>}<br>if {[join $msg5] != "" } {<br>putserv "PRIVMSG $chan : $msg5"<br>}<br>if {[join $msg6] != "" } {<br>putserv "PRIVMSG $chan : $msg6"<br>}<br>if {[join $msg7] != "" } {<br>putserv "PRIVMSG $chan : $msg7"<br>}<br>if {[join $msg8] != "" } {<br>putserv "PRIVMSG $chan : $msg8"<br>}<br>}<br>killdcc $idx5<br>}<br><br>putlog "vbulletin announce script Loaded."<br><br><br>Port in the tcl and the port on the php are the same.<br><br>Grtz and thx for helping out<p>Statistics: Posted by Guest — Sat Nov 29, 2003 8:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[]Kami[]]></name></author>
		<updated>2003-11-29T17:02:01-04:00</updated>

		<published>2003-11-29T17:02:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=30866#p30866</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=30866#p30866"/>
		<title type="html"><![CDATA[PhP script connecting to the eggdrop]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=30866#p30866"><![CDATA[
Disconnect some bots connected from same ip then you and then connect.Btw whats the php script?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3559">]Kami[</a> — Sat Nov 29, 2003 5:02 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-11-29T16:59:19-04:00</updated>

		<published>2003-11-29T16:59:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=30865#p30865</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=30865#p30865"/>
		<title type="html"><![CDATA[PhP script connecting to the eggdrop]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=30865#p30865"><![CDATA[
I tried it a hundred times by now.<br>No luck.<br>Started the bot again but he still gives the same error.<br><br>Grtz,<p>Statistics: Posted by Guest — Sat Nov 29, 2003 4:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[]Kami[]]></name></author>
		<updated>2003-11-29T12:46:21-04:00</updated>

		<published>2003-11-29T12:46:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=30855#p30855</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=30855#p30855"/>
		<title type="html"><![CDATA[PhP script connecting to the eggdrop]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=30855#p30855"><![CDATA[
Already one person or bot is connected with same host on bot.Try couple of times, ti will work, just try some times..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3559">]Kami[</a> — Sat Nov 29, 2003 12:46 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-11-29T11:34:49-04:00</updated>

		<published>2003-11-29T11:34:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=30848#p30848</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=30848#p30848"/>
		<title type="html"><![CDATA[PhP script connecting to the eggdrop]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=30848#p30848"><![CDATA[
Hello<br><br>I have a question.I want to  connect from my website to the eggdrop.<br>I have a script fot it and the connection is made.<br><br>The only problem is that the bot don't accept it<br><br>I get <br>[16:24] Telnet connection: wmphpp03.st2.lyceu.net/35681<br>[16:24] Timeout/EOF ident connection<br><br><br>Whats the problem here and how can I solve it??<br><br><br>Grtz Tuk4,<p>Statistics: Posted by Guest — Sat Nov 29, 2003 11:34 am</p><hr />
]]></content>
	</entry>
	</feed>
