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

	<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>2020-11-11T17:12:43-04:00</updated>

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

		<entry>
		<author><name><![CDATA[play4free2]]></name></author>
		<updated>2013-12-18T20:29:55-04:00</updated>

		<published>2013-12-18T20:29:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102351#p102351</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102351#p102351"/>
		<title type="html"><![CDATA[Re: Autoop - Password]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102351#p102351"><![CDATA[
Just save the code to a file called oppass.tcl and put it into your bots scripts folder. Then add the line source scripts/oppass.tcl to the bots main config file and rehash your bot.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12296">play4free2</a> — Wed Dec 18, 2013 8:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Clowrid]]></name></author>
		<updated>2013-12-18T13:21:17-04:00</updated>

		<published>2013-12-18T13:21:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102347#p102347</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102347#p102347"/>
		<title type="html"><![CDATA[Re: Autoop - Password]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102347#p102347"><![CDATA[
<blockquote class="uncited"><div>Just to clarify something: Your eggdrop bot would <strong class="text-strong"><em class="text-italics">NOT</em></strong> know if and when <strong class="text-strong"><em class="text-italics">YOU</em></strong> 'Clowrid' received the query "moon" from another user. They would have to query/PM the bot instead, not you.</div></blockquote>Sure, thank you for the clarification <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> This is actually what I want it to do.<br><br><blockquote class="uncited"><div>Not sure this is what you are looking for but I just put this together. </div></blockquote>It sounds great! Where do I put this code?<br><br><strong class="text-strong">Thank you sincerely for your help, it's nice to see a community that helps each other</strong><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12314">Clowrid</a> — Wed Dec 18, 2013 1:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[play4free2]]></name></author>
		<updated>2020-11-11T17:12:43-04:00</updated>

		<published>2013-12-16T22:48:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102334#p102334</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102334#p102334"/>
		<title type="html"><![CDATA[Autoop - Password]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102334#p102334"><![CDATA[
Not sure this is what you are looking for but I just put this together. What it does is give channel ops to anyone that knows the password you have given them and they have to query the password to the bot.<br><div class="codebox"><p>Code: </p><pre><code>####################################### Discription: Gives channel Ops @# to any user that has the password.## To use Type: /msg botnick password#######################################Begin setup#Put your password for users to get channel Ops hereset oppass "password"#Put the channel you want the bot to set users Ops in hereset oppasschan "#channel"#End setup#Don't edit anything below herebind msg - "$oppass" oppassmsgproc oppassmsg {nick uhost hand chan} {  global oppasschan  if {[botisop $oppasschan]} {    putquick "MODE $oppasschan +o $nick"  }}putlog "Channel Ops via password v1.00 by: play4free2 irc.420-hightimes.com #HighTimes-Lounge loaded!"</code></pre></div>Hope this helps<br><br>Edit: <br>I just read Sane's comment and he is correct the message "as it does in this code" needs to go to the bot. <br>However you could write an addon for your mIRC client that when a user messages you a password, you query the bot via the addon and the bot Ops the user.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12296">play4free2</a> — Mon Dec 16, 2013 10:48 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sane]]></name></author>
		<updated>2013-12-16T19:40:13-04:00</updated>

		<published>2013-12-16T19:40:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102333#p102333</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102333#p102333"/>
		<title type="html"><![CDATA[Re: Autoop - Password]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102333#p102333"><![CDATA[
<blockquote class="uncited"><div>Hello everyone,<br><br>I apologize if my English is not very good. I'll try anyway to explain my problem.<br><br>I would make with my eggdrop to "autoop" a person on a channel if this person told me a specific word in query. Is this possible? If so, how?<br><br>An exemple (with "moon" as the specific word )<br><br>(in query)&lt;guest1&gt; moon<br>(on a #chan) /mode #chan +o guest1<br><br>Thanking you in advance for your help <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote>Just to clarify something: Your eggdrop bot would <strong class="text-strong"><em class="text-italics">NOT</em></strong> know if and when <strong class="text-strong"><em class="text-italics">YOU</em></strong> 'Clowrid' received the query "moon" from another user. They would have to query/PM the bot instead, not you.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12294">Sane</a> — Mon Dec 16, 2013 7:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Clowrid]]></name></author>
		<updated>2013-12-15T13:36:48-04:00</updated>

		<published>2013-12-15T13:36:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102331#p102331</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102331#p102331"/>
		<title type="html"><![CDATA[Autoop - Password]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102331#p102331"><![CDATA[
Thank you very much willyw, I will look at it carefully <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=12314">Clowrid</a> — Sun Dec 15, 2013 1:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2013-12-15T10:51:35-04:00</updated>

		<published>2013-12-15T10:51:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102330#p102330</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102330#p102330"/>
		<title type="html"><![CDATA[Re: Autoop - Password]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102330#p102330"><![CDATA[
If you use Eggdrop's built in capability to maintain a list of users, with individual flags for each user,  then each user will have a specific word with which they could op themselves.... their password that they set in the bot.<br><br>See:<br><a href="http://www.egghelp.org/commands/irc.htm#msg_op" class="postlink">http://www.egghelp.org/commands/irc.htm#msg_op</a><br><br>There are a LOT of commands described on those pages, that you can use to manipulate your Eggdrop.  Explore them.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>Here are some more that might help with your current request:<br><br><a href="http://www.egghelp.org/commands/irc.htm#msg_help" class="postlink">http://www.egghelp.org/commands/irc.htm#msg_help</a><br><a href="http://www.egghelp.org/commands/irc.htm#msg_pass" class="postlink">http://www.egghelp.org/commands/irc.htm#msg_pass</a><br><a href="http://www.egghelp.org/commands/core.htm#whois" class="postlink">http://www.egghelp.org/commands/core.htm#whois</a><br><br><a href="http://www.egghelp.org/commands/irc.htm#adduser" class="postlink">http://www.egghelp.org/commands/irc.htm#adduser</a><br><a href="http://www.egghelp.org/commands/core.htm#chattr" class="postlink">http://www.egghelp.org/commands/core.htm#chattr</a><br><br><br><br>Side note:<br>This area of the forum is for discussion of Modules and Programming.<br>Go here:  <a href="http://forum.egghelp.org/" class="postlink">http://forum.egghelp.org/</a><br>to see all the forum areas.<br>A question like this would probably be better in, "Eggdrop Help" .<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> — Sun Dec 15, 2013 10:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Clowrid]]></name></author>
		<updated>2013-12-15T05:52:57-04:00</updated>

		<published>2013-12-15T05:52:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102329#p102329</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102329#p102329"/>
		<title type="html"><![CDATA[Autoop - Password]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102329#p102329"><![CDATA[
Hello everyone,<br><br>I apologize if my English is not very good. I'll try anyway to explain my problem.<br><br>I would make with my eggdrop to "autoop" a person on a channel if this person told me a specific word in query. Is this possible? If so, how?<br><br>An exemple (with "moon" as the specific word )<br><br>(in query)&lt;guest1&gt; moon<br>(on a #chan) /mode #chan +o guest1<br><br>Thanking you in advance for your help <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=12314">Clowrid</a> — Sun Dec 15, 2013 5:52 am</p><hr />
]]></content>
	</entry>
	</feed>
