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

	<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>2003-06-26T21:00:49-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Volume]]></name></author>
		<updated>2003-06-26T21:00:49-04:00</updated>

		<published>2003-06-26T21:00:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=22616#p22616</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=22616#p22616"/>
		<title type="html"><![CDATA[Limit Restrictet script problem]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=22616#p22616"><![CDATA[
This script Restrict users (no bots and owners) they change +l or -l on a chan. but the dont works <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"> i would the script to adjust on the partyline but the bot doing nothing after the edit <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"> please help me Papillon i have no idea.<br><br>This script Boot the user on the partyline and kick him on the chan and add. a 24 h globalban sticky its good wenn the user is not adding <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile">. than change the flags -fp and give him +k and than +d.<br>The Boot from partyline must automatic always whatever LIMITCHECK is on or off. other settings can be edit on the partyline.<br><br>for all edits is the +LIMITCHECK flag assumption.<br><br>Partyline edit:<div class="codebox"><p>Code: </p><pre><code># Für wie viele Minuten möchtest du den Channel auf Invite lassen?# For how many minutes whould you like chan invite?#     (default : 20)set chan(invitetime) 20# Für wie vielen Minuten möchtest du den Globalban Sticky laufen lassen?# Clones [T-Online] und andere Dialin haben max. 24h login (24h Trennung) !# For how many minutes whould you like the Globalban Sticky?# Clones [T-Online] and other Dialin have max. 24h login (24h breakup)#     (default: 1440 = 24h)set glb(sticky) 1440# ---------------------- code - nicht verändern - don´t change - code ------------------------#setudef flag LIMITCHECKsetudef flag linvitesetudef flag ldeopsetudef flag lkicksetudef flag limitbacksetudef flag lglobbansetudef flag lautodeinviteproc majonas_limit_restrict {nick uhost hand chan mode victim} {    set chaninfo [channel info $chan]    if {![string match "*+LIMITCHECK*" $chaninfo]} {       return    if {$mode == "+l" || $mode == "-l"} {    if {![botisop $chan] || [matchattr $hand b] || [matchattr $hand n]} {      return    if {[onchan $nick $chan] &amp;&amp; $nick != $::botnick} {    set delflagfp "chattr [nick2hand $nick] -fp"    set bootpl "boot [nick2hand $nick] 12limitabuse0.5.tcl"    set kick "putkick $chan $nick"    set chlimit "pushmode $chan +l [expr [llength [chanlist $chan]] + 4]"    set hostban "*!*[string range $uhost [string first "@" $uhost] end]"    set addflagk "chattr [nick2hand $nick] +k"    set globban "newban $hostban 7Majonas 12limitabuse0.4.tcl $::glb(sticky) sticky"    set deinvite "pushmode $chan -i"    set globdeop "chattr [nick2hand $nick] +d"    if {[string match "*+linvite*" $chaninfo]} { pushmode $chan +i }     if {[string match "*+ldeop*" $chaninfo]} { pushmode $chan -o $nick }        if {[string match "*+lkick*" $chaninfo]} { list putkick $chan $kick }          if {[string match "*+limitback*" $chaninfo]} { utimer 3 $chlimit }    if {[string match "*+lglobban*" $chaninfo]} { utimer 4 $globban }              if {[string match "*+lautodeinvite*" $chaninfo]} { timer $::chan(invitetime) $deinvite }    utimer 1 $delflagfp    utimer 1 $bootpl    utimer 2 $addflagk    utimer 5 $globdeop         }}return 0} }}</code></pre></div><br>Originalscript that works great but is not edit on partyline:<br><div class="codebox"><p>Code: </p><pre><code># Für wie viele Minuten möchtest du den Channel auf Invite lassen?# For how many minutes whould you like chan invite?#     (default : 20)set chan(invite) 20# Für wie vielen Minuten möchtest du den Globalban Sticky laufen lassen?# Clones [T-Online] und andere Dialin haben max. 24h login (24h Trennung) !# For how many minutes whould you like the Globalban Sticky?# Clones [T-Online] and other Dialin have max. 24h login (24h breakup)#     (default: 1440 = 24h)set glb(sticky) 1440# ---------------------- code - nicht verändern - don´t change - code ------------------------#bind mode - * majonas_limit_restrictproc majonas_limit_restrict {nick uhost hand chan mode victim} {    if {$mode == "+l" || $mode == "-l"} {    if {[matchattr $hand b] || [matchattr $hand n]} {    return 0    } else {        if {[onchan $nick $chan]} {      pushmode $chan +i      pushmode $chan -o $nick      set kick "putkick $chan $nick"      utimer 1 $kick          set delflagfp "chattr [nick2hand $nick] -fp"          utimer 1 $delflagfp          set bootpl "boot [nick2hand $nick] 12limitabuse0.5.tcl"          utimer 1 $bootpl          set addflagk "chattr [nick2hand $nick] +k"          utimer 2 $addflagk      set chlimit "pushmode $chan +l [expr [llength [chanlist $chan]] + 4]"      utimer 3 $chlimit          set hostban "*!*[string range $uhost [string first "@" $uhost] end]"          set globban "newban $hostban 7Majonas 12limitabuse0.4.tcl $::glb(sticky) sticky"          utimer 4 $globban          set globdeop "chattr [nick2hand $nick] +d"          utimer 5 $globdeop      set deinvite "pushmode $chan -i"      timer $::chan(invite) $deinvite}}return 0}}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3212">Volume</a> — Thu Jun 26, 2003 9:00 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Volume]]></name></author>
		<updated>2003-06-13T13:37:42-04:00</updated>

		<published>2003-06-13T13:37:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21770#p21770</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21770#p21770"/>
		<title type="html"><![CDATA[@Papillon]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21770#p21770"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div>ah.. sorry.. little typo there  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed"> <br>hmmm <br>[21:24:53] * Ralfos sets mode: +t  &lt;&lt;--- Ralfos wouldn't happen to have the +n userflag would he?</div></blockquote>Ralfos have non flags is a handop login</div></blockquote>thank you very mutch for your greate help <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>i have edit this line:<br><div class="codebox"><p>Code: </p><pre><code>if {![string match "+topiccheck" $chaninfo]} {</code></pre></div>to<br><div class="codebox"><p>Code: </p><pre><code>if {![string match "*+topiccheck*" $chaninfo]} {</code></pre></div>and the scripts works perfectly   <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3212">Volume</a> — Fri Jun 13, 2003 1:37 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Volume]]></name></author>
		<updated>2003-06-13T05:45:49-04:00</updated>

		<published>2003-06-13T05:45:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21750#p21750</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21750#p21750"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21750#p21750"><![CDATA[
<blockquote class="uncited"><div>ah.. sorry.. little typo there  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed"> <br>hmmm <br>[21:24:53] * Ralfos sets mode: +t  &lt;&lt;--- Ralfos wouldn't happen to have the +n userflag would he?</div></blockquote>Ralfos have non flags is a handop login<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3212">Volume</a> — Fri Jun 13, 2003 5:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Papillon]]></name></author>
		<updated>2003-06-12T17:52:24-04:00</updated>

		<published>2003-06-12T17:52:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21745#p21745</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21745#p21745"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21745#p21745"><![CDATA[
