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

	<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>2015-04-24T13:23:24-04:00</updated>

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

		<entry>
		<author><name><![CDATA[juanamores]]></name></author>
		<updated>2015-04-24T13:23:24-04:00</updated>

		<published>2015-04-24T13:23:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103933#p103933</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103933#p103933"/>
		<title type="html"><![CDATA[Nicks On line and Off line RAW Numerics]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103933#p103933"><![CDATA[
Thanks <strong class="text-strong">willyw</strong>  for their important help and advice. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><br><br>I found another <a href="http://forum.egghelp.org/viewtopic.php?p=61004" class="postlink">TCL</a> is more complete than the last.<br><br>All I could not fix, was to store information, in different lines of txt file.<br>This stuff stored all nicks on line 1 of the file.<br><br>I have not come to understand how it interacts <em class="text-italics">nlist</em> list with the file <em class="text-italics">nlist.txt</em> so that it is stored that list on line 1 of the file.<br><br>I need every nick is stored on a separate line, because this TCL, I'll join with another, to work that way.<br><br>All attempts that I failed, because by modifying some of the code, another did not return me the expected results.<br><br>Perhaps someone with more knowledge and experience can make each nick is stored in each of the lines of txt file.<br><div class="codebox"><p>Code: </p><pre><code>## File, where the list of the !ison-ed users are stored.set filename "nlist.txt"# 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 "INVITE [lindex $arg 1] $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 online   set 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 $online   unset online   set 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 "INVITE $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 "ISON TCL by IRCHelp.UniBG.Net+LHG Crew ++/++ Counter by V1p3r#TCL Loaded !!!"</code></pre></div><strong class="text-strong">EDIT:</strong><br>At least, make the list of nicks look like this:<blockquote class="uncited"><div>Nick1<br>Nick2<br>Nick3</div></blockquote>at this time are as follows:<blockquote class="uncited"><div>Nick1 nick2 nick3</div></blockquote><strong class="text-strong">FINAL EDIT:</strong><br>I fixed the code, adapting my previous TCL to the latter.<br>I also eliminated the RAW303 (I coudn't utility).<br>I removed the comment in the line 6 olinenon procedure and removed the WHOIS that no longer will use.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12499">juanamores</a> — Fri Apr 24, 2015 1:23 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2015-04-22T23:38:31-04:00</updated>

		<published>2015-04-22T23:38:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103914#p103914</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103914#p103914"/>
		<title type="html"><![CDATA[Nicks On line and Off line RAW Numerics]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103914#p103914"><![CDATA[
Congratulations on your efforts.   <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br><br>Regarding the <br>while<br>loop that you used:  <br>I suppose you can use a while loop, but that isn't how I would do it.<br>(Others may differ - let's hope that somebody else comes along and comments here too. )<br><br>When working with a list like that, I tend to use a <br>foreach <br>loop to iterate through each element.<br><br>I experimented with it like this:<div class="codebox"><p>Code: </p><pre><code>     foreach n $lines {                        putserv "ison $n"     }</code></pre></div>and discovered that the bot was buffering and queuing sending the command to the server like this:<br>ison nick1 nick2<br>and discovered that wouldn't work.<br>Perhaps that is why you tried to introduce a delay with a utimer?<br><br>Here is how I did it:<div class="codebox"><p>Code: </p><pre><code>                set x 1                foreach n $lines {                        utimer $x [list putserv "ison $n"]                        incr x 3                }</code></pre></div>and on the couple tests I ran, it seems to work.<br>I didn't try it with a long list of nicks though.  Only a couple.<br><br>About the raw binds:<br>Did you look up raw 461?  It would seem that you won't even need it, due to what you are trying to do.   Therefore, I would remove that bind.<br><br>I am not good with using the scan command.  If you want to use scan, then perhaps someone else will come along to discuss that with you.<br><br>The return from ISON that triggers a raw bind 303 can be parsed using a different method though.<br><br>Like this:<div class="codebox"><p>Code: </p><pre><code>bind RAW - 303 ison:rawproc ison:raw { server keyword text } {global canal_admin        set response [lindex [split $text : ] 1]        set response [string trim $response]        if {$response ne ""} {                putserv "privmsg $canal_admin :$response is online"        }}</code></pre></div>( I can't stand to use <br>arg<br>as a variable name. It looks too much like<br>args<br>for me.  Usually, I use<br>text<br>for that variable name.  )<br><br>The above will not have the bot say anything, if the user is not online.<br>It would be easy to have it say something, if you were just doing one<br>ISON command at a time, as in a pub command by a user.<br>But doing a list of them, and due to the way ISON responds without including the nick that it checked, does not make it easy to do without possibility for confusion.  Perhaps someone else will have ideas for you on this.<br><br>I hope this helps.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Wed Apr 22, 2015 11:38 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[juanamores]]></name></author>
		<updated>2015-04-22T20:12:14-04:00</updated>

		<published>2015-04-22T20:12:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103912#p103912</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103912#p103912"/>
		<title type="html"><![CDATA[Re: Nicks On line and Off line RAW Numerics]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103912#p103912"><![CDATA[
<blockquote class="uncited"><div>And can you read it into a variable, with your script?<br><br>In your other thread here, I gave you a link to some very helpful<br>forum FAQ posts that show how to do it.<br>Have you mastered that, yet?</div></blockquote>Yes <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><blockquote class="uncited"><div>You want this to be caused by what?   A public command in a channel?<br>If so, you can use the IRC<br>ison <br>command in your script.</div></blockquote>Yes, too <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><br><br> I found this <a href="http://eggheadtcl.fortunecity.ws/demo-ison.tcl.txt" class="postlink">TCL</a> and tried to modify it, to adapt the bind msg event  bind pub event.<br>This was my attempt to modify:<div class="codebox"><p>Code: </p><pre><code>#---------------------------------------------------------------------# ison.tcl# TCL script for IRC bot eggdrop## usage: !ison## v0: 19-Sep-2002 #---------------------------------------------------------------------package require eggdrop 1.6package require Tcl 8.0#---------------------------------------------------------------------# command trigger for ison#---------------------------------------------------------------------set canal_admin #mychannel#Path of txt file whith nicksset notify1 "scripts/notify/notify.txt"bind pub -|- !ison ison_triggerproc ison_trigger {nick uhost hand chan text} {  global canal_admin notify1if {![file exists $notify1]} {putmsg $canal_admin "No such file (notify.txt) in path scripts/notify/"return } else {set fp [open $notify1 "r"]set data [read -nonewline $fp]close $fpset lines [split $data "\n"]set first [lindex $lines 0]if {$first == ""} {set lines [lreplace $lines 0 0]  set fp [open $notify1 "w"]puts $fp [join $lines "\n"]close $fp} set largo [llength $lines]if {$largo &lt; 1} { putmsg $chan "\0032Notify database is empty"; return 0}putmsg $canal_admin "\002\0032Status nicks (notify):"set x 0while {$x &lt; $largo} {set target [lindex $lines $x]putlog "Sending ISON request for $target to server"utimer 5 [list putserv "ISON $target"]# log the ison request return 1incr x}putmsg $chan "\002\0032=====End of list ($largo nicks)====="}}#---------------------------------------------------------------------# Putlog RAW reply 303 and 461 by the server#---------------------------------------------------------------------bind RAW - 303 ison:rawbind RAW - 461 ison:rawproc ison:raw { server keyword arg } {global canal_admin   # For debugging purposes.   putlog "RAW $keyword: $server, $arg"&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;(GIVING ERROR HERE, SEE THE END OF CODE COMMENTARY (*)&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;      # scan out the botnick, nick of requester and other response.   if {[scan $arg "%s :%s %\[^\n\]" bot nick response] != 3 } {   puthelp "PRIVMSG $canal_admin :$response IS OFF line IRC"    } else {puthelp "PRIVMSG $canal_admin :$response IS On line IRC"}}putlog "Loaded (version 0): demo ISON script."</code></pre></div>(*)COMMENTARY ERROR: <br>Here the code fails the argument (arg) returns the bot nick, space and two point (:) .<br> $arg should return the value of the $target variable (ie, one nick of the list).<br>This code was intended by its author, for it to be used by typing /msg bot nick ison with the 'bind msg' event.<br>I changed the code to work with 'bin pub'.<br>It is clear that bind RAW for which it was intended not work with public command.<br>Should adapt this event to work.<br><br>LOGs OF ERROR :<blockquote class="uncited"><div>RAW 303: ariel.chathispano.com, mybotnick :</div></blockquote>To be well, this log should say:<blockquote class="uncited"><div>RAW 303: ariel.chathispano.com, nick</div></blockquote>Example: <br>Suppose that the only nickname I have in the TXT file is Roger.<br>&lt;oper&gt; !ison<br>&lt;log in partyline&gt; RAW 303: ariel.chathispano.com, Roger<br><br>Then, also fails this line was intended to 'bind msg event', I guess.<blockquote class="uncited"><div># scan out the botnick, nick of requester and other response.<br>   if {[scan $arg "%s :%s %\[^\n\]" bot nick response] != 3 } {</div></blockquote>Tcl error [ison:raw]: can't read "response": no such variable<br><br><strong class="text-strong">SUMMARY</strong>: I need to adapt this <a href="http://eggheadtcl.fortunecity.ws/demo-ison.tcl.txt" class="postlink">TCL</a>  that was intended to 'bind msg' to work with me 'bind pub'.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12499">juanamores</a> — Wed Apr 22, 2015 8:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2015-04-22T00:21:58-04:00</updated>

		<published>2015-04-22T00:21:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103909#p103909</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103909#p103909"/>
		<title type="html"><![CDATA[Re: Nicks On line and Off line RAW Numerics]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103909#p103909"><![CDATA[
<blockquote class="uncited"><div>...<br><strong class="text-strong">EDIT</strong>: more info<br>My network accepts <em class="text-italics">watch</em> and <em class="text-italics">ison</em> commands.</div></blockquote><br>It depends on what you want to do.<br><br>The watch command is a command to the IRC server itself.  The server is the only way to get instant, server wide notification when a nick appears.<br>If that is what you want (I think you did want that, in your other post) , then this is the command to work with.<br><br>If you want to to create a public command, such that a user can call it from a channel,  then you want to use the IRC server command - ison .<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Wed Apr 22, 2015 12:21 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2015-04-22T00:17:25-04:00</updated>

		<published>2015-04-22T00:17:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103908#p103908</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103908#p103908"/>
		<title type="html"><![CDATA[Re: Nicks On line and Off line RAW Numerics]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103908#p103908"><![CDATA[
<blockquote class="uncited"><div>I am confused with the RAW number returned me is state of a nick on a network (on line or off line).</div></blockquote>The raw numeric returned depends on what is causing it.<br><br>In your other thread, I mentioned this:<br><a href="https://www.alien.net.au/irc/irc2numerics.html" class="postlink">https://www.alien.net.au/irc/irc2numerics.html</a> <br><br>That's one list.<br>(You can find others with Google.)<br><br>Text search it for<br>watch<br>and for<br>ison<br><br>They are in there.   <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>Be sure to look up<br>bind raw<br>in : <a href="http://www.eggheads.org/support/egghtml/1.6.21/tcl-commands.html" class="postlink">http://www.eggheads.org/support/egghtml ... mands.html</a><br>so that you can get the right syntax when using a bind raw .<br><blockquote class="uncited"><div>I created a text file with nicks (nicks.txt).</div></blockquote>And can you read it into a variable, with your script?<br><br>In your other thread here, I gave you a link to some very helpful<br>forum FAQ posts that show how to do it.<br>Have you mastered that, yet?<br><blockquote class="uncited"><div>I want to put at channel, list nicks with their status (online, offline).<br>Example:<br>My text file contains the following nicknames: nick1 nick2 nick3.<br>Suppose that only nick1 and nick2 are online.<br>I want this: <blockquote class="uncited"><div>nick1 is online<br>nick2 is online<br>nick3 is offline</div></blockquote></div></blockquote>You want this to be caused by what?   A public command in a channel?<br>If so, you can use the IRC<br>ison <br>command in your script.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Wed Apr 22, 2015 12:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[juanamores]]></name></author>
		<updated>2015-04-21T22:51:16-04:00</updated>

		<published>2015-04-21T22:51:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103907#p103907</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103907#p103907"/>
		<title type="html"><![CDATA[Re: Nicks On line and Off line RAW Numerics]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103907#p103907"><![CDATA[
<strong class="text-strong">EDIT</strong>: more info<br>My network accepts <em class="text-italics">watch</em> and <em class="text-italics">ison</em> commands.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12499">juanamores</a> — Tue Apr 21, 2015 10:51 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[juanamores]]></name></author>
		<updated>2015-04-21T19:23:26-04:00</updated>

		<published>2015-04-21T19:23:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103905#p103905</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103905#p103905"/>
		<title type="html"><![CDATA[Nicks On line and Off line RAW Numerics]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103905#p103905"><![CDATA[
I am confused with the RAW number returned me is state of a nick on a network (on line or off line).<br>I created a text file with nicks (nicks.txt).<br>I want to put at channel, list nicks with their status (online, offline).<br>Example:<br>My text file contains the following nicknames: nick1 nick2 nick3.<br>Suppose that only nick1 and nick2 are online.<br>I want this: <blockquote class="uncited"><div>nick1 is online<br>nick2 is online<br>nick3 is offline</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12499">juanamores</a> — Tue Apr 21, 2015 7:23 pm</p><hr />
]]></content>
	</entry>
	</feed>
