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

	<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>2007-01-04T19:13:35-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2007-01-04T19:13:35-04:00</updated>

		<published>2007-01-04T19:13:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69470#p69470</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69470#p69470"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69470#p69470"><![CDATA[
<blockquote class="uncited"><div>The script assumes your bot is <span style="text-decoration:underline">running on the machine where your site is hosted</span>.... You set the path (directory) in the config to where you want the file saved, not the url you want it saved to.<br><br><strong class="text-strong">If you have your bot running on a machine different than your site, you will need yet another script to upload your file to your web box.</strong></div></blockquote><div class="codebox"><p>Code: </p><pre><code>set web_dir /home/philip/www/</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Thu Jan 04, 2007 7:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Philip]]></name></author>
		<updated>2007-01-04T18:19:20-04:00</updated>

		<published>2007-01-04T18:19:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69469#p69469</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69469#p69469"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69469#p69469"><![CDATA[
my bot is is this file location <br>/eggdrop/<br>and my web is<br>/www/<br><br>how to i express that ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8562">Philip</a> — Thu Jan 04, 2007 6:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pavel_kbc]]></name></author>
		<updated>2007-01-04T16:48:19-04:00</updated>

		<published>2007-01-04T16:48:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69468#p69468</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69468#p69468"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69468#p69468"><![CDATA[
your problem on this line:<br>web_dir <a href="http://www.nashhosting.co.uk/bot/" class="postlink">www.nashhosting.co.uk/bot/</a> <br>change it man<br><br>its should be look like this <br>web_dir /home/philip/public_html/<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8548">pavel_kbc</a> — Thu Jan 04, 2007 4:48 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Philip]]></name></author>
		<updated>2007-01-04T16:33:51-04:00</updated>

		<published>2007-01-04T16:33:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69467#p69467</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69467#p69467"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69467#p69467"><![CDATA[
