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

	<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>2007-09-24T00:58:11-04:00</updated>

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

		<entry>
		<author><name><![CDATA[LiquidIce]]></name></author>
		<updated>2007-09-24T00:56:43-04:00</updated>

		<published>2007-09-24T00:56:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76196#p76196</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76196#p76196"/>
		<title type="html"><![CDATA[Request time bans (solved)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76196#p76196"><![CDATA[
never my problem solved thankx awyeah<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4380">LiquidIce</a> — Mon Sep 24, 2007 12:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[LiquidIce]]></name></author>
		<updated>2007-09-24T00:48:00-04:00</updated>

		<published>2007-09-24T00:48:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76195#p76195</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76195#p76195"/>
		<title type="html"><![CDATA[Request time bans (solved)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76195#p76195"><![CDATA[
so how would i set that in the script?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4380">LiquidIce</a> — Mon Sep 24, 2007 12:48 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2007-09-24T00:49:29-04:00</updated>

		<published>2007-09-24T00:46:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76194#p76194</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76194#p76194"/>
		<title type="html"><![CDATA[Request time bans (solved)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76194#p76194"><![CDATA[
CASE 1:<br>You mean you want the script to only work with channel ops?<br><br>(1) Use bind with "-" flag<br>(2) Add a check in the beginning of the proc<br><div class="codebox"><p>Code: </p><pre><code>if {[isop $nick $chan]} {#continue with ur proc here</code></pre></div>CASE 2:<br>- If you added the user as <em class="text-italics">global op</em> then in bind you use "o|-" or you can even use "o|o"<br>- If you added the user as <em class="text-italics">channel op</em> then in bind you use "-|o"<br><br>Or you can just specify "-" in bind and then use:<br>(if your matching a global op or a channel op)<br><div class="codebox"><p>Code: </p><pre><code>if {[matchattr $hand o|o $chan]} {#orif {[matchattr $hand o|o]} {</code></pre></div>IMHO using CASE 1 would be better for your problem.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Sep 24, 2007 12:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[LiquidIce]]></name></author>
		<updated>2007-09-24T00:41:27-04:00</updated>

		<published>2007-09-24T00:41:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76193#p76193</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76193#p76193"/>
		<title type="html"><![CDATA[Request time bans (solved)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76193#p76193"><![CDATA[
thankx.  how can i get the script to be used by roomops <br>i added to themto the  bot<br><br>i added them as +o but seems its not working i have it o|o in the script<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4380">LiquidIce</a> — Mon Sep 24, 2007 12:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2007-09-24T00:32:42-04:00</updated>

		<published>2007-09-24T00:32:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76192#p76192</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76192#p76192"/>
		<title type="html"><![CDATA[Request time bans (solved)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76192#p76192"><![CDATA[
<a href="http://tcl.powersource.cx/eggtclh09.php" class="postlink">http://tcl.powersource.cx/eggtclh09.php</a><br><br> timer &lt;minutes&gt; &lt;tcl-command&gt;<br>Description: executes the given Tcl command after a certain number of minutes have passed<br>Returns: a timerID<br>Module: core<br><br>utimer &lt;seconds&gt; &lt;tcl-command&gt;<br>Description: executes the given Tcl command after a certain number of seconds have passed<br>Returns: a timerID<br>Module: core<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Mon Sep 24, 2007 12:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[LiquidIce]]></name></author>
		<updated>2007-09-23T23:49:32-04:00</updated>

		<published>2007-09-23T23:49:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76191#p76191</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76191#p76191"/>
		<title type="html"><![CDATA[Request time bans (solved)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76191#p76191"><![CDATA[
nothing but i need it for ppl who cant acces the bot. <br><div class="codebox"><p>Code: </p><pre><code>proc proc_ban2 { nick uhost hand chan text } {  global botnick  if {[onchan $text]} {    if {$text == $botnick} { return 0 }    set banmask [getchanhost $text $chan]    putquick "MODE $chan +b $banmask"    putkick $chan $text :Requested    utimer 5 "putserv {MODE $chan -b $banmask}"  } else { putserv "PRIVMSG $chan :$text Is Not In The Channel" }}</code></pre></div>but that removes in 5 secs how can i make it longer?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4380">LiquidIce</a> — Sun Sep 23, 2007 11:49 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2007-09-23T23:31:54-04:00</updated>

		<published>2007-09-23T23:31:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76190#p76190</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76190#p76190"/>
		<title type="html"><![CDATA[Request time bans (solved)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76190#p76190"><![CDATA[
What's wrong with using the built-in ban command?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Sun Sep 23, 2007 11:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[LiquidIce]]></name></author>
		<updated>2007-09-24T00:58:11-04:00</updated>

		<published>2007-09-23T22:25:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76188#p76188</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76188#p76188"/>
		<title type="html"><![CDATA[Request time bans (solved)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76188#p76188"><![CDATA[
is there a way to make certain commands for certain timed bans.<br>!b perm !b2 hour ban !b3 30 min   and so on... <br><br><br> i check archive havent seen much that really did that anyone could make something like that<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4380">LiquidIce</a> — Sun Sep 23, 2007 10:25 pm</p><hr />
]]></content>
	</entry>
	</feed>
