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

	<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>2003-11-09T18:15:25-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-11-09T18:15:25-04:00</updated>

		<published>2003-11-09T18:15:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29784#p29784</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29784#p29784"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29784#p29784"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind nick - * ident:botproc ident:bot {n u h c nw} {global nickif {[string match -nocase $nick $nw]} {putserv "PRIVMSG nickserv :identify DerKnecht *****"  }}</code></pre></div> <br>this will let the bot identify when the bot changes its nick to its original nick.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Nov 09, 2003 6:15 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-11-09T17:47:05-04:00</updated>

		<published>2003-11-09T17:47:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29783#p29783</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29783#p29783"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29783#p29783"><![CDATA[
Ok the problem is: my provider disconnects me every 24 hours (i know this isnt perfect for an eggy but ... <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy">) . my bot gets disconnected but its nick doesnt ping off.. so i got the prob that it changes to 2nd nick but when it changes back to normal nick it has to identify again, and that's what's not working<br><br>Greetings<br><br>Angel<p>Statistics: Posted by Guest — Sun Nov 09, 2003 5:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TALES]]></name></author>
		<updated>2003-11-09T10:22:41-04:00</updated>

		<published>2003-11-09T10:22:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29752#p29752</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29752#p29752"/>
		<title type="html"><![CDATA[not tested]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29752#p29752"><![CDATA[
if the server gives a raw 307 that the nick is registered this could be it. Its just an id.Did not test it.<br><div class="codebox"><p>Code: </p><pre><code>#set this to your nickserv passset tls_nickpass "nickservpass"bind time "?5 *" tls:whois bind time "00 *" tls:whois #raw 307 is for registered nickbind raw - 307 tls:identproc tls:ident {from key arg} { global tls_regist  set tls_regist [strlwr [lindex [lrange [split $arg ":"] 1 end] 0]]  if {$tls_regist == “IS A REGISTERED NICK”} {  #no need for identify kill timer    foreach j [timers] {      if {[lindex $j 1] == "tls:nickserv"} { killtimer [lindex $j 2] }      } return}proc tls:whois {nick host hand chan} { global botnick   putserv "WHOIS $botnick"  utimer 20 tls:nickserv } #proc done by Rusherproc tls:nickserv {nick uhost hand args} {  putlog "Start Identify to Nickserv"  putserv "PRIVMSG nickserv :identify $tls_nickpass"  putlog "Done Identify to Nickserv" }</code></pre></div>maybe your bot get booted because your bot identify every 5 min ?? I think a whois on your self that does not bother the server or get noticed by the server.A identify could be noticed by the server and you get booted ??<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4104">TALES</a> — Sun Nov 09, 2003 10:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Rusher2K]]></name></author>
		<updated>2003-11-09T09:30:37-04:00</updated>

		<published>2003-11-09T09:30:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29751#p29751</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29751#p29751"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29751#p29751"><![CDATA[
Use Script like :<br><br><div class="codebox"><p>Code: </p><pre><code>set nickpass "nickservpass"bind join - * nickservproc nickserv { nick uhost hand args } {    putlog "Start Identify to Nickserv"    putserv "PRIVMSG nickserv :identify $nickpass"    putlog "Done Identify to Nickserv"  }</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3034">Rusher2K</a> — Sun Nov 09, 2003 9:30 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-11-09T07:08:40-04:00</updated>

		<published>2003-11-09T07:08:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29747#p29747</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29747#p29747"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29747#p29747"><![CDATA[
why dont you make it identify on connect, or when the services notice the bot (something like "nick owned by someone else")<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Nov 09, 2003 7:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-11-09T05:36:38-04:00</updated>

		<published>2003-11-09T05:36:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29744#p29744</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29744#p29744"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29744#p29744"><![CDATA[
Sorryy... but i have to bring this up again<br>The script doesnt seem to work... <br>My bot is getting booted off every 24 hours, and after that the services won't recognize him... and keep him changing his nick every 10 seconds or so ^^<br><br>What can I do?<p>Statistics: Posted by Guest — Sun Nov 09, 2003 5:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-10-29T09:23:32-04:00</updated>

		<published>2003-10-29T09:23:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29144#p29144</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29144#p29144"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29144#p29144"><![CDATA[
you can add a handle for services and give it +f so the bot won't ignore it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Wed Oct 29, 2003 9:23 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2003-10-28T18:47:57-04:00</updated>

		<published>2003-10-28T18:47:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29126#p29126</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29126#p29126"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29126#p29126"><![CDATA[
Change some conf settings. 'flood-msg' or 'trigger-on-ignore' or both depending on what you want to achieve.<br><blockquote class="uncited"><div>ok and i think now, where i added the args, it will work finally <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"></div></blockquote>The example proc provided by the suicide dude was perfectly valid because of the special meaning of the argument name 'args' (check out <a href="http://tcl.tk/man/tcl8.4/TclCmd/proc.htm" class="postlink">http://tcl.tk/man/tcl8.4/TclCmd/proc.htm</a> for details). Your variable names has nothing to do with what's passed to the proc and you don't need the arguments in separate variables because you don't use them.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Tue Oct 28, 2003 6:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-10-28T18:22:47-04:00</updated>

		<published>2003-10-28T18:22:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29125#p29125</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29125#p29125"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29125#p29125"><![CDATA[
Oh wait my bot ignored the services... how can i prevent it from doing that?<p>Statistics: Posted by Guest — Tue Oct 28, 2003 6:22 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-10-28T18:22:10-04:00</updated>

		<published>2003-10-28T18:22:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29124#p29124</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29124#p29124"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29124#p29124"><![CDATA[
bind time "?5 * * * *" auth <br>bind time "?0 * * * *" auth <br><br>proc auth {nick host handle chan text } { <br>putserv "PRIVMSG nickserv :identify DerKnecht *****" <br>}<br><br>T'is the script and no it doesnt work =/ <br>prolly just a dumb mistake<p>Statistics: Posted by Guest — Tue Oct 28, 2003 6:22 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-10-28T18:18:40-04:00</updated>

		<published>2003-10-28T18:18:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29123#p29123</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29123#p29123"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29123#p29123"><![CDATA[
ok and i think now, where i added the args, it will work finally <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><br><br>Angel<p>Statistics: Posted by Guest — Tue Oct 28, 2003 6:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-10-28T18:13:28-04:00</updated>

		<published>2003-10-28T18:13:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29122#p29122</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29122#p29122"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29122#p29122"><![CDATA[
Ahhh fine <br><br>I just wondered why it didnt auth <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><br><br>Thank u2 =)<br><br>Angel<p>Statistics: Posted by Guest — Tue Oct 28, 2003 6:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2003-10-28T18:04:32-04:00</updated>

		<published>2003-10-28T18:04:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29121#p29121</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29121#p29121"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29121#p29121"><![CDATA[
<blockquote class="uncited"><div>bind time "?5  * * * *" mytimedproc</div></blockquote>That's every 10 minutes. (05 15 25 etc...)<br>Add another bind for "?0 *" and you've got it.<br>Oh and btw: there's no need to have several *'s in the mask...those spaces will be matched by the first *<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Tue Oct 28, 2003 6:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-10-28T17:59:54-04:00</updated>

		<published>2003-10-28T17:59:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29119#p29119</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29119#p29119"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29119#p29119"><![CDATA[
Thank u vewy much<br><br>/me bows<br><br>Angel<p>Statistics: Posted by Guest — Tue Oct 28, 2003 5:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[GodOfSuicide]]></name></author>
		<updated>2003-10-28T17:51:09-04:00</updated>

		<published>2003-10-28T17:51:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29117#p29117</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29117#p29117"/>
		<title type="html"><![CDATA[Timed commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29117#p29117"><![CDATA[
bind time "?5  * * * *" mytimedproc<br><br>proc mytimedproc {args} {<br>putserv "PRIVMSG chanserv :auth me cos i'm lame"<br>}<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1433">GodOfSuicide</a> — Tue Oct 28, 2003 5:51 pm</p><hr />
]]></content>
	</entry>
	</feed>
