<?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/6371" />

	<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>2008-04-09T17:43:13-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Gordon]]></name></author>
		<updated>2008-04-09T17:43:13-04:00</updated>

		<published>2008-04-09T17:43:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82246#p82246</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82246#p82246"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82246#p82246"><![CDATA[
they have got it working in #zerodayxxxpasswords @ EFNet<br><br>it looks pretty good, any idea what script they are using?<br><br>(channel is not related to its name, its a support chan for a vbulletin board)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8876">Gordon</a> — Wed Apr 09, 2008 5:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ReaL|DoG]]></name></author>
		<updated>2007-07-09T07:53:37-04:00</updated>

		<published>2007-07-09T07:53:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74285#p74285</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74285#p74285"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74285#p74285"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>OK NOW THE TCL listen 13481 script vbulletinaccept proc vbulletinaccept {idx} { control $idx vbincoming } proc vbincoming {idx args} { putlog "$args"              set line [join $args]         if {[join $args] != "" } {               set chan [lindex $line 0] set line [lrange $line 1 end] set line [join $line]                set line [split $line ";"] foreach line $line { putserv "PRIVMSG $chan :$line" } putlog "$line"         } killdcc $idx } putlog "vbulletin.tcl Loaded..."</code></pre></div>there is a small part with tcl script.<br><br>Anyway.. thanks for help.. i've already founded what I need.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7597">ReaL|DoG</a> — Mon Jul 09, 2007 7:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2007-07-09T06:40:32-04:00</updated>

		<published>2007-07-09T06:40:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74283#p74283</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74283#p74283"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74283#p74283"><![CDATA[
Doesnt look like a tcl script to me, tcl doesn't use // for comments that I'm aware of..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Mon Jul 09, 2007 6:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ReaL|DoG]]></name></author>
		<updated>2007-07-09T06:02:40-04:00</updated>

		<published>2007-07-09T06:02:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74282#p74282</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74282#p74282"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74282#p74282"><![CDATA[
<blockquote class="uncited"><div>Ok I did reply earlier but figure you may as well just use the following so I edited the post.<br><br>This is tried and tested and does work I promise<br><div class="codebox"><p>Code: </p><pre><code>add to functions.php or create a seperate file and add to newthread.php require_once('./your_new_file_name.php');// THE PHPfunction irc_send($ta,$text) { // options $serverip= "123.123.123.123"; // PUT IP OF YOUR BOT HERE $serverport= "13481"; // check if target and text aint empty if ($ta=="" || $text=="") {  return; } // do splitchar $text = ereg_replace(";", ":", $text); $text = ereg_replace("&lt;br&gt;", ";", $text); // add md5 hash $line="$ta $text"; // open socket and put the line $socket = @fsockopen ($serverip, $serverport, $null, $null, 30);  if (!$socket) {  echo " no connection made ";} if ($socket) {  @fputs($socket,"$line\n");          for($i=0;$i&lt;400000;$i++)        {            $g=$i;        }  fclose($socket); }}function irc_checkid($forumid) {  $public[forumids]="2 4 5 6 9 10 11 13 14 15 16 17 18 19 20 21 27 28 29 30 31 32 33 34";  $public[chan]="#yourchan";    $forumids=explode(" ", $public[forumids]);  while ( list($n, $id) = each($forumids)) {    if ($forumid == $id) {    return "$public[chan]";   }  }    return "";}// END OF FUNCTIONSNow in newthread.phpsomewhere just before the following : eval("standardredirect("".gettemplate("redirect_postthanks")."","$goto");");ADD THIS$text2  = "\002[\00311,01Board\00300,01]\002 New thread in: \002$forumname[title]\002 Poster: \002$postusername \002 Subject: \002 $subject\002&lt;br&gt;";$text2 .= 002[\00311,01Board\00300,01]\002 Link: http://www.mydomain.com/showthread.php?threadid=$threadid\002";$chan=irc_checkid($forumid);irc_send($ta=$chan,$text=$text2);OK NOW THE TCL listen 13481 script vbulletinacceptproc vbulletinaccept {idx} {control $idx vbincoming}proc vbincoming {idx args} {putlog "$args"             set line [join $args]        if {[join $args] != "" } {              set chan [lindex $line 0]set line [lrange $line 1 end] set line [join $line]               set line [split $line ";"]foreach line $line { putserv "PRIVMSG $chan :$line" }putlog "$line"        }killdcc $idx}putlog "vbulletin.tcl Loaded..."</code></pre></div>Proof if it was needed hehe<br><br>1:48:28 AM &lt;@STS-BoT&gt; [New Post Announcement]<br>1:48:29 AM &lt;@STS-BoT&gt; Topic by ShavedApe: Trivia now running on STS-bot in GENERAL-CONVERSATION<br>1:48:30 AM &lt;@STS-BoT&gt; Url: <a href="http://virgo.lunarpages.com/~q-rpc02/showthread.php?threadid=335" class="postlink">http://virgo.lunarpages.com/~q-rpc02/sh ... readid=335</a><br>1:54:33 AM &lt;@STS-BoT&gt; [New Post Announcement]<br>1:54:34 AM &lt;@STS-BoT&gt; Topic by venmx: which side are you on, sony or microsoft? in GAMES-AND-CONSOLES-DISCUSSION<br>1:54:35 AM &lt;@STS-BoT&gt; Url: <a href="http://virgo.lunarpages.com/~q-rpc02/showthread.php?threadid=336" class="postlink">http://virgo.lunarpages.com/~q-rpc02/sh ... readid=336</a></div></blockquote>Does this script works for 3.6.0 ?.. <br>When I edit newthread.php, I connot find<div class="codebox"><p>Code: </p><pre><code>eval("standardredirect("".gettemplate("redirect_postthanks")."","$goto");");</code></pre></div>// THE PHP<br>function irc_send($ta,$text) {<br><br>I need to put it in my new file.. or in functions.php ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7597">ReaL|DoG</a> — Mon Jul 09, 2007 6:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2007-07-09T04:07:13-04:00</updated>

		<published>2007-07-09T04:07:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74279#p74279</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74279#p74279"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74279#p74279"><![CDATA[
