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

	<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-12-13T20:55:49-04:00</updated>

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

		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2004-12-13T20:55:49-04:00</updated>

		<published>2004-12-13T20:55:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43973#p43973</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43973#p43973"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43973#p43973"><![CDATA[
<blockquote class="uncited"><div>hello, i have another question about `BotIsChanServ` theme:<br>how i can close/suspend channel? e.g.: <strong class="text-strong">+b *!*@*</strong> : I'm not going to ban myself.<br>How i can override this protection, because my bot is ircop, and he can use /sajoin to get himself into channel.</div></blockquote>Well, one part of this is easy, and the other not.<br>The not easy part is, HOW WOULD THE BOT KNOW A PERSON IS JOINING A CLOSED CHANNEL? ONLY IF THE BOT IS IN THAT OR THOSE CHANNELS, right? But the real ChanServ has some kind of list of closed channels or something which makes it check through the ircd every second say if it is empty or not, and if not it joins and kicks everyone out and then parts.<br><br>For the banning thing it is quite simple, you can make ChanServ reside in the channel you want to close and bind join and kick everyone out who join the channel, and if nick matches a specific mask, or a user flag then it would exempt it.<br><div class="codebox"><p>Code: </p><pre><code>#Channel to closeset closechan "#yourchannel"#Your nick to exemptset exemptnick "god"#Your mask to exemptset exemptmask "oper@63.147.*"bind join - "*" close:channelproc close:channel {nick uhost hand chan} { global closechan exemptnick exemptmask  if {([isbotnick $nick]) || ([string match -nocase *$exemptnick* $nick]) || ([string match -nocase *$exemptmask* $uhost]) || (![string equal -nocase $closechan $chan])} { return 0 }   putquick "MODE $chan +b *!*@*" -next   putquick "KICK $chan $nick :This channel has been closed by ChanServ." -next   return 0}</code></pre></div>Alternatively we can also make the bot check if there is no ban *!*@*, then only place it. I am not sure what SAJOIN does though, I know about SAMODE. Also depends upon the ircd you use. I've mainly use bahamut for 6-7 years.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Dec 13, 2004 8:55 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JanisB]]></name></author>
		<updated>2004-12-12T07:15:43-04:00</updated>

		<published>2004-12-12T07:15:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43893#p43893</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43893#p43893"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43893#p43893"><![CDATA[
hello, i have another question about `BotIsChanServ` theme:<br>how i can close/suspend channel? e.g.: <strong class="text-strong">+b *!*@*</strong> : I'm not going to ban myself.<br>How i can override this protection, because my bot is ircop, and he can use /sajoin to get himself into channel.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5776">JanisB</a> — Sun Dec 12, 2004 7:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2004-12-07T17:08:11-04:00</updated>

		<published>2004-12-07T17:08:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43644#p43644</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43644#p43644"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43644#p43644"><![CDATA[
<blockquote class="uncited"><div>Emulating chanserv through a client logged on as a normal user is not easy.</div></blockquote>now that's an understatement <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Tue Dec 07, 2004 5:08 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-12-07T16:31:27-04:00</updated>

		<published>2004-12-07T16:31:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43640#p43640</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43640#p43640"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43640#p43640"><![CDATA[
Nice to see laziness is still alive and kicking. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Tue Dec 07, 2004 4:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[arcane]]></name></author>
		<updated>2004-12-07T11:38:20-04:00</updated>

		<published>2004-12-07T11:38:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43625#p43625</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43625#p43625"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43625#p43625"><![CDATA[
<blockquote class="uncited"><div>sigh... i dont have time to spend hours asking for something simple in ONE script and people just keep complaining... bye.</div></blockquote> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"> <br>what a funny guy <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2617">arcane</a> — Tue Dec 07, 2004 11:38 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Stealthx]]></name></author>
		<updated>2004-12-07T00:09:31-04:00</updated>

		<published>2004-12-07T00:09:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43600#p43600</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43600#p43600"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43600#p43600"><![CDATA[
LoLz script is rather a suitable TCL...<br>It have lots of function which allowed for public command (etc. !kick !op !addhost !adduser) and lots more...  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5493">Stealthx</a> — Tue Dec 07, 2004 12:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2004-12-06T23:28:40-04:00</updated>

		<published>2004-12-06T23:28:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43599#p43599</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43599#p43599"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43599#p43599"><![CDATA[
<blockquote class="uncited"><div>command will add a user in the eggdrop, and then delete when necessary</div></blockquote><blockquote class="uncited"><div>sigh... i dont have time to spend hours asking for something simple in ONE script and people just keep complaining... bye.</div></blockquote>Making the A.I. required for the eggdrop to determine when deleting a user is "necessary" without any further restraints is not easy.<br>Emulating chanserv through a client logged on as a normal user is not easy.<br><br>bye.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Mon Dec 06, 2004 11:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2004-12-06T23:11:09-04:00</updated>

		<published>2004-12-06T23:11:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43596#p43596</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43596#p43596"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43596#p43596"><![CDATA[
