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

	<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-07-22T10:39:25-04:00</updated>

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

		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2020-07-22T10:39:25-04:00</updated>

		<published>2020-07-22T10:39:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=108772#p108772</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=108772#p108772"/>
		<title type="html"><![CDATA[unlock channel with pub command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=108772#p108772"><![CDATA[
ive added it to tcls but im not sure how to use this tho<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Wed Jul 22, 2020 10:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2020-07-22T10:24:59-04:00</updated>

		<published>2020-07-22T10:24:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=108771#p108771</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=108771#p108771"/>
		<title type="html"><![CDATA[unlock channel with pub command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=108771#p108771"><![CDATA[
thanx crazycat im not sure how to use that tho for example to check for certain cmodes<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Wed Jul 22, 2020 10:24 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2020-07-22T10:14:34-04:00</updated>

		<published>2020-07-22T10:14:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=108770#p108770</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=108770#p108770"/>
		<title type="html"><![CDATA[unlock channel with pub command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=108770#p108770"><![CDATA[
getchanmode sees only the RFC1459 modes.<br>MenzAgitat creates a little hack for that: <a href="https://forum.eggdrop.fr/Alternative-a-getchanmode-car-celui-ci-ne-voit-que-les-modes-du-RFC1459-t-1437.html" class="postlink">https://forum.eggdrop.fr/Alternative-a- ... -1437.html</a><br><br>Sorry, the forum and explanations are in french <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=691">CrazyCat</a> — Wed Jul 22, 2020 10:14 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2020-07-22T09:47:13-04:00</updated>

		<published>2020-07-22T09:47:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=108769#p108769</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=108769#p108769"/>
		<title type="html"><![CDATA[unlock channel with pub command]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=108769#p108769"><![CDATA[
i was trying this out   to check channel modes and remove if present<br>it works fine for the first few modes but not for the channel modes that have a second parameter like:<br><br>+k secretkey<br>it wont accept a mode #channel -k <br>it needs the key as well to get removed<br><br>it wont accept a mode #channel -k key<br><br>using this atm:<br><br><div class="codebox"><p>Code: </p><pre><code>bind pub -|- .unlock pub:checkcmodezproc pub:checkcmodez {nick host hand chan text} {       if { [string first R [getchanmode $chan]] != -1} {  pushmode $chan -R  }       if { [string first i [getchanmode $chan]] != -1} {  pushmode $chan -i  }       if { [string first M [getchanmode $chan]] != -1} {  pushmode $chan -M  }       if { [string first l [getchanmode $chan]] != -1} {  pushmode $chan -l  }       if { [string first k [getchanmode $chan]] != -1} {  pushmode $chan -k  }}</code></pre></div><br><br>also when using the [getchanmode $chan]<br>it doesnt seem to show all set cjannelmodes<br><br>for example i have set this on channel:<br><br>+BCEFGJPTUWfjknrtx block:30:90 ~1:10 3:3 5 c4:2 ~3:2 4:2 jhjhd 1:10:10 <br><br><br>yet [getchanmode $chan] shows just : +CtrTnkl jhjhd 33<br><br>whats the reason for that is it the channelmodes arent part of what eggdrop recognizes as its default core channel modes and if so would there be a way to display all parameters of the set channel modes ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Wed Jul 22, 2020 9:47 am</p><hr />
]]></content>
	</entry>
	</feed>
