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

	<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>2012-07-11T03:52:03-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Zammo]]></name></author>
		<updated>2012-07-11T03:52:03-04:00</updated>

		<published>2012-07-11T03:52:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99717#p99717</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99717#p99717"/>
		<title type="html"><![CDATA[Setting +a &amp; +q usermodes]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99717#p99717"><![CDATA[
Thanks Blake, this was a problem I still needed to be solved <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=11992">Zammo</a> — Wed Jul 11, 2012 3:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[blake]]></name></author>
		<updated>2012-07-10T23:18:56-04:00</updated>

		<published>2012-07-10T23:18:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99716#p99716</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99716#p99716"/>
		<title type="html"><![CDATA[Setting +a &amp; +q usermodes]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99716#p99716"><![CDATA[
An oldish post I know just incase its not been solved here is some code i use your eggdrop will obviously require oper level privs but here it is <br><div class="codebox"><p>Code: </p><pre><code>bind msg A|A protect cmd:protect proc cmd:protect {nick uhost hand arg} { global channels   set chan [lindex [split $arg] 0] foreach c $channels { if {!([matchattr $hand n|n $chan]) &amp;&amp; [string match -nocase $c $chan]} { return 0 } }   putserv "OPERSERV MODE $chan +ao $nick" }  set channels { "#addchannel"} bind msg A|A deprotect cmd:deprotect proc cmd:deprotect {nick uhost hand arg} { global channels   set chan [lindex [split $arg] 0] foreach c $channels { if {!([matchattr $hand n|n $chan]) &amp;&amp; [string match -nocase $c $chan]} { return 0 } }   putserv "OPERSERV MODE $chan -ao $nick" }  set channels { "#Addchannel" } </code></pre></div><br>This section is so you can add channels you dont want them getting opered in<br><div class="codebox"><p>Code: </p><pre><code>set channels { "#Addchannel" } </code></pre></div>They will have to be added to your bots user list for this to work with the A flag all they need to do is type<br><br>/msg botnick protect #channel<br>/msg botnick deprotect #channel<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10512">blake</a> — Tue Jul 10, 2012 11:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2012-05-10T16:01:55-04:00</updated>

		<published>2012-05-10T16:01:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99375#p99375</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99375#p99375"/>
		<title type="html"><![CDATA[Re: Setting +a &amp; +q usermodes]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99375#p99375"><![CDATA[
<blockquote class="uncited"><div>I have searched and searched through the forum, help pages, scripts archive and various website looking for any info on how I can get my eggdrop to set +a &amp; +q usermodes on a UnrealIRCd network. I doubt I am the first person to ask this question but my searches have come up with nothing.<br><br>Is there a way I can give my eggdrop the ability to set these extra usermodes? Does anyone know of a script that will do it?<br></div></blockquote>I haven't fiddled around with a complete script for this, but :<br><div class="codebox"><p>Code: </p><pre><code>.tcl putserv "mode #channel +a some_nick"</code></pre></div>in the partyline works fine.  I just tried it, using a bot that is on an Unreal irc network.<br><br>If you have enabled use of <br>.tcl<br>for yourself (it is in eggdrop.conf) ,  try the above.<br><br>Once you are sure that it works, then you can experiment with writing your own script.<br><br>Also, you might find something useful here:<br><a href="http://thommey.tclhelp.net/?page=scripts" class="postlink">http://thommey.tclhelp.net/?page=scripts</a><br>See:  Arbitrary chanmodes (+q, +a)<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> — Thu May 10, 2012 4:01 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[FightingNavyman]]></name></author>
		<updated>2012-05-10T15:44:22-04:00</updated>

		<published>2012-05-10T15:44:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99374#p99374</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99374#p99374"/>
		<title type="html"><![CDATA[Setting +a &amp; +q usermodes]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99374#p99374"><![CDATA[
same here i want my bots to give +a and or +q to my friends<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11503">FightingNavyman</a> — Thu May 10, 2012 3:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Zammo]]></name></author>
		<updated>2012-05-10T15:09:19-04:00</updated>

		<published>2012-05-10T15:09:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99373#p99373</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99373#p99373"/>
		<title type="html"><![CDATA[Setting +a &amp; +q usermodes]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99373#p99373"><![CDATA[
I have searched and searched through the forum, help pages, scripts archive and various website looking for any info on how I can get my eggdrop to set +a &amp; +q usermodes on a UnrealIRCd network. I doubt I am the first person to ask this question but my searches have come up with nothing.<br><br>Is there a way I can give my eggdrop the ability to set these extra usermodes? Does anyone know of a script that will do it?<br><br>Any help would really be appreciated <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=11992">Zammo</a> — Thu May 10, 2012 3:09 pm</p><hr />
]]></content>
	</entry>
	</feed>