Your critcism is even more amusing, yet you did'nt even bother to search for scripts already made. <br><br>If I recall I can atleast remember 100 or more scripts which fulfil these simple purposes, however you solemly refuse to search and download them and complain here for someone to script them to you, how dumb can someone get.<br><br>Here are some, go enjoy fiddling with them.<br><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=440" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=440</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=439" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=439</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=894" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=894</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=66" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... load&amp;id=66</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=1052" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... ad&amp;id=1052</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=850" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=850</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=136" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=136</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=952" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=952</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=1057" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... ad&amp;id=1057</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=661" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=661</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=1014" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... ad&amp;id=1014</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=487" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=487</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=1030" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... ad&amp;id=1030</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=269" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=269</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=677" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=677</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=741" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=741</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=740" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=740</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=1016" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... ad&amp;id=1016</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=476" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=476</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=551" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=551</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=600" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=600</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=989" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=989</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=575" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=575</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=503" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=503</a><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=328" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=328</a><br><br>&lt;sarcasm&gt; Need more? &lt;/sarcasm&gt;, will search!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Dec 06, 2004 11:11 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2004-12-06T22:33:56-04:00</updated>

		<published>2004-12-06T22:33:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43590#p43590</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43590#p43590"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43590#p43590"><![CDATA[
sigh... i dont have time to spend hours asking for something simple in ONE script and people just keep complaining... bye.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Mon Dec 06, 2004 10:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2004-12-06T17:28:39-04:00</updated>

		<published>2004-12-06T17:28:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43582#p43582</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43582#p43582"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43582#p43582"><![CDATA[
That doesn't seem like chanserv things to me.<br><br>There are lots of those kind of scripts in the TCL archive.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Mon Dec 06, 2004 5:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2004-12-06T17:19:18-04:00</updated>

		<published>2004-12-06T17:19:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43581#p43581</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43581#p43581"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43581#p43581"><![CDATA[
Mainly, I am looking for a script like this:<br><br>Ops can: <br>!kick<br>!ban<br>!kb<br>!mode *<br>!tb (timeban)<br>!addban ( adds a sticky ban on that channel until !delban )<br><br>BOT OWNERS can:<br>!op<br>!deop<br>!voice<br>!devoice<br><br>--<br>!addop     <br>!delop<br>!voice<br>!devoice<br><br>( command will add a user in the eggdrop, and then delete when necessary )<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Mon Dec 06, 2004 5:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2004-12-06T17:04:26-04:00</updated>

		<published>2004-12-06T17:04:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43580#p43580</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43580#p43580"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43580#p43580"><![CDATA[
i made a service for hybrid still underdevelopment but you might get some ideas from it <a href="http://cvs.ofloo.net/q-srv/" class="postlink">http://cvs.ofloo.net/q-srv/</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Mon Dec 06, 2004 5:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2004-12-06T12:47:39-04:00</updated>

		<published>2004-12-06T12:47:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43568#p43568</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43568#p43568"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43568#p43568"><![CDATA[
awyeah i was thinking of something else as you clearly can't make something like /chanserv direct to the eggdrop as its not an service :p<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Mon Dec 06, 2004 12:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-12-06T07:50:17-04:00</updated>

		<published>2004-12-06T07:50:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43562#p43562</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43562#p43562"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43562#p43562"><![CDATA[
<blockquote class="uncited"><div>its an illegal channel ( meaning gamesurge won't register it )</div></blockquote>This suggests there <em class="text-italics">are</em> services and the keyword is "<strong class="text-strong">illegal</strong>". stevegarbz (apparently) is looking for a script, or a way, to operate a channel that this particular network will not allow to be registered without the usual assistance of ChanServ, simple script to add ops etc to the bots user list. It's also pretty obvious the bot cannot "oper up" either.<br><br>I think I mentioned earlier about searching the TCL archive.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Dec 06, 2004 7:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2004-12-06T06:13:47-04:00</updated>

		<published>2004-12-06T06:13:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43559#p43559</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43559#p43559"/>
		<title type="html"><![CDATA[CHANSERV TCL Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43559#p43559"><![CDATA[
<blockquote class="uncited"><div>If you can list some of ChanServ's functions like that SOP, AOP thing and some other functions it has and show me the output it gives on those things. for example<br><blockquote class="uncited"><div>/msg ChanServ SOP #channel<br><br>-ChanServ- SOP List for #channel<br>-ChanServ- User<br>-ChanServ- User<br>-ChanServ- End of list.</div></blockquote>I have no idea how it looks like really :p<br><br>If you give me all those things, i might just make a simple version of a chanserv.</div></blockquote>This is complicated, however it requires keen skills. For instance take, we would define our own custom user flags, +F for founder, +S for sop, +A for aop.<br><br>Now say we make a proc, let it bind on msg, notc trigger /chanserv &lt;aop|sop&gt; #channel &lt;add|del&gt; whatever you want. We would do say 3-4 checks on the user flag and go ahead and instruct chanserv todo the following.<br><br>Remember now the msg or notc bind will trigger when you add and delete a user. If matchattr is F, chanserv can add|del aop|sop. If matchattr $hand is S chanserv can add|del aop. If matchattr $hand is +A chanserv cannot add|del anything on that channel.<br><br>Now the difficult part is, to create user lists, maybe write to a text file and read from there, or add seperate user levels for each flag. For the chanserv aop|sop list. Or they can create arrays and store nicks and hostmasks and display chanserv aop|sop lists in those and check users access from those arrays when a trigger is activated, wheter chanserv can execute it or access is denied.<br><br>Like for each user level there would be a bind join, to op them, and for AKICK the bind join would kick/ban those users.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Dec 06, 2004 6:13 am</p><hr />
]]></content>
	</entry>
	</feed>