thats the code<br><div class="codebox"><p>Code: </p><pre><code># HTML2.Tcl -- a lot like ques3.tcl, but I wrote this one myself and to my#             likings PLUS improvemnets for eggdrop1.3.4!## fixed - doesn't display chan voices twice..## Original Version by kn0 &lt;keith@cs.oswego.edu&gt;# Edited for Eggdrop1.3.x by Prime &lt;Unkonwn&gt;# Set these....# Do this for every channel you wantset web_chans(#mindirectory) minidirectory.txt# What directory are your web pages in? Or what directory do you want this to# be in?set web_dir www.nashhosting.co.uk/bot/# How often do you want the page to be updated? (In minutes)set web_update 1###### Do not edit anything beyond this point!!! ######foreach i [timers] {    if {[lindex $i 1] == "web_write"} {        killtimer [lindex $i 2]    }}if ![info exists web_topic] {set web_topic(*) "*"}foreach i [channels] {set web_topic($i) ""}proc web_write {} {    global web_dir web_update botnick nick web_topic web_chans    foreach i [array names web_chans] {        set wpage $web_dir$web_chans($i)        set web_page $web_chans($i)        set web_chan $i        set a [open $wpage w]        if {$web_topic($i) == ""} {            set web_topic($i) "topic unknown"        }        puts $a "&lt;META HTTP-EQUIV=\"refresh\" content=\"[expr $web_update * 60]\; url=$web_page\"&gt;"        puts $a "&lt;TITLE&gt;$web_chan IRC channel stats (Written at [time] [date])&lt;/TITLE&gt;"        puts $a "&lt;CENTER&gt;&lt;FONT SIZE=\"6\"&gt;$nick's $web_chan stats&lt;/FONT&gt;&lt;BR&gt;&lt;I&gt;(Topic: $web_topic($i))&lt;/I&gt;&lt;/CENTER&gt;"        if {![onchan $botnick $web_chan]} {            puts $a "&lt;FONT SIZE=5&gt;&lt;B&gt;I ($nick) am currently not on $web_chan, try again later&lt;/B&gt;&lt;/FONT&gt;"            puts $a &lt;P&gt;        }        puts $a "&lt;CENTER&gt;"        puts $a "&lt;TABLE BORDER=3&gt;"        puts $a "&lt;TR&gt;&lt;TD COLSPAN=3&gt;&lt;CENTER&gt;&lt;FONT SIZE=5&gt;$web_chan, [getchanmode $web_chan] ([llength [chanlist $web_chan]] users)&lt;/FONT&gt;&lt;/CENTER&gt;&lt;/TD&gt;&lt;/TR&gt;"        puts $a "&lt;TR&gt;&lt;TD bgcolor=0000ff&gt;&lt;FONT COLOR=FF0000&gt;&lt;B&gt;Nickname&lt;/B&gt;&lt;/td&gt;&lt;td bgcolor=0000ff&gt;&lt;FONT COLOR=ffff00&gt;&lt;B&gt;Status/info line&lt;/B&gt;&lt;/td&gt;&lt;td bgcolor=0000ff&gt;&lt;font color=ff0000&gt;&lt;b&gt;Address&lt;/B&gt;&lt;/td&gt;&lt;/tr&gt;"        set chanlist [chanlist $web_chan]        set chanlist "$botnick [lsort [lrange $chanlist 1 end]]"        set oplist ""        set vlist ""        set noplist ""        set noplist2 ""        foreach i $chanlist {if [isop $i $web_chan] {lappend oplist $i} {lappend noplist $i}}        foreach i $noplist {            if [isvoice $i $web_chan] {                lappend vlist $i            } {                lappend noplist2 $i            }        }        set noplist $noplist2        foreach i "\{$oplist\} \{$noplist\} \{$vlist\}" {            foreach b $i {                set c ""                if {[isop $b $web_chan]} {set q "&lt;FONT COLOR=ff00ff&gt;@&lt;/FONT&gt;"} {set q ""}                if {[isvoice $b $web_chan]} {set q "&lt;FONT COLOR=ff00ff&gt;+&lt;/FONT&gt;"}                if {[matchattr [nick2hand $b $web_chan] b]} {append c ", (BOT)"}                if {$botnick == $b} {                    puts $a "&lt;TR&gt;&lt;TD&gt;$q$b&lt;/TD&gt;&lt;TD&gt;&lt;-- It's me!&lt;/TD&gt;&lt;/TR&gt;"                }                if {$botnick != $b} {                    set hand [nick2hand $b $web_chan]                    puts $a "&lt;TR&gt;&lt;TD&gt;$q$b&lt;/TD&gt;&lt;TD&gt;Idle [getchanidle $b $web_chan] min$c&lt;/TD&gt;&lt;TD&gt;[getchanhost $b $web_chan]&lt;/TD&gt;&lt;/TR&gt;"                    if {[getchaninfo $hand $web_chan] != "" &amp;&amp; ![matchattr $b b] &amp;&amp; $hand != "*"} {                        puts $a "&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD COLSPAN=2&gt;&lt;I&gt;Info: [getchaninfo [nick2hand $b $web_chan] $web_chan]&lt;/I&gt;&lt;/TD&gt;&lt;/TR&gt;"                    }                }            }        }        puts $a "&lt;/TABLE&gt;"        if {[chanbans $web_chan] != ""} {            puts $a "&lt;TABLE BORDER=3&gt;"            puts $a "&lt;TR&gt;&lt;TD&gt;&lt;CENTER&gt;&lt;FONT SIZE=5&gt;Bans:&lt;/FONT&gt;&lt;/CENTER&gt;&lt;/TD&gt;&lt;/TR&gt;"            foreach c [chanbans $web_chan] {                puts $a "&lt;TR&gt;&lt;TD&gt;$c&lt;/TD&gt;&lt;/TR&gt;"            }            puts $a "&lt;/TABLE&gt;"        }        puts $a "&lt;/CENTER&gt;"        puts $a &lt;HR&gt;        puts $a "Click &lt;A HREF=http://www.netscape.com&gt;here&lt;/A&gt; if you have a text-only browser.&lt;BR&gt;"        puts $a "This page is updated every $web_update minute(s)."        puts $a "&lt;CENTER&gt;-- &lt;A HREF=ftp://ftp.sodre.net/pub/eggdrop/scripts1.3/html2.tcl&gt;HTML2.Tcl&lt;/A&gt; Eggdrop 1.3 script --&lt;/CENTER&gt;"        close $a    }    timer $web_update web_write}bind topc - * web_topicproc web_topic {nick uhost handle channel vars} {    global web_topic web_chans    if {[lsearch [array names web_chans] $channel] != "-1"} {        set web_topic($channel) $vars    }}web_writeputlog "\002HTML2\002 by \037Prime\037 - Writing: [array names web_chans] :stats files"</code></pre></div> and this is the error <br><br><br><div class="codebox"><p>Code: </p><pre><code>[14:28] couldn't open "www.nashhosting.co.uk/bot/minidirectory.txt": no such file or directory    while executing"open $wpage w"    (procedure "web_write" line 7)    invoked from within"web_write"    (file "scripts/html2.tcl" line 108)    invoked from within"source scripts/html2.tcl"    (file "eggdrop.conf" line 1349)[14:28] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR)</code></pre></div>other than this script the bot is normail what do i need to do then <br><br><br>Thanks Philip<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8562">Philip</a> — Thu Jan 04, 2007 4:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[deadite66]]></name></author>
		<updated>2007-01-03T00:56:21-04:00</updated>

		<published>2007-01-03T00:56:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69440#p69440</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69440#p69440"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69440#p69440"><![CDATA[