ah.. sorry.. little typo there  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed"> <br>hmmm <br>[21:24:53] * Ralfos sets mode: +t  &lt;&lt;--- Ralfos wouldn't happen to have the +n userflag would he?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=852">Papillon</a> — Thu Jun 12, 2003 5:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Volume]]></name></author>
		<updated>2003-06-12T15:31:41-04:00</updated>

		<published>2003-06-12T15:31:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21740#p21740</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21740#p21740"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21740#p21740"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>setudef flag topicchecksetudef flag undotopicmode setudef flag deop setudef flag kick bind mode - "* +t" chan:topic proc chan:topic {nick uhost hand chan mode victim} {   set chaninfo [channel info $chan]  if {![string match "+topiccheck" $chaninfo]} {     return   }   if {![botisop $chan] || [matchattr $hand b] || [matchattr $hand n]} {     return   }   if {[onchan $nick $chan] &amp;&amp; $nick != $::botnick} {     if {[string match "*+undotopicmode*" $chaninfo]} { pushmode $chan -t }    if {[string match "*+deop"* $chaninfo]} { pushmode $chan -o $nick }    if {[string match "*+kick*" $chaninfo]} { utimer 5 [list putkick $chan $nick] }  } } </code></pre></div></div></blockquote>hello, thank you for your help , but the script dont work <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"> i have correct this line:<div class="codebox"><p>Code: </p><pre><code>if {[string match "*+deop"* $chaninfo]} { pushmode $chan -o $nick }</code></pre></div>to<br><div class="codebox"><p>Code: </p><pre><code>if {[string match "*+deop*" $chaninfo]} { pushmode $chan -o $nick }</code></pre></div>but the bots dont restrict user. the bot dont change back to -t<br><br>[21:22:33] * Ralfos sets mode: +t<br>[21:24:53] * Ralfos sets mode: +t<br>[21:25:05] * Ralfos sets mode: -t<br>[21:25:25] * Ralfos sets mode: +t<br>[21:25:43] * Ralfos sets mode: -t<br>[21:26:16] * Ralfos sets mode: +t<br><br>[21:29:26] &lt;fish&gt; User defined channel flags:<br>[21:29:26] &lt;fish&gt;      +topiccheck +undotopicmode +deop +kick<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3212">Volume</a> — Thu Jun 12, 2003 3:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Papillon]]></name></author>
		<updated>2003-06-12T12:17:55-04:00</updated>

		<published>2003-06-12T12:17:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21727#p21727</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21727#p21727"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21727#p21727"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>setudef flag topicchecksetudef flag undotopicmode setudef flag deop setudef flag kick bind mode - "* +t" chan:topic proc chan:topic {nick uhost hand chan mode victim} {   set chaninfo [channel info $chan]  if {![string match "+topiccheck" $chaninfo]} {     return   }   if {![botisop $chan] || [matchattr $hand b] || [matchattr $hand n]} {     return   }   if {[onchan $nick $chan] &amp;&amp; $nick != $::botnick} {     if {[string match "*+undotopicmode*" $chaninfo]} { pushmode $chan -t }    if {[string match "*+deop"* $chaninfo]} { pushmode $chan -o $nick }    if {[string match "*+kick*" $chaninfo]} { utimer 5 [list putkick $chan $nick] }  } } </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=852">Papillon</a> — Thu Jun 12, 2003 12:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Volume]]></name></author>
		<updated>2003-06-12T12:07:34-04:00</updated>

		<published>2003-06-12T12:07:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21726#p21726</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21726#p21726"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21726#p21726"><![CDATA[