<blockquote class="uncited"><div>i already have vbulletin software.. i need only the script .tcl <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> <br>If it's possible to have it.. it's ok.. if not.. it's ok too <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote><blockquote class="uncited"><div>but i need to have a licence (the licence cost about 78$) </div></blockquote>Tcl is released under the <a href="http://www.gnu.org/copyleft/gpl.html" class="postlink">GNU General Public License</a>.<br><br>If you cannot find this particular script in the <a href="http://www.egghelp.org/tcl.htm" class="postlink">Tcl Archive</a> or via <a href="http://www.google.com/" class="postlink">Google</a> then the indications are there is no such script readily available and you're probably better served by making a request in the <a href="http://forum.egghelp.org/viewforum.php?f=10" class="postlink">Script Requests</a> forum.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Jul 09, 2007 4:07 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ReaL|DoG]]></name></author>
		<updated>2007-07-09T02:59:50-04:00</updated>

		<published>2007-07-09T02:59:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74278#p74278</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74278#p74278"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74278#p74278"><![CDATA[
i already have vbulletin software.. i need only the script .tcl <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> <br>If it's possible to have it.. it's ok.. if not.. it's ok too <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=7597">ReaL|DoG</a> — Mon Jul 09, 2007 2:59 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2007-07-09T02:21:42-04:00</updated>

		<published>2007-07-09T02:21:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74277#p74277</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74277#p74277"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74277#p74277"><![CDATA[
<blockquote class="uncited"><div>on google are only 2 pages with vbulletin.tcl and there is only one site where i can download that file, but i need to have a licence (the licence cost about 78$) .... I've searched on live.com, seach.yahoo.com too.. but nothing.</div></blockquote>vBulletin is <em class="text-italics">proprietary</em> software. Why would you think there would be no fee?<br><br>The script itself (if available) is open source (and free) not what it connects to (vBulletin).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Jul 09, 2007 2:21 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ReaL|DoG]]></name></author>
		<updated>2007-07-09T00:50:58-04:00</updated>

		<published>2007-07-09T00:50:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74274#p74274</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74274#p74274"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74274#p74274"><![CDATA[
on google are only 2 pages with vbulletin.tcl and there is only one site where i can download that file, but i need to have a licence (the licence cost about 78$) .... I've searched on live.com, seach.yahoo.com too.. but nothing.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7597">ReaL|DoG</a> — Mon Jul 09, 2007 12:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2007-07-09T00:26:13-04:00</updated>

		<published>2007-07-09T00:26:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74273#p74273</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74273#p74273"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74273#p74273"><![CDATA[
google?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Mon Jul 09, 2007 12:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ReaL|DoG]]></name></author>
		<updated>2007-07-08T23:39:34-04:00</updated>

		<published>2007-07-08T23:39:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74271#p74271</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74271#p74271"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74271#p74271"><![CDATA[
question: where can I get this .tcl ?.. please.. i really need it <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=7597">ReaL|DoG</a> — Sun Jul 08, 2007 11:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[cambodia]]></name></author>
		<updated>2006-01-15T09:08:52-04:00</updated>

		<published>2006-01-15T09:08:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=59399#p59399</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=59399#p59399"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=59399#p59399"><![CDATA[
any idea that this script work with vb 3.5.0 ? well i'm happy to know the script writer develop to new version as vb develop as well <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> any body got any idea ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5351">cambodia</a> — Sun Jan 15, 2006 9:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pmania]]></name></author>
		<updated>2005-05-08T09:34:01-04:00</updated>

		<published>2005-05-08T09:34:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=49199#p49199</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=49199#p49199"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=49199#p49199"><![CDATA[
Where can I download this script ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6207">pmania</a> — Sun May 08, 2005 9:34 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[cambodia]]></name></author>
		<updated>2005-03-18T15:43:19-04:00</updated>

		<published>2005-03-18T15:43:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47868#p47868</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47868#p47868"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47868#p47868"><![CDATA[
do it work with vbulletin 2.2.9 ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5351">cambodia</a> — Fri Mar 18, 2005 3:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-09-09T14:09:37-04:00</updated>

		<published>2004-09-09T14:09:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40753#p40753</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40753#p40753"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40753#p40753"><![CDATA[
does the vbulletin.tcl works for vb303 already?<p>Statistics: Posted by Guest — Thu Sep 09, 2004 2:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Garp]]></name></author>
		<updated>2004-03-14T10:34:29-04:00</updated>

		<published>2004-03-14T10:34:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34598#p34598</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34598#p34598"/>
		<title type="html"><![CDATA[vbulletin tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34598#p34598"><![CDATA[
I wrote a nifty little scipts.php which gatters the last 3 posts from  my phpbb and writes it onto a flat file.<br>The script.php does the usual mysql queries and is called all 10 minutes by cron/lynx.<br>For posting the flatfile into the channel, I use mc.readfile.tcl<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3849">Garp</a> — Sun Mar 14, 2004 10:34 am</p><hr />
]]></content>
	</entry>
	</feed>
