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

	<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>2024-11-28T02:45:26-04:00</updated>

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

		<entry>
		<author><name><![CDATA[abah]]></name></author>
		<updated>2024-11-28T02:45:26-04:00</updated>

		<published>2024-11-28T02:45:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113163#p113163</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113163#p113163"/>
		<title type="html"><![CDATA[Re: setudef]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113163#p113163"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>bind pub -|- !ison ison:nicksetudef flag statusproc ison:nick {nick host hand chan arg} {   if {![channel get $chan status]} { return 0 }  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></div></blockquote>thanks working very well anda thanks @willy<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12299">abah</a> — Thu Nov 28, 2024 2:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2024-11-25T11:01:20-04:00</updated>

		<published>2024-11-25T11:01:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113158#p113158</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113158#p113158"/>
		<title type="html"><![CDATA[Re: setudef]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113158#p113158"><![CDATA[
<blockquote class="uncited"><div>...<br>i am right ?</div></blockquote>While I did post in that old thread, I like the method posted by  Mysticales  better.   <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>I believe that the link that I posted in this thread above, went directly to  Mysticales  post.   I meant to, anyway.<br><br>See the post in this thread by    simo   .<br><br>Then, the real answer to this last question from you, will be answered when you try it.   <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>Let us know how it goes.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Mon Nov 25, 2024 11:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2024-11-25T08:52:01-04:00</updated>

		<published>2024-11-25T08:52:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113157#p113157</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113157#p113157"/>
		<title type="html"><![CDATA[Re: setudef]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113157#p113157"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind pub -|- !ison ison:nicksetudef flag statusproc ison:nick {nick host hand chan arg} {   if {![channel get $chan status]} { return 0 }  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=12505">simo</a> — Mon Nov 25, 2024 8:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[abah]]></name></author>
		<updated>2024-11-25T06:23:56-04:00</updated>

		<published>2024-11-25T06:23:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113156#p113156</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113156#p113156"/>
		<title type="html"><![CDATA[Re: setudef]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113156#p113156"><![CDATA[
<blockquote class="uncited"><div>Check out:<br><br><a href="https://forum.eggheads.org/viewtopic.php?p=98054#p98054" class="postlink">viewtopic.php?p=98054#p98054</a></div></blockquote><div class="codebox"><p>Code: </p><pre><code>bind pub -|- !ison ison:nicksetudef flag statusif {([lsearch -exact [channel info $chan] {+status}] != -1)}  {proc 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>i am right ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12299">abah</a> — Mon Nov 25, 2024 6:23 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2024-11-24T09:01:14-04:00</updated>

		<published>2024-11-24T09:01:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113153#p113153</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113153#p113153"/>
		<title type="html"><![CDATA[Re: setudef]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113153#p113153"><![CDATA[
Check out:<br><br><a href="https://forum.eggheads.org/viewtopic.php?p=98054#p98054" class="postlink">viewtopic.php?p=98054#p98054</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Sun Nov 24, 2024 9:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[abah]]></name></author>
		<updated>2024-11-23T04:04:39-04:00</updated>

		<published>2024-11-23T04:04:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113141#p113141</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113141#p113141"/>
		<title type="html"><![CDATA[setudef]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113141#p113141"><![CDATA[
if i want to put setudef here can anyone help me install it ?<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=12299">abah</a> — Sat Nov 23, 2024 4:04 am</p><hr />
]]></content>
	</entry>
	</feed>
