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

	<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>2006-03-28T19:31:23-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-03-28T19:31:23-04:00</updated>

		<published>2006-03-28T19:31:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61490#p61490</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61490#p61490"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61490#p61490"><![CDATA[
<blockquote class="uncited"><div>But whats worng with this script now?<div class="codebox"><p>Code: </p><pre><code>set check_nick "Darton"bind pub - !ison isonlineproc isonline {chan nick} {global check_nick  if {[onchan $check_nick $chan] == 0} {        putquick "privmsg $chan :Darton is offline!" }}</code></pre></div>The error is: "Wrong args, should be {isonline chan nick}."</div></blockquote>From Tcl-commands.doc:<blockquote class="uncited"><div>PUB<br>         bind pub &lt;flags&gt; &lt;command&gt; &lt;proc&gt;<br>         procname &lt;nick&gt; &lt;user@host&gt; &lt;handle&gt; &lt;channel&gt; &lt;text&gt;<br><br>         Description: used for commands given on a channel. The first word<br>           becomes the command and everything else is the text argument.<br>         Module: irc</div></blockquote>so you need<div class="codebox"><p>Code: </p><pre><code>proc isonline {nick uhost hand chan arg} {</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Tue Mar 28, 2006 7:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tessa1]]></name></author>
		<updated>2006-03-28T17:30:11-04:00</updated>

		<published>2006-03-28T17:30:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61482#p61482</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61482#p61482"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61482#p61482"><![CDATA[
Use this <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><div class="codebox"><p>Code: </p><pre><code>bind pub -|- !ison    ison:nickproc ison:nick {nick host hand chan arg} {  global ison botnick ison_infonick  set ison(rchan) "$chan"  set isoninfonick [lindex [split $arg] 0]  if {$isoninfonick == ""} {    putquick "NOTICE $nick :Syntax: !ison &lt;Nick&gt;"    return 0   }   bind raw -|- 303 isonnick:isonline   set ison_infonick "$isoninfonick"   putquick "PRIVMSG $ison(rchan) :Please wait..."   putquick "ISON $ison_infonick"   return 0  }proc isonnick:isonline {from keyword arg} {  global ison ison_infonick botnick  if {([string match "*$ison_infonick*" $arg])} {   putserv "PRIVMSG $ison(rchan) :$ison_infonick is online!"   unbind raw -|- 303 isonnick:isonline      return 0    } else {      putserv "PRIVMSG $ison(rchan) :$ison_infonick is offline!"      unbind raw -|- 303 isonnick:isonline      return 0    }  }</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6110">tessa1</a> — Tue Mar 28, 2006 5:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[darton]]></name></author>
		<updated>2006-03-28T14:06:48-04:00</updated>

		<published>2006-03-28T14:06:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61472#p61472</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61472#p61472"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61472#p61472"><![CDATA[
But whats worng with this script now?<div class="codebox"><p>Code: </p><pre><code>set check_nick "Darton"bind pub - !ison isonlineproc isonline {chan nick} {global check_nick  if {[onchan $check_nick $chan] == 0} {        putquick "privmsg $chan :Darton is offline!" }}</code></pre></div>The error is: "Wrong args, should be {isonline chan nick}."<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7270">darton</a> — Tue Mar 28, 2006 2:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-03-28T12:38:53-04:00</updated>

		<published>2006-03-28T12:38:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61470#p61470</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61470#p61470"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61470#p61470"><![CDATA[
Glad you found what you wanted <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>PS: [ison] Tcl command does not exist <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Tue Mar 28, 2006 12:38 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[darton]]></name></author>
		<updated>2006-03-28T08:47:44-04:00</updated>

		<published>2006-03-28T08:47:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61465#p61465</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61465#p61465"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61465#p61465"><![CDATA[
<blockquote class="uncited"><div>The [onchan] command checks if &lt;nick&gt; is inside &lt;chan&gt; where the bot is inside &lt;chan&gt; as well. </div></blockquote>This is exactly what I want to have.<blockquote class="uncited"><div>I was talking about [ison] tcl command and not server command.</div></blockquote>I am talking about the tcl-command, too.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7270">darton</a> — Tue Mar 28, 2006 8:47 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-03-27T19:59:19-04:00</updated>

		<published>2006-03-27T19:59:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61445#p61445</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61445#p61445"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61445#p61445"><![CDATA[