the script makes text files in the irclivedata folder.<br>ie:<br>irclive#channnelname.txt<br><br>use <a href="http://weex.sourceforge.net/" class="postlink">http://weex.sourceforge.net/</a> or <a href="http://www.lyra.org/sitecopy/" class="postlink">http://www.lyra.org/sitecopy/</a> to upload then where they can be accessed by a website.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6296">deadite66</a> — Wed Jan 03, 2007 12:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[strikelight2]]></name></author>
		<updated>2007-01-02T18:12:14-04:00</updated>

		<published>2007-01-02T18:12:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69433#p69433</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69433#p69433"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69433#p69433"><![CDATA[
The script assumes your bot is running on the machine where your site is hosted.... You set the path (directory) in the config to where you want the file saved, not the url you want it saved to.<br><br>If you have your bot running on a machine different than your site, you will need yet another script to upload your file to your web box.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8563">strikelight2</a> — Tue Jan 02, 2007 6:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Philip]]></name></author>
		<updated>2007-01-02T17:41:43-04:00</updated>

		<published>2007-01-02T17:41:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69431#p69431</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69431#p69431"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69431#p69431"><![CDATA[
i am trying html2 but i am gtting this error<br><br><br>[15:18] Tcl error in file 'eggdrop.conf':<br>[15:18] couldn't open "<a href="http://www.nashhosting.co.uk/bot/minidirectory.html" class="postlink">www.nashhosting.co.uk/bot/minidirectory.html</a>": no such file or directory<br>    while executing<br>"open $wpage w"<br>    (procedure "web_write" line 7)<br>    invoked from within<br>"web_write"<br>    (file "scripts/html2.tcl" line 108)<br>    invoked from within<br>"source scripts/html2.tcl"<br>    (file "eggdrop.conf" line 1349)<br>[15:18] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR)<br><br><br>anyone know what i ahev to do or uplaod to the hosting<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8562">Philip</a> — Tue Jan 02, 2007 5:41 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Philip]]></name></author>
		<updated>2007-01-02T16:49:43-04:00</updated>

		<published>2007-01-02T16:49:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69428#p69428</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69428#p69428"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69428#p69428"><![CDATA[
yea i mean users in my channel<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8562">Philip</a> — Tue Jan 02, 2007 4:49 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[strikelight2]]></name></author>
		<updated>2007-01-02T16:32:24-04:00</updated>

		<published>2007-01-02T16:32:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69427#p69427</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69427#p69427"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69427#p69427"><![CDATA[
Search for "botnetstats" by Wcc at the <a href="http://www.tclscript.com" class="postlink">http://www.tclscript.com</a> script search.<br><br>If you mean users on a channel, instead of chat (which the partyline is commonly called), then search egghelp.org's script search for "html2".<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8563">strikelight2</a> — Tue Jan 02, 2007 4:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Philip]]></name></author>
		<updated>2007-01-02T16:12:26-04:00</updated>

		<published>2007-01-02T16:12:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69425#p69425</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69425#p69425"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69425#p69425"><![CDATA[
thanks how do i get it from the text file onto a website ?<br><br>Thanks Philip<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8562">Philip</a> — Tue Jan 02, 2007 4:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[deadite66]]></name></author>
		<updated>2007-01-02T16:08:39-04:00</updated>

		<published>2007-01-02T16:08:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69424#p69424</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69424#p69424"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69424#p69424"><![CDATA[
