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

	<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-04-27T03:54:54-04:00</updated>

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

		<entry>
		<author><name><![CDATA[TALES]]></name></author>
		<updated>2004-04-27T03:54:54-04:00</updated>

		<published>2004-04-27T03:54:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35873#p35873</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35873#p35873"/>
		<title type="html"><![CDATA[Autovoice]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35873#p35873"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code># onjoin whois nick and if the raw 307 is reply# registered nick -&gt; voice nick# the raw will only be shown when nick has identifyed.set scan(nick) "#yourchannel"bind join - "$scan(nick) *" tls:joinbind raw - 307 tls:identproc tls:join {nick host hand chan} { global tls_nick  set tls_nick $nick    putserv "WHOIS $nick"  utimer 3 tls:not:ident}proc tls:ident {from key args} { global tls_nick  set args [join $args]  set tls_nick [string tolower [lindex $args 1]]  set regist [strlwr [lindex [lrange [split $args ":"] 1 end] 0]]  #if raw 307 is a registered nick voice the chatter.  if {$regist == "is a registered nick"} {    foreach j [utimers] {        if {[lindex $j 1] == "tls:not:ident"} { killutimer [lindex $j 2] }      }  putserv "PRIVMSG #yourchannel :$tls_nick is: Registered and will be voiced."  pushmode #yourchannel +v $tls_nick  }   return 0}proc tls:not:ident {} { global tls_nick putserv "PRIVMSG #yourchannel :$tls_nick is: NOT Registered first registered your nick and identify" putserv "PRIVMSG #yourchannel :Type: /msg nickserv help REGISTER"}</code></pre></div>i think this is what you are looking for.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4104">TALES</a> — Tue Apr 27, 2004 3:54 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2004-04-24T01:09:16-04:00</updated>

		<published>2004-04-24T01:09:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35794#p35794</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35794#p35794"/>
		<title type="html"><![CDATA[Autovoice]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35794#p35794"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>setudef flag avoicebind join - * my:voiceproc my:voice {nick uhost hand chan} {  if {[isbotnick $nick] || ![channel get $chan avoice] || ![botisop $chan]} {    return  }  pushmode $chan +v $nick}</code></pre></div>From party line do ".chanset #channel +avoice" on the channel or channels you want this to be activated and ".chanset #channel -avoice" in channel or channels you want to be disabled.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sat Apr 24, 2004 1:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[K]]></name></author>
		<updated>2004-04-23T18:08:59-04:00</updated>

		<published>2004-04-23T18:08:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35790#p35790</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35790#p35790"/>
		<title type="html"><![CDATA[code]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35790#p35790"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>## autovoice.tcl##  - voices everyone in a channel when they join# What channels should this work on?#  - note, "" is for all channelsset avchan ""## Begin the codebind join - * avjoinproc avjoin {nick uhost hand chan} { global avchan botnick if {$nick == $botnick} {return 0} if {$avchan == "" &amp;&amp; [botisop $chan]} {  pushmode $chan +v $nick  return 0 } set chan [string tolower $chan] foreach i [string tolower $avchan] {  if {$i == $chan &amp;&amp; [botisop $chan]} {   pushmode $chan +v $nick   return 0  } }}putlog "Loaded autvoice.tcl by kurupt"</code></pre></div>here is the code[/code]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4489">K</a> — Fri Apr 23, 2004 6:08 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[zleppy]]></name></author>
		<updated>2004-04-22T08:11:19-04:00</updated>

		<published>2004-04-22T08:11:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35774#p35774</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35774#p35774"/>
		<title type="html"><![CDATA[Autovoice]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35774#p35774"><![CDATA[
probably easier to do yes...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4821">zleppy</a> — Thu Apr 22, 2004 8:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2004-04-22T08:03:28-04:00</updated>

		<published>2004-04-22T08:03:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35773#p35773</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35773#p35773"/>
		<title type="html"><![CDATA[Autovoice]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35773#p35773"><![CDATA[
or do on join msg nickserv info $nick see for what it replys ..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Thu Apr 22, 2004 8:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[zleppy]]></name></author>
		<updated>2004-04-22T07:49:08-04:00</updated>

		<published>2004-04-22T07:49:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35771#p35771</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35771#p35771"/>
		<title type="html"><![CDATA[Autovoice]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35771#p35771"><![CDATA[
hmmm...<br>maybe do a bind join on ur channel, and then make the bot whois the user and search the reply for "is a registered and identified user" of whaterver ur nickserv replies?<br>and then do some if's and elses?<br><br>-zleppy-<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4821">zleppy</a> — Thu Apr 22, 2004 7:49 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2004-04-22T07:37:44-04:00</updated>

		<published>2004-04-22T07:37:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35768#p35768</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35768#p35768"/>
		<title type="html"><![CDATA[Autovoice]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35768#p35768"><![CDATA[
euhm i don't think it is possible cause i can't find a way to get the users modes check with ur services i am sur they got something like that .. if they don't and u are able to get the users modes then check for mode r or something depends of course .. some services use an other flag but most services ive seen so fare use mode r check for that if ur able to then if the user has +r voice it<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Thu Apr 22, 2004 7:37 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[darkmare]]></name></author>
		<updated>2004-04-22T06:28:35-04:00</updated>

		<published>2004-04-22T06:28:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35766#p35766</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35766#p35766"/>
		<title type="html"><![CDATA[Autovoice]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35766#p35766"><![CDATA[
I know this isn't quite the answer you're looking for, but why not just set the defaults for a new user on the bot to "g", which autovoices them.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4813">darkmare</a> — Thu Apr 22, 2004 6:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-04-19T15:52:23-04:00</updated>

		<published>2004-04-19T15:52:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35711#p35711</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35711#p35711"/>
		<title type="html"><![CDATA[Autovoice]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35711#p35711"><![CDATA[
anyone???<p>Statistics: Posted by Guest — Mon Apr 19, 2004 3:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-04-18T12:07:21-04:00</updated>

		<published>2004-04-18T12:07:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35685#p35685</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35685#p35685"/>
		<title type="html"><![CDATA[Autovoice]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35685#p35685"><![CDATA[
Can anyone tell me the tcl code, <br>if a user joins a channel the bot checks if his nick is registred on nickserv,<br>if it is registered the bot will voice him if not, it won't.<br>can you help me?<p>Statistics: Posted by Guest — Sun Apr 18, 2004 12:07 pm</p><hr />
]]></content>
	</entry>
	</feed>
