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

	<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>2009-08-18T15:36:38-04:00</updated>

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

		<entry>
		<author><name><![CDATA[arfer]]></name></author>
		<updated>2009-08-18T15:36:38-04:00</updated>

		<published>2009-08-18T15:36:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89960#p89960</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89960#p89960"/>
		<title type="html"><![CDATA[bind pub help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89960#p89960"><![CDATA[
Read my post above.<br><br>You are definitely confusing bot flags (bot global/channel ops and hafops) with IRC channel ops and halfops).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5705">arfer</a> — Tue Aug 18, 2009 3:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[everythingdaniel]]></name></author>
		<updated>2009-08-18T15:33:18-04:00</updated>

		<published>2009-08-18T15:33:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89959#p89959</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89959#p89959"/>
		<title type="html"><![CDATA[bind pub help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89959#p89959"><![CDATA[
hmm, lo|lo does not work. <br><br><br>Is it o = ops and l=half ops?<br><br>why l? Isnt the mode for half ops h?<br><br><br>Also, I have...<br><br># Some IRC servers are using some non-standard op-like channel prefixes/modes.<br># Define them here so the bot can recognize them. Just "@" should be fine for<br># most networks. Un-comment the second line for some UnrealIRCds.<br><br>set opchars "%@"<br><br><br>Would that be correct? If that is the case, then it sould be thinking %(halfops) is ops and I would just need o|o ?<br><br><br><br>Thanks for the replies!<br><br><br><br>--Daniel L<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10819">everythingdaniel</a> — Tue Aug 18, 2009 3:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[arfer]]></name></author>
		<updated>2009-08-18T07:36:39-04:00</updated>

		<published>2009-08-18T07:36:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89949#p89949</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89949#p89949"/>
		<title type="html"><![CDATA[bind pub help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89949#p89949"><![CDATA[
Just to be clear, these are bot user flags and do not refer to the users that are physically op'd or halfop'd on the IRC channel.<br><br>In order to restrict usage to IRC channel ops :-<br><div class="codebox"><p>Code: </p><pre><code>bind PUB - !command pExecuteproc pExecute {nick uhost hand chan text} {  if {[isop $nick $chan]} {    # code here  }}</code></pre></div>In order to restrict usage to users that are both IRC channel ops AND bot global/channel ops :-<br><div class="codebox"><p>Code: </p><pre><code>bind PUB o|o !command pExecuteproc pExecute {nick uhost hand chan text} {  if {[isop $nick $chan]} {    # code here  }}</code></pre></div>If you are confusing the two different types of "ops" or "halfops" then this may be the reason why some scripts appeared not to work whilst others did.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5705">arfer</a> — Tue Aug 18, 2009 7:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2009-08-18T05:54:28-04:00</updated>

		<published>2009-08-18T05:54:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89947#p89947</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89947#p89947"/>
		<title type="html"><![CDATA[bind pub help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89947#p89947"><![CDATA[
It would be &lt;<strong class="text-strong">Global Flag</strong>&gt;<strong class="text-strong">|</strong>&lt;<strong class="text-strong">Channel Flag</strong>&gt; If you wanted Global Ops and Half Ops to use the command !info you could use <div class="codebox"><p>Code: </p><pre><code>bind pub lo|- !info info:pub</code></pre></div> If you wanted Channel Halfops and Ops to use the command !info you would use <div class="codebox"><p>Code: </p><pre><code>bind pub -|lo !info pub:info</code></pre></div> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>The use ov <div class="codebox"><p>Code: </p><pre><code>bind pub lo !info pub:info</code></pre></div> would be the same as Global Flags (the first example)<br><br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_arrow.gif" width="15" height="15" alt=":arrow:" title="Arrow"> From wot you are saying "how the bind pub -|- !info ..." works but no the others. Its probably more down to the bot not recognizing your ops/halfops <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed"><br><br><a href="http://www.eggheads.org/support/egghtml/1.6.19/tcl-commands.html#bind" class="postlink">More Info on bind</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Tue Aug 18, 2009 5:54 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[everythingdaniel]]></name></author>
		<updated>2009-08-17T15:46:33-04:00</updated>

		<published>2009-08-17T15:46:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89938#p89938</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89938#p89938"/>
		<title type="html"><![CDATA[bind pub help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89938#p89938"><![CDATA[
Hi everyone, I am just wondering about the "bind pub lo !info topic_learn" method.<br><br>Why is it sometimes written like "bind pub lo|lo !info topic_learn"? And others  just like "bind pub lo !info topic_learn"? Does the "l" mean anything?<br><br><br>Now, my probel is that I need to get a few scripts that are designed for ops, to work with half ops. I know the problem is in the lines that look like the one I posted above, because if I do "bind pub - !info topic_learn", then it works fine, but for everyone.<br><br>So those are the two questions I have.<br><br><br>Thanks!<br><br><br>--DanieL L<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10819">everythingdaniel</a> — Mon Aug 17, 2009 3:46 pm</p><hr />
]]></content>
	</entry>
	</feed>