I was talking about [ison] tcl command and not server command.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Mon Mar 27, 2006 7:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[darton]]></name></author>
		<updated>2006-03-27T15:31:51-04:00</updated>

		<published>2006-03-27T15:31:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61440#p61440</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61440#p61440"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61440#p61440"><![CDATA[
This is a quote of you Sir_Fz:<blockquote class="uncited"><div>ison<br>well thats not a valid command<br><br>instead:<br><br>from TCL-commands.doc<br>Quote:<br>onchan &lt;nickname&gt; [channel]<br>Returns: 1 if someone by that nickname is on the specified channel (or<br>any channel if none is specified); 0 otherwise<br>Module: irc<br></div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7270">darton</a> — Mon Mar 27, 2006 3:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-03-27T15:25:40-04:00</updated>

		<published>2006-03-27T15:25:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61439#p61439</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61439#p61439"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61439#p61439"><![CDATA[
The [onchan] command checks if &lt;nick&gt; is inside &lt;chan&gt; where the bot is inside &lt;chan&gt; as well. What you need is to send ison requests to check if someone is online, try searching the forum for 'ison'.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Mon Mar 27, 2006 3:25 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[darton]]></name></author>
		<updated>2006-03-27T15:05:09-04:00</updated>

		<published>2006-03-27T15:05:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61437#p61437</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61437#p61437"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61437#p61437"><![CDATA[
<blockquote class="uncited"><div>onchan &lt;nickname&gt; [channel]<br>    Returns: 1 if someone by that nickname is on the specified channel (or<br>      any channel if none is specified); 0 otherwise<br>    Module: irc</div></blockquote>This command should be right. But I don't know really how to use it. Can anybody help me?<br>This thing doesn't work.<div class="codebox"><p>Code: </p><pre><code>set check_nick "Darton"bind pub - !ison isonlineproc isonline {chan nick} {global check_nick  if {[onchan $check_nick $chan] == 0} {        putquick "privmsg $chan :Darton is offline!" }} </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7270">darton</a> — Mon Mar 27, 2006 3:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[MMDollar]]></name></author>
		<updated>2006-03-27T14:45:24-04:00</updated>

		<published>2006-03-27T14:45:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61436#p61436</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61436#p61436"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61436#p61436"><![CDATA[
Sorry I don't know any other script<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7449">MMDollar</a> — Mon Mar 27, 2006 2:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[darton]]></name></author>
		<updated>2006-03-27T14:41:29-04:00</updated>

		<published>2006-03-27T14:41:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61435#p61435</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61435#p61435"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61435#p61435"><![CDATA[
<img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_eek.gif" width="15" height="15" alt=":shock:" title="Shocked"> I thought this script only has to be 5 lines long. And I think it isn't necessary to save everything in textfiles. Isn't there a easier way?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7270">darton</a> — Mon Mar 27, 2006 2:41 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[MMDollar]]></name></author>
		<updated>2006-03-27T12:16:59-04:00</updated>

		<published>2006-03-27T12:16:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61431#p61431</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61431#p61431"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61431#p61431"><![CDATA[