<blockquote class="uncited"><div>I would give you an answer if I could understand anything of what you are trying to say...</div></blockquote>User defined channel flags:<br>-TOPICCHECK -undotopicmode -deop<br>-kick<br><br><br>TOPICCHECK: is for set the script on ore off for a channel<br>undotopicmode: set -t in the chan where the user set +t<br>deop: deop the user that sets +t in the chan<br>kick: kick the user that sets +t in the chan<br><br><br>all user definded channel flags are unload !<br>the script doing nothing !<br><br>.chanset #chan +undotopicmode<br>the flag undotopicmode is on now, but the bot doing nothing as the TOPICCHECK flag is off<br><br>.chanset #chan +TOPICCHECK   <br>TOPICCHECK and undotopicmode is on now, the bot set mode -t on the chan<br><br>.chanset #chan +deop<br>TOPICCHECK and undotopicmode and deop is on now, the bot set mode -t on the chan and deop the user this have set +t<br><br>.chanset #chan +kick<br>TOPICCHECK and undotopicmode and deop and kick is on now, the bot set mode -t on the chan , deop the user and kick him<br><br>.chanset #chan -deop<br>TOPICCHECK and undotopicmode and kick is on now, the bot set mode -t on the chan , and kick the user<br><br>.chanset #chan -TOPICCHECK<br>undotopicmode and kick is on now, the bot doing nothing because the TOPICCHECK flag is off !<br>this is the on ore off flag for the script !!!<br><br>i hope you can understand me<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3212">Volume</a> — Thu Jun 12, 2003 12:07 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Papillon]]></name></author>
		<updated>2003-06-12T11:28:04-04:00</updated>

		<published>2003-06-12T11:28:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21725#p21725</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21725#p21725"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21725#p21725"><![CDATA[
I would give you an answer if I could understand anything of what you are trying to say...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=852">Papillon</a> — Thu Jun 12, 2003 11:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Volume]]></name></author>
		<updated>2003-06-12T11:25:46-04:00</updated>

		<published>2003-06-12T11:25:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21724#p21724</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21724#p21724"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21724#p21724"><![CDATA[
<blockquote class="uncited"><div>Well, yes, if the channel is not +topiccheck then nothing will happen there if someone dose the +t mode. By default it's -topiccheck for each channel.</div></blockquote>but your script can only change on change off.<br>wenn i will the bots set -t and deop no kick this funkton can not edit with the partyline.<br>or<br>wenn i will the bots set -t and kick but no deop, this can not edit with pl too <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><br><br>if i will have the script off must i turn off the TOPICCHECK<br>if i will have the scripts do not kick i turn off the kick<br>and the other pl chan flags are on.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3212">Volume</a> — Thu Jun 12, 2003 11:25 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-06-12T01:13:07-04:00</updated>

		<published>2003-06-12T01:13:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21701#p21701</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21701#p21701"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21701#p21701"><![CDATA[
