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

	<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>2004-03-13T14:19:44-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-13T14:19:44-04:00</updated>

		<published>2004-03-13T14:19:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34566#p34566</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34566#p34566"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34566#p34566"><![CDATA[
Your welcome.... <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=4667">Xpert</a> — Sat Mar 13, 2004 2:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[detonated]]></name></author>
		<updated>2004-03-13T11:36:50-04:00</updated>

		<published>2004-03-13T11:36:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34562#p34562</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34562#p34562"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34562#p34562"><![CDATA[
i changed some mistakes in the coding and its working fine now. anyways, big thank you to Expert for your help.  <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>set pass "[lindex $arg 1]"   if {$hand == "*"} {     putserv "privmsg $nick :You are not permitted to use my commands."     return 0 </code></pre></div>should have been this:<div class="codebox"><p>Code: </p><pre><code>set pass "[lindex $arg 0]"   if {$hand == "*"} {     putserv "privmsg $nick :You are not permitted to use my commands."     return 0 </code></pre></div>the whole coding:<div class="codebox"><p>Code: </p><pre><code>#Usage: /msg $botnick auth &lt;password&gt; proc auth:auth {nick uhost hand arg} {   global botnick   set found 0   foreach n [channels] {     if {[onchan $nick $n]} {       set found 1     }   }   if {$found == 0} {     return 0   }   if {[llength $arg] &lt; 1} {     putserv "notice $nick :Usage: /msg $botnick auth &lt;pass&gt;"     return 0   }   set pass "[lindex $arg 0]"   if {$hand == "*"} {     putserv "privmsg $nick :You are not permitted to use my commands."     return 0   }   if {[getuser $hand XTRA AUTH] == "DEAD"} {     putserv "privmsg $nick :Sorry, but you have been disabled from using my commands."     return 0   }   if {[passwdok $hand $pass]} {     setuser $hand XTRA "AUTH" "1"     putcmdlog "&lt;&lt;$nick&gt;&gt; ($uhost) !$hand! Authenticated"     putserv "notice $nick :Password accepted."     return 0     } else {     putserv "notice $nick :Password denied."   } } proc auth:signcheck {nick uhost hand chan reason} {   if {$hand == "*"} {     return 0   }   set auth "[getuser $hand XTRA "AUTH"]"   if {($auth == "") || ($auth == "0") || ($auth == "DEAD")} {     return 0   }   setuser $hand XTRA "AUTH" "0"   putlog "Auth for $nick has been expired." } proc auth:check {hand} {   set auth "[getuser $hand XTRA "AUTH"]"   if {($auth == "") || ($auth == "0") || ($auth == "DEAD")} {     return 0     } else {     return 1   } } proc auth:deauth {nick uhost hand arg} {   if {[getuser $hand XTRA AUTH] == "DEAD"} {     putserv "privmsg $nick :Sorry, but you have been disabled from using my commands."     return 0   }   if {$hand != "*"} {     setuser $hand XTRA "AUTH" "0"     putlog "&lt;&lt;$nick&gt;&gt; ($uhost) !$hand! De-authenticated"     putserv "notice $nick :Authentication has been removed."   } }</code></pre></div>this should work just fine now.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4685">detonated</a> — Sat Mar 13, 2004 11:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[detonated]]></name></author>
		<updated>2004-03-13T11:46:22-04:00</updated>

		<published>2004-03-13T10:50:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34560#p34560</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34560#p34560"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34560#p34560"><![CDATA[
should i change these too? <br>    <div class="codebox"><p>Code: </p><pre><code>if {[passwdok $nick $pass]} {     setuser $nick XTRA "AUTH" "1" </code></pre></div>    <div class="codebox"><p>Code: </p><pre><code>if {$hand != "*"} {     setuser $nick XTRA "AUTH" "0"     putlog "&lt;&lt;$nick&gt;&gt; ($uhost) !$hand! DEAUTH" </code></pre></div>i should change all $nick to $hand right?<br>i changed only the first $nick n it still produce the same error.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4685">detonated</a> — Sat Mar 13, 2004 10:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-13T10:19:36-04:00</updated>

		<published>2004-03-13T10:19:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34559#p34559</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34559#p34559"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34559#p34559"><![CDATA[
Sorry, it's my mistake.<br>Change:<div class="codebox"><p>Code: </p><pre><code>if {[passwdok $nick $pass]} {</code></pre></div>to:<div class="codebox"><p>Code: </p><pre><code>if {[passwdok $hand $pass]} {</code></pre></div><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=4667">Xpert</a> — Sat Mar 13, 2004 10:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[detonated]]></name></author>
		<updated>2004-03-13T10:09:16-04:00</updated>

		<published>2004-03-13T10:09:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34558#p34558</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34558#p34558"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34558#p34558"><![CDATA[
I keep getting the reply "password denied" even though its the correct password.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":-?" title="Confused"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4685">detonated</a> — Sat Mar 13, 2004 10:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-13T09:56:55-04:00</updated>

		<published>2004-03-13T09:56:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34556#p34556</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34556#p34556"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34556#p34556"><![CDATA[
This should work:<div class="codebox"><p>Code: </p><pre><code>bind pub n !disable pub:disablebind pub n !enable pub:enablebind msg - auth auth:authbind sign - * auth:signcheckbind msg - deauth auth:deauthbind pub o|o !act pub:actproc pub:act {nick host hand chan arg} {  global botnick  if {![auth:check $nick]} {    return 0  }  if {[llength $arg] &lt; 2} {    notice $nick "Usage: !act &lt;chan&gt; &lt;what&gt;"    return 0  }  set thechan "[lindex $arg 1]"  set what "[lrange $arg 2 end]"  if {![botonchan $thechan]} {    puthelp "NOTICE $nick :I'm not on that channel."    return 0  }  puthelp "PRIVMSG $thechan :\001ACTION\001 $what"  puthelp "NOTICE $nick :Act to $thechan: $what"  putcmdlog "&lt;&lt;$nick&gt;&gt; !$hand! ($thechan) !act $what"}# Usage: /msg $botnick auth &lt;password&gt; proc auth:auth {nick uhost hand arg} {   global botnick   set found 0   foreach n [channels] {     if {[onchan $nick $n]} {       set found 1     }   }   if {$found == 0} {    return 0  }   if {[llength $arg] &lt; 1} {     putserv "notice $nick :Usage: /msg $botnick auth &lt;pass&gt;"     return 0   }   set pass "[lindex $arg 1]"  if {$hand == "*"} {    putserv "privmsg $nick :You are not permitted to use my commands."    return 0  }  if {[getuser $nick XTRA AUTH] == "DEAD"} {     putserv "privmsg $nick :Sorry, but you have been disabled from using my commands."     return 0   }   if {[passwdok $nick $pass]} {     setuser $nick XTRA "AUTH" "1"     putcmdlog "&lt;&lt;$nick&gt;&gt; ($uhost) !$hand! AUTH ..."     putserv "notice $nick :Password accepted."     return 0    } else {     putserv "notice $nick :Password denied."   } } proc auth:signcheck {nick uhost hand chan reason} {  if {$hand == "*"} {    return 0  }  set auth "[getuser $nick XTRA "AUTH"]"  if {($auth == "") || ($auth == "0") || ($auth == "DEAD")} {     return 0  }  setuser $hand XTRA "AUTH" "0"  putlog "Auth for $nick has been expired."}proc auth:check {nick} {  set auth "[getuser $nick XTRA "AUTH"]"  if {($auth == "") || ($auth == "0") || ($auth == "DEAD")} {     return 0     } else {     return 1  } } proc auth:deauth {nick uhost hand arg} {   if {[getuser $nick XTRA AUTH] == "DEAD"} {     putserv "privmsg $nick :Sorry, but you have been disabled from using my commands."     return 0   }   if {$hand != "*"} {     setuser $nick XTRA "AUTH" "0"     putlog "&lt;&lt;$nick&gt;&gt; ($uhost) !$hand! DEAUTH"     putserv "notice $nick :Authentication has been removed."   } } </code></pre></div>Try <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=4667">Xpert</a> — Sat Mar 13, 2004 9:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[detonated]]></name></author>
		<updated>2004-03-13T09:43:57-04:00</updated>

		<published>2004-03-13T09:43:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34555#p34555</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34555#p34555"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34555#p34555"><![CDATA[
oops!  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"> <br><br>-------------------------------------------------------------------------------------<br>######binds#########<br>bind pub n !disable pub:disable<br>bind pub n !enable pub:enable<br>bind msg - auth auth:auth<br>bind sign - * auth:signcheck<br>bind msg - deauth auth:deauth<br>-------------------------------------------------------------------------------------<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4685">detonated</a> — Sat Mar 13, 2004 9:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-13T08:18:06-04:00</updated>

		<published>2004-03-13T08:18:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34553#p34553</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34553#p34553"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34553#p34553"><![CDATA[
Where are the binds? <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=4667">Xpert</a> — Sat Mar 13, 2004 8:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[detonated]]></name></author>
		<updated>2004-03-13T06:46:05-04:00</updated>

		<published>2004-03-13T06:46:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34551#p34551</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34551#p34551"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34551#p34551"><![CDATA[
----as follows----<br># Usage: /msg $botnick auth &lt;password&gt;<br>proc auth:auth {nick uhost hand arg} {<br>global botnick<br>set found 0<br>foreach n [channels] {<br>if {[onchan $nick $n]} {<br>set found 1<br>}<br>}<br>if {$found == 0} {return 0}<br>if {[llength $arg] &lt;1} {<br>notice $nick "Usage: /msg $botnick auth &lt;pass&gt;"<br>return 0<br>}<br>set pass [lindex $arg 0]<br>if {$hand == "*"} {<br>say $nick "You are not permitted to use my commands."<br>return 0<br>}<br>if {[getuser $hand XTRA AUTH] == "DEAD"} {<br>say $nick "Sorry, but you have been disabled from using my commands."<br>return 0<br>}<br>if {[passwdok $hand $pass]} {<br>setuser $hand XTRA "AUTH" "1"<br>putcmdlog "&lt;&lt;$nick&gt;&gt; ($uhost) !$hand! AUTH ..."<br>notice $nick "Password accepted."<br>return 0<br>} else {<br>notice $nick "Password denied."<br>}<br>}<br><br>proc auth:signcheck {nick uhost hand chan reason} {<br>if {$hand == "*"} {return 0}<br>if {[getuser $hand XTRA AUTH] == "DEAD"} {<br>return 0<br>}<br>setuser $hand XTRA "AUTH" "0"<br>putlog "Auth for $hand expired."<br>}<br><br>proc auth:check {hand} {<br>set auth [getuser $hand XTRA "AUTH"]<br>if {($auth == "") || ($auth == "0") || ($auth == "DEAD")} {<br>return 0<br>} else { return 1}<br>}<br><br>proc auth:deauth {nick uhost hand arg} {<br>if {[getuser $hand XTRA AUTH] == "DEAD"} {<br>say $nick "Sorry, but you have been disabled from using my commands."<br>return 0<br>}<br>if {$hand != "*"} {<br>setuser $hand XTRA "AUTH" "0"<br>putcmdlog "&lt;&lt;$nick&gt;&gt; ($uhost) !$hand! DEAUTH"<br>notice $nick "Authentication has been removed."<br>}<br>}<br>-------------------------------------------------------------------------------------<br><br>hey thanks a lot man!  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"> you're my saviour!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4685">detonated</a> — Sat Mar 13, 2004 6:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-13T06:41:10-04:00</updated>

		<published>2004-03-13T06:41:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34550#p34550</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34550#p34550"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34550#p34550"><![CDATA[
Post here all your commands of the "auth", and i'll try to fix 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=4667">Xpert</a> — Sat Mar 13, 2004 6:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[detonated]]></name></author>
		<updated>2004-03-13T06:35:50-04:00</updated>

		<published>2004-03-13T06:35:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34549#p34549</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34549#p34549"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34549#p34549"><![CDATA[
this tcl is totally haywired! even after /msg bot deauth, a notice appears saying the user is now deauth for now, but yet upon typing !command, the bot responded to it. Guess i got to go n look for another tcl. I've tried several, but it always unsuccessful. anyone with really effective public command tcl? anyways, thanks Xpert.  <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=4685">detonated</a> — Sat Mar 13, 2004 6:35 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-13T05:29:14-04:00</updated>

		<published>2004-03-13T05:29:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34544#p34544</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34544#p34544"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34544#p34544"><![CDATA[
Try this code:<div class="codebox"><p>Code: </p><pre><code>bind pub o|o !act pub:act proc pub:act {nick host hand chan arg} {   global botnick   if {![auth:check $hand]} {    puthelp "NOTICE $nick :You aren't authorized."     return 0   }   if {[llength $arg] &lt; 2} {     notice $nick "Usage: !act &lt;chan&gt; &lt;what&gt;"     return 0   }   set thechan "[lindex $arg 0]"   set what "[lrange $arg 1 end]"   if {![onchan $botnick $thechan]} {     puthelp "NOTICE $nick :I'm not on that channel."     return 0   }   puthelp "PRIVMSG $thechan :\001ACTION\001 $what"   puthelp "NOTICE $nick :Act to $thechan: $what"   putcmdlog "&lt;&lt;$nick&gt;&gt; !$hand! ($thechan) !act $what" }</code></pre></div>And if it send you a notice that your are not authorized, and you are authorized to the bot - then there is problem with the "auth:check" proc.<br>Check 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=4667">Xpert</a> — Sat Mar 13, 2004 5:29 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[detonated]]></name></author>
		<updated>2004-03-13T05:24:07-04:00</updated>

		<published>2004-03-13T05:24:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34543#p34543</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34543#p34543"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34543#p34543"><![CDATA[
yeap. the public command work if u have either performed a /dcc chat botnick or by doing a public auth.<br>-----this is the coding----<br># Usage: /msg $botnick auth &lt;password&gt;<br>proc auth:auth {nick uhost hand arg} {<br>global botnick<br>set found 0<br>foreach n [channels] {<br>if {[onchan $nick $n]} {<br>set found 1<br>}<br>}<br>if {$found == 0} {return 0}<br>if {[llength $arg] &lt;1} {<br>notice $nick "Usage: /msg $botnick auth &lt;pass&gt;"<br>return 0<br>}<br>set pass [lindex $arg 0]<br>if {$hand == "*"} {<br>say $nick "You are not permitted to use my commands."<br>return 0<br>}<br>if {[getuser $hand XTRA AUTH] == "DEAD"} {<br>say $nick "Sorry, but you have been disabled from using my commands."<br>return 0<br>}<br>if {[passwdok $hand $pass]} {<br>setuser $hand XTRA "AUTH" "1"<br>putcmdlog "&lt;&lt;$nick&gt;&gt; ($uhost) !$hand! AUTH ..."<br>notice $nick "Password accepted."<br>return 0<br>} else {<br>notice $nick "Password denied."<br>}<br>}<br>-------------------------------------------------------------------------------------<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4685">detonated</a> — Sat Mar 13, 2004 5:24 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-13T05:04:00-04:00</updated>

		<published>2004-03-13T05:04:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34542#p34542</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34542#p34542"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34542#p34542"><![CDATA[
<blockquote class="uncited"><div>i've just edited the coding n rehashed the bot. and it doesnt seem to have any effect  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cry.gif" width="15" height="15" alt=":cry:" title="Crying or Very sad"> this stupid bot is even defying the bot-owner!</div></blockquote>Do you have the "auth:check" proc?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4667">Xpert</a> — Sat Mar 13, 2004 5:04 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[detonated]]></name></author>
		<updated>2004-03-13T04:53:48-04:00</updated>

		<published>2004-03-13T04:53:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34541#p34541</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34541#p34541"/>
		<title type="html"><![CDATA[help with public command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34541#p34541"><![CDATA[
i've just edited the coding n rehashed the bot. and it doesnt seem to have any effect  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cry.gif" width="15" height="15" alt=":cry:" title="Crying or Very sad"> this stupid bot is even defying the bot-owner!<br>and the funny thing is, its working for the !banlist.<br><br>--------coding as follows for banlist--------<br><br>bind pub m|m !banlist pub:banlist<br>proc pub:banlist {nick host hand chan arg} {<br>notice $nick "-Global bans-"<br>if {[banlist] == ""} {<br>notice $nick "None"<br>} else {<br>foreach ig [banlist] {<br>set what [lindex $ig 0]<br>set by [lindex $ig 1]<br>set comment [lindex $ig 4]<br>notice $nick "$what - $by"<br>}}<br>notice $nick "-Bans for $chan-"<br>if {[banlist $chan] == ""} {<br>notice $nick "None"<br>} else {<br>foreach b [banlist $chan] {<br>set what [lindex $b 0]<br>set by [lindex $b 5]<br>set comment [lindex $b 1]<br>notice $nick "$what - $by"<br>}}<br>}<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4685">detonated</a> — Sat Mar 13, 2004 4:53 am</p><hr />
]]></content>
	</entry>
	</feed>