wrote this a while ago, maybe some use.<br>make a irclivedata folder in your eggdrop folder, the data files will sit in there.<br><br><br><div class="codebox"><p>Code: </p><pre><code># irclivedata.tcl version 0.1.0# code bodged by some guy @ http://ut2004.titaninternet.co.uk# this script will log every channel the eggdrop bot is on# it will update the nick list every minute# if your running the eggdrop on a seperate server to the forum you will need to upload# the logs to somewhere the forum can access it.# i use weex and cron for this, http://weex.sourceforge.net# you first need to make a folder called irclivedata in the eggdrop folder before# running this script# ie. /eggdrop/irclivedata# the data files will then be crated in that folder# don't edit anything below this line unless you know what your doing#-----------------------------------------------------------------------# create server files if they don't existforeach chan [channels] {if {![file exists "./irclivedata/usershigh$chan"]} {set fnameirc "./irclivedata/usershigh$chan"set fpirc [open $fnameirc "w"]puts $fpirc "0"puts $fpirc "no date set"close $fpirc}}bind time - * userlistrun ;# runs every minute# this prcedure gets run every minute by the above bindproc userlistrun {m h d mo y} {# main loop to parse each channelforeach chan [channels] {# read in most users number and dateset userfiletag [open "./irclivedata/usershigh$chan" "r"]set userlisttag [split [read -nonewline $userfiletag] \n]close $userfiletag# if current number of users in channel is bigger than on file then update data file set currentnumberusers [llength [chanlist $chan]]if {$currentnumberusers &gt; [lindex $userlisttag 0]} {set userfiletag [open "./irclivedata/usershigh$chan" "w"]puts $userfiletag $currentnumberusersputs $userfiletag [ctime [clock seconds]]flush $userfiletagclose $userfiletagset userfiletag [open "./irclivedata/usershigh$chan" "r"]set userlisttag [split [read -nonewline $userfiletag] \n]close $userfiletag}# make sure these list are clearset currentusersop "" ; set currentusershalfop "" ; set currentusersvoice "" ; set currentusers ""# split the users into ops, halfops, voiced and regular usersforeach userraw [chanlist $chan] {if {[isop $userraw $chan]} {append currentusersop "@$userraw, "} elseif {[ishalfop $userraw $chan]} {append currentusershalfop "%$userraw, "} elseif {[isvoice $userraw $chan]} {append currentusersvoice "+$userraw, "} else {append currentusers "$userraw, "}}# clear the listset currentusersline " "# add everyone together on one lineappend currentusersline $currentusersop $currentusershalfop $currentusersvoice $currentusers# write the current users, most users and nicks into the main fileset irclivedata [open "./irclivedata/irclive$chan.txt" "w"]puts $irclivedata " Current users online $currentnumberusers"puts $irclivedata " Most users [lindex $userlisttag 0] on [lindex $userlisttag 1]"puts $irclivedata "[string range $currentusersline 0 end-2]"close $irclivedata}}putlog "irclivedata v0.1.0 loaded"</code></pre></div>it will output a text file like this<blockquote class="uncited"><div> Current users online 51<br> Most users 73 on Sun Dec 10 17:18:00 2006<br> @SakuraBot, @`fluffy, @Xe|BNC|Fusion, @Q, @fnenu, @ne|Zofo, +MoonUnit, saka, Meow`, {Ez0}Dess[ApA], DR|Don-Research, Jonex, GsatNZ, [Ci]Rhizome, [InX]Dark_Lord, ]tla[|work, ]I[-Willow, TGS`A_Spec`, Bithir, [ST2]LSL^apero, Slainchild, Bitpull, Razz, xming, [CB]LooN, mi5|Iceman, `sunsh1ne-, topaz^bnc, Sergonium, Turo, Nic666_, reaper-work, ]I[Cruz, FC|diocrino, j-X|Ohm, Molgan, |FroG|MaLa3aR, drzizi`bnc, moose666, `reaper, Babelfish, EvenDarkerBOB, DR|Phirsty|32, Shambler[Bishop, `phat|cP|away, ]I[Static, Killer-Rabbit, Blue`off, Greyman, grep, fewmics</div></blockquote>intergrating that into a forum was done by someone else i have no idea how to do it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6296">deadite66</a> — Tue Jan 02, 2007 4:08 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Philip]]></name></author>
		<updated>2007-01-02T15:31:09-04:00</updated>

		<published>2007-01-02T15:31:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69422#p69422</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69422#p69422"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69422#p69422"><![CDATA[
can someone make that flat file for me please <br>i cant code as all <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8562">Philip</a> — Tue Jan 02, 2007 3:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Garp]]></name></author>
		<updated>2007-01-02T04:47:10-04:00</updated>

		<published>2007-01-02T04:47:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69412#p69412</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69412#p69412"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69412#p69412"><![CDATA[
I guess you want something like 'now in chat: nick1 nick 2 ...'?<br><br>It's done by writing the channellist into a flat file and integrate the flat file into the websites. That's all.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3849">Garp</a> — Tue Jan 02, 2007 4:47 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2007-01-01T22:53:23-04:00</updated>

		<published>2007-01-01T22:53:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69409#p69409</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69409#p69409"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69409#p69409"><![CDATA[
Are you talking about something like PISG? Maybe you should try searching the archive..<br><br>If you're talking about a script to show when people are online/offline/away, I'm working on a script to do that (although admittedly, not very high priority)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Mon Jan 01, 2007 10:53 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Philip]]></name></author>
		<updated>2007-01-01T20:18:46-04:00</updated>

		<published>2007-01-01T20:18:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69408#p69408</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69408#p69408"/>
		<title type="html"><![CDATA[whos in chat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69408#p69408"><![CDATA[
guys i will pay for a someone to do this for me<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8562">Philip</a> — Mon Jan 01, 2007 8:18 pm</p><hr />
]]></content>
	</entry>
	</feed>