Well, yes, if the channel is not +topiccheck then nothing will happen there if someone dose the +t mode. By default it's -topiccheck for each channel.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Jun 12, 2003 1:13 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Volume]]></name></author>
		<updated>2003-06-11T16:02:49-04:00</updated>

		<published>2003-06-11T16:02:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21688#p21688</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21688#p21688"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21688#p21688"><![CDATA[
<blockquote class="uncited"><div>Oups..  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed"> instead of "topickeep" should be "topiccheck" as you wanted. The "topiccheck" channel flag tells it to react only on the channels that have the flag, that's all. To add or remove the flag just .chanset #channel +topiccheck because by default it's -topiccheck so that's why is not working..</div></blockquote>i would that topiccheck is the root button an and alliance so i can this script with this button on ore off switching.<br><br>the readout buttons are undotopicmode - deop - kick<br>if the kick flag is on and the deop flag is on and the undotopicmode is on<br>but the TOPICCHECK is of the script doing nothing.<br>is the TOPICCHECK is on the script do all the flags have a + .<br><br>the flags with - is not to do <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> i hope you can understand me thank you for the time. iam a newbi in tcl , i hope will better ... its difficult with my english.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3212">Volume</a> — Wed Jun 11, 2003 4:02 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-06-11T11:02:32-04:00</updated>

		<published>2003-06-11T11:02:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21671#p21671</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21671#p21671"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21671#p21671"><![CDATA[
Oups..  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed"> instead of "topickeep" should be "topiccheck" as you wanted. The "topiccheck" channel flag tells it to react only on the channels that have the flag, that's all. To add or remove the flag just .chanset #channel +topiccheck because by default it's -topiccheck so that's why is not working..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Wed Jun 11, 2003 11:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Volume]]></name></author>
		<updated>2003-06-11T10:53:12-04:00</updated>

		<published>2003-06-11T10:53:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21670#p21670</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21670#p21670"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21670#p21670"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>setudef flag topickeepbind mode - "* +t" chan:topicproc chan:topic {nick uhost hand chan mode victim} {   if {![channel get $chan topiccheck]} {    return  }  if {![botisop $chan] || [matchattr $hand b] || [matchattr $hand n]} {    return  }  if {[onchan $nick $chan] &amp;&amp; $nick != $::botnick} {    pushmode $chan -t    pushmode $chan -o $nick    utimer 5 [list putkick $chan $nick]  }}</code></pre></div>looks a lot nicer.. hehe <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><br><br>Btw, what exactly do you want to do with this? I fail to understand exactly what this is ment to do..</div></blockquote><img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>sorry for my bad english<br>but i would -op and -t with userflags too<br>the topickeep flag must always on<br>is topickeep off and userflag op on the script not working (this is easyer to change the settings for owner the came into the shell !<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3212">Volume</a> — Wed Jun 11, 2003 10:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-06-11T10:41:42-04:00</updated>

		<published>2003-06-11T10:41:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21668#p21668</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21668#p21668"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21668#p21668"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>setudef flag topickeepbind mode - "* +t" chan:topicproc chan:topic {nick uhost hand chan mode victim} {   if {![channel get $chan topiccheck]} {    return  }  if {![botisop $chan] || [matchattr $hand b] || [matchattr $hand n]} {    return  }  if {[onchan $nick $chan] &amp;&amp; $nick != $::botnick} {    pushmode $chan -t    pushmode $chan -o $nick    utimer 5 [list putkick $chan $nick]  }}</code></pre></div>looks a lot nicer.. hehe <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><br><br>Btw, what exactly do you want to do with this? I fail to understand exactly what this is ment to do..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Wed Jun 11, 2003 10:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-06-11T10:20:31-04:00</updated>

		<published>2003-06-11T10:20:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21667#p21667</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21667#p21667"/>
		<title type="html"><![CDATA[Automatic undo +t and -o nick and kick with setudef flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21667#p21667"><![CDATA[
<blockquote class="uncited"><div>pushmode [channel get $chan TOPICCHECK &amp;&amp; undotopicmode] $chan -t </div></blockquote>this is not the way it's used.. go see the tcl-commands.doc file.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><br><br>Ps: Also, please don't post the same thing twice. <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=187">caesar</a> — Wed Jun 11, 2003 10:20 am</p><hr />
]]></content>
	</entry>
	</feed>