I think this is what you need <div class="codebox"><p>Code: </p><pre><code>## File, where the list of the !ison-ed users are stored.set filename "nlist.users"# Channel to whom the stuff goes.set nchan "channel"# File exits ? if no then created!if {![file exists $filename]} {    set fh [open $filename w]    puts -nonewline $fh ""    close $fh}## Don't change anything below, unless you know what you are doing!# glob varsset tell "notell"set online ""### raw 303 (ISON)bind raw - 303 online:raw### raw 325 (NS Id)bind raw - 325 whois:identedproc whois:idented {* 325 arg} {global nchan  putserv "PRIVMSG [lindex $arg 1] zabravil|si|da|vlezesh|v|kanal $nchan"}## ison is triggeredproc online:raw {* 303 arg} {  global online nchan tell  set nlist [getinfo]  string tolower $nlist  set arg [string trimleft [lrange $arg 1 end] ":"]  set arg [charfilter $arg]  if {$arg == ""} {set online1 $online    if {$tell == "tell"} {      puthelp "PRIVMSG $nchan :Noone's online."      set tell "notell"    }unset onlineset online [qonreport 1 $arg $online1]set quitted [qonreport 0 $online1 $online]set quitted [charfilter $quitted]set quitted [removespaces $quitted]if {$quitted == ""} {  return}    putserv "PRIVMSG $nchan: $quitted offline."    set online ""  } else {  if {$tell == "tell"} {  set arg [removespaces $arg]  set onchan [onlineon $arg]  set tell "notell"  set online $arg      puthelp "PRIVMSG $nchan :Online: $arg"      puthelp "PRIVMSG $nchan :Online total [llength $arg] of [llength $nlist]."      puthelp "PRIVMSG $nchan :On $nchan: [llength $onchan] of [llength $arg] online."  return}if {$online == ""} {  set arg [removespaces $arg]  set onchan [onlineon $arg]      set online $arg      puthelp "PRIVMSG $nchan :Online: $arg"      puthelp "PRIVMSG $nchan :Online total [llength $arg] of [llength $nlist]."      puthelp "PRIVMSG $nchan :On $nchan: [llength $onchan] of [llength $arg] online."      return}set foo [qonreport 0 $arg $online]if {$foo != ""} {  set foo [charfilter $foo]  set foo [removespaces $foo]  set onchan [onlineon $arg]      append online " $foo"      puthelp "PRIVMSG $nchan :Online: $foo"      puthelp "PRIVMSG $nchan :Online total [llength $arg] of [llength $nlist]."      puthelp "PRIVMSG $nchan :On $nchan: [llength $onchan] of [llength $arg] online."}set online1 $onlineunset onlineset online [qonreport 1 $arg $online1]set quitted [qonreport 0 $online1 $online]set quitted [charfilter $quitted]set quitted [removespaces $quitted]if {$quitted == ""} {  return}    putserv "PRIVMSG $nchan :$quitted offline."  }}### !isonbind pub n !ison ison:pubproc ison:pub {nick host hand chan arg} {  global nchan tell  if {[string tolower $chan] != [string tolower $nchan]} {return  }  set tell "tell"  set nlist "[getinfo]"  putserv "ISON :$nlist"}### !addison &lt;nickname(s)&gt;bind pub n !addison ison:addisonproc ison:addison {nick host hand chan arg} {  global nchan  if {[string tolower $chan] != [string tolower $nchan]} {return  }  if {[lindex $arg 0] == ""} {putserv "PRIVMSG $chan :$nick: Usage !addison &lt;nickname(s)&gt;"return  }  set nlist [getinfo]  set dontsay [dupZZ $nlist $arg 0]  if {$dontsay == ""} {set count [expr [llength $arg] + [llength $nlist]]set arg [charfilter $arg]set arg [removespaces $arg]putserv "PRIVMSG $chan :$nick: Done. Successfully added $arg. Total ($count)."writetof "$nlist $arg"set tell "tell"    putserv "ISON :$nlist"  } else {set dontsay [removespaces $dontsay]set dontsay [charfilter $dontsay]putserv "PRIVMSG $chan :There is a duplicate :$dontsay"set nlist [getinfo]        set list ""        foreach bla $arg {        if {[lsearch $list $bla] == -1} {          lappend list $bla            }        }        set final [$nlist $list 1]if {$final != ""} {  set count [expr [llength $final] + [llength $nlist]]  set final [removespaces $final]  set final [charfilter $final]  putserv "PRIVMSG $chan :$nick: Done. Successfully added $final. Total ($count)."}writetof "$nlist $final"    putserv "ISON :$nlist $final"set tell "tell"  }}## !delison &lt;nickname&gt;bind pub n !delison del_in_fdproc del_in_fd {nick uhost hand chan arg} {  global nchan  if {[string tolower $chan] != [string tolower $nchan]} {return  }  if {[llength $arg] != 1} {    puthelp "NOTICE $nick :Usage: !delison &lt;nickname|phone number&gt;"    return 0  }  set nicknames [getinfo]    set who [lindex $arg 0]  set who [charfilter $who]    if {[lsearch -exact $nicknames [lindex $arg 0]] == -1} {puthelp "NOTICE $nick :Nickname $who not found in the database!"return 0  }  regsub -all "\\\m$who\\\M" $nicknames "" nicknames  regsub -all {\s+} $nicknames { } nicknames  writetof $nicknames  puthelp "NOTICE $nick :Nickname $who erased from the database!"}## !list [nickname]bind pub n !list list_out_of_fdproc list_out_of_fd {nick uhost hand chan arg} {  global nchan  if {[string tolower $chan] != [string tolower $nchan]} {return  }  if {[llength $arg] == 0} {set nicknames [getinfo]set nicknames [charfilter $nicknames]set nicknames [removespaces $nicknames]if {$nicknames == ""} {  puthelp "NOTICE $nick :No one is added in the database!"} else {  puthelp "NOTICE $nick :Added in the database: $nicknames"}  } elseif {[llength $arg] == 1} {set nicknames [getinfo]set nicknames [string tolower $nicknames]if {[lsearch -exact $nicknames [lindex $arg 0]] == -1} {  puthelp "NOTICE $nick :[charfilter [lindex $arg 0]] not found in the database!"} else {  puthelp "NOTICE $nick :[charfilter [lindex $arg 0]] is in the database!"}  } else {puthelp "NOTICE $nick :Usage: !list \[nickname\]"  }}## The procproc notify {} {  set nlist [getinfo]  putserv "ISON :$nlist"  if {![string match *notify* [utimers]]} { utimer 30 notify }}proc charfilter {x {y ""} } {  for {set i 0} {$i &lt; [string length $x]} {incr i} {    switch -- [string index $x $i] {      "\"" {append y "\\\""}      "\\" {append y "\\\\"}      "\[" {append y "\\\["}      "\]" {append y "\\\]"}      "\}" {append y "\\\}"}      "\{" {append y "\\\{"}      default {append y [string index $x $i]}    }  }  return $y}proc getinfo {} {  global filename  set file [open $filename r]  set nlist ""  while {![eof $file]} {set chast [gets $file]    if {$chast != ""} {  append nlist $chast}  }  close $file  return $nlist}proc removespaces {arg} {  regsub {^\s+} $arg "" arg  return $arg}proc onlineon {arg} {  global nchan  set onchan ""  foreach tempchar $arg {    if {![onchan $tempchar $nchan]} {      putserv "WHOIS $tempchar"    } else {      append onchan " $tempchar"    }  }  return $onchan}proc qonreport {how arg online} {  set aq 0  set foo ""  foreach el $arg {    foreach el1 $online {  if {$el == $el1} {    set aq 1  }    }    if {$aq == $how} {  append foo " $el"}    set aq 0  }  return $foo}proc writetof {what} {  global filename  set fh [open $filename w]  puts $fh $what  close $fh}proc dupZZ {where what how} {  set dontsay ""  foreach el1 $what {if {[lsearch -exact $where $el1] != -1} {  if {$how == 0} {  append dontsay " $el1"  }    } else {  if {$how == 1} {append dontsay " $el1"  }}  }  return $dontsay}if {![string match *notify* [utimers]]} { utimer 30 notify }putlog "Modificiran ot MMDollar"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7449">MMDollar</a> — Mon Mar 27, 2006 12:16 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[darton]]></name></author>
		<updated>2006-03-27T10:18:31-04:00</updated>

		<published>2006-03-27T10:18:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61428#p61428</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61428#p61428"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61428#p61428"><![CDATA[
The easier one. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7270">darton</a> — Mon Mar 27, 2006 10:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2006-03-27T09:05:42-04:00</updated>

		<published>2006-03-27T09:05:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61425#p61425</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61425#p61425"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61425#p61425"><![CDATA[
based on trigger or /watch? besides I am sure there is something around like that for either one.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Mon Mar 27, 2006 9:05 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[darton]]></name></author>
		<updated>2006-03-27T14:42:39-04:00</updated>

		<published>2006-03-26T17:21:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61414#p61414</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61414#p61414"/>
		<title type="html"><![CDATA[Check Online Status]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61414#p61414"><![CDATA[
Hello!<br>I want my bot to check if a special nick e.g. Darton is online? If this nick is offline the bot should say "Darton is offline" and if the nick is online the bot should do nothing. It should react on the command "!ison". How is this possible?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7270">darton</a> — Sun Mar 26, 2006 5:21 pm</p><hr />
]]></content>
	</entry>
	</feed>
