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

	<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>2024-05-25T04:06:02-04:00</updated>

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

		<entry>
		<author><name><![CDATA[flink]]></name></author>
		<updated>2024-05-25T04:06:02-04:00</updated>

		<published>2024-05-25T04:06:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112841#p112841</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112841#p112841"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112841#p112841"><![CDATA[
santo  SpiKe^^ cuanta sabiduría , <br>ese Sr. ayudaba de verdad. que este descansando en paz<br>doy por terminada la solicitud de ayuda, gracias a los participantes<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12899">flink</a> — Sat May 25, 2024 4:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[flink]]></name></author>
		<updated>2024-05-23T06:56:20-04:00</updated>

		<published>2024-05-23T06:56:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112839#p112839</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112839#p112839"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112839#p112839"><![CDATA[
<blockquote class="uncited"><div>see if this works for you.<br><div class="codebox"><p>Code: </p><pre><code>###################################################### Opciones:# Establece los canales en los que quieres comprobar los usuarios# incluye el "#" y sepáralos con un espacio.  EG set checkchans "#chan1 #chan3 #otherchan"set checkchans "#mojo-picon"# Palabras de los canales que serán prohibidos, separadas por un espacio.  Si pones set badchans "badc list" # los canales que serán baneados son #badchan #chanbadc #listchan #chanthatlists etc ......set badchans "#chan #chan1 #chan2 #chan3 #chan3 #chan3"# Minutos entre cada comprobación completa de un canal.  NOTA - ¡No pongas este valor bajo si tienes mucha gente! # Esto es una gran carga para el servidor/bot, así que no seas un idiota y comprueba cada 1 minuto en un canal con 100 personas.  # El bot se retrasará (o será k-lined)set intervalcheck 5# Duración de la prohibición por estar en el canal equivocado (en minutos)set idiotbantime 720# La razón que aparece en la lista de baneos.  También se utiliza cuando el bot les manda un mensaje diciendo por cuánto tiempo fueron baneados y por qué.set banmsg "Actividad no permitida"###################################################### FIN DE LAS OPCIONES# ¡No edite nada de lo que hay aquí abajo a menos que esté haciendo un cambio de versión!#####################################################bind JOIN - * bcjoinbind RAW - 319 banchan:responsebind RAW - 353 banchan:names# Triggered on join proc bcjoin {nick uhost handle chan} {      # Check only if user is not halfop or more      if {[channel get $chan bccheck] &amp;&amp; (($handle eq "*") || [matchattr $handle -l|-l $chan])} {         utimer 2 [list sendwhois $nick $uhost $chan]      }}# Called by the join after 2s proc sendwhois {nick uhost chan} {  global checkchans  set checkchans [string tolower $checkchans]  set channel [string tolower $chan]  set matchpattern "*$channel*" if {[string match $matchpattern $checkchans] == 1 &amp;&amp; [onchan $nick $chan] &amp;&amp; ![isop $nick $channel] &amp;&amp; ![ishalfop $nick $channel] &amp;&amp; ![isbotnick $nick]} {         putserv "WHOIS $nick"      }   } proc banchan:join {nick uhost handle channel} {  global checkchans  set checkchans [string tolower $checkchans]  set channel [string tolower $channel]  set matchpattern "*$channel*" if {[string match $matchpattern $checkchans] == 1 &amp;&amp; ![isop $nick $channel] &amp;&amp; ![ishalfop $nick $channel] &amp;&amp; ![isvoice $nick $channel] &amp;&amp; ![isbotnick $nick] &amp;&amp;     ![matchattr [nick2hand $nick] of|of $channel]} {    putserv "WHOIS $nick"    return 0  } else {    return 0  }}if {[string match "*banchan:scan*" [timers]] == 0} {  timer $intervalcheck banchan:scan}proc banchan:names {from keyword nicklist} {  global checkchans  set nicklist [banchan:charfilter $nicklist]  set nicklist [lrange $nicklist 3 end]  set chanfrom ""  append chanfrom "*" [lindex $nicklist 2] "*"  set chanfrom [string tolower $chanfrom]  if {[string match $chanfrom $checkchans]} {    return 1  }  set currnicknum 0  set currentnick "b4"  while {$currentnick != ""} {    set currentnick [lindex $nicklist $currnicknum]    if {[string range $currentnick 0 0] == "@" || [string range $currentnick 0 0] == "+" || [string range $currentnick 0 0] == ":"} {      set currentnick [string range $currentnick 1 end]    }    if {[string range $currentnick 0 0] == "@" || [string range $currentnick 0 0] == "+" || [string range $currentnick 0 0] == ":"} {      set currentnick [string range $currentnick 1 end]    }    putserv "WHOIS $currentnick"    incr currnicknum  }}proc banchan:scan { } {  global checkchans intervalcheck  set tocheck [string tolower $checkchans]  set ccnum 0  set total [llength $tocheck]  while {$ccnum &lt; $total} {    putlog "BanChan: Scanning [lindex $tocheck $ccnum]"    putserv "NAMES [lindex $tocheck $ccnum]"    incr ccnum  }  if {[string match "*banchan:scan*" [timers]] == 0} {    timer $intervalcheck banchan:scan  }} proc banchan:response {from keyword arg} {  global badchans banmsg idiotbantime checkchans  set badchans [string tolower $badchans]  set badchans [concat $badchans]  set arg [banchan:charfilter $arg]  set currentchannel "empty"  set chanlistnum 2  set nick [lindex $arg 1]  set matchpattern ""  while {$currentchannel != ""} {    set currentchannel [lindex $arg $chanlistnum]    set currentchannel [string tolower $currentchannel]    if {$currentchannel == ""} {      break    }    if {$chanlistnum == 2} {      set currentchannel [string range $currentchannel 1 end]    }    if {[string range $currentchannel 0 0] == "@" || [string range $currentchannel 0 0] == "+"} {      set currentchannel [string range $currentchannel 1 end]    }    set currentbannum 0    while {[llength $badchans] &gt; $currentbannum} {      set matchpattern "*[lindex $badchans $currentbannum]*"      if {[string match $matchpattern $currentchannel]} {      if {[isop $nick $currentchannel] || [ishalfop $nick $currentchannel] || [isvoice $nick $currentchannel] || [isbotnick $nick] || [matchattr [nick2hand $nick] of|of $currentchannel]} { return 0 }        set uhost [getchanhost $nick]        if {$uhost == ""} {           return 0        }        set tempi [expr [string first @ $uhost] + 1]        set uhost "*!*@[string range $uhost $tempi end]"        set chantomsglist [string tolower $checkchans]        set chantomsgnum 0        while {$chantomsgnum &lt; [llength $chantomsglist]} {          set currentchantomsg [lindex $chantomsglist $chantomsgnum]          if {[onchan $nick $currentchantomsg] == 1} {            putserv "PRIVMSG $currentchantomsg"          }          incr chantomsgnum        }        utimer 5 [banchan:delayedban $uhost]        putserv "PRIVMSG $nick :no eres bien recibid@ ($currentchannel)."        return 0      }      incr currentbannum    }    incr chanlistnum  }  return 0}proc banchan:delayedban { banhost } {  global banmsg idiotbantime  newban $banhost "BanChan3.2" "$banmsg" $idiotbantime}proc banchan:charfilter {x {y ""}} {  for {set i 0} {$i &lt; [string length $x]} {incr i} {   switch -- [string index $x $i] {   "\"" {append y "\\\""}  "\\" {append y "\\\\"}  "\[" {append y "\\\["}  "\]" {append y "\\\]"}  "\{" {append y "\\\{"}  "\}" {append y "\\\}"}  default {append y [string index $x $i]}   }  }  return $y }putlog "Anticanales Cargado Correctamente"</code></pre></div></div></blockquote><blockquote class="uncited"><div>              <br>hello simo thank you for visiting one of my rooms.<br>after trying what you recommend, it doesn't ban or send a message. it gives me this partyline error:<br><br>                          Rebujado ¦ BanChan: Scanning #mojo-picon<br>                          Rebujado ¦  Tcl error [banchan:response]: illegal channel: #sexo<br>                          Rebujado  : Tcl error [bcjoin]: Unknown channel setting.<br><br></div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12899">flink</a> — Thu May 23, 2024 6:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[flink]]></name></author>
		<updated>2024-05-23T06:08:14-04:00</updated>

		<published>2024-05-23T06:08:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112838#p112838</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112838#p112838"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112838#p112838"><![CDATA[
Hi CrazyCat it wasn't that either, it was just to make things easier, but well, your decision is very respectable. thanks for the help.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12899">flink</a> — Thu May 23, 2024 6:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2024-05-22T18:22:37-04:00</updated>

		<published>2024-05-22T18:22:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112837#p112837</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112837#p112837"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112837#p112837"><![CDATA[
see if this works for you.<br><div class="codebox"><p>Code: </p><pre><code>###################################################### Opciones:# Establece los canales en los que quieres comprobar los usuarios# incluye el "#" y sepáralos con un espacio.  EG set checkchans "#chan1 #chan3 #otherchan"set checkchans "#mojo-picon"# Palabras de los canales que serán prohibidos, separadas por un espacio.  Si pones set badchans "badc list" # los canales que serán baneados son #badchan #chanbadc #listchan #chanthatlists etc ......set badchans "#chan #chan1 #chan2 #chan3 #chan3 #chan3"# Minutos entre cada comprobación completa de un canal.  NOTA - ¡No pongas este valor bajo si tienes mucha gente! # Esto es una gran carga para el servidor/bot, así que no seas un idiota y comprueba cada 1 minuto en un canal con 100 personas.  # El bot se retrasará (o será k-lined)set intervalcheck 5# Duración de la prohibición por estar en el canal equivocado (en minutos)set idiotbantime 720# La razón que aparece en la lista de baneos.  También se utiliza cuando el bot les manda un mensaje diciendo por cuánto tiempo fueron baneados y por qué.set banmsg "Actividad no permitida"###################################################### FIN DE LAS OPCIONES# ¡No edite nada de lo que hay aquí abajo a menos que esté haciendo un cambio de versión!#####################################################bind JOIN - * bcjoinbind RAW - 319 banchan:responsebind RAW - 353 banchan:names# Triggered on join proc bcjoin {nick uhost handle chan} {      # Check only if user is not halfop or more      if {[channel get $chan bccheck] &amp;&amp; (($handle eq "*") || [matchattr $handle -l|-l $chan])} {         utimer 2 [list sendwhois $nick $uhost $chan]      }}# Called by the join after 2s proc sendwhois {nick uhost chan} {  global checkchans  set checkchans [string tolower $checkchans]  set channel [string tolower $chan]  set matchpattern "*$channel*" if {[string match $matchpattern $checkchans] == 1 &amp;&amp; [onchan $nick $chan] &amp;&amp; ![isop $nick $channel] &amp;&amp; ![ishalfop $nick $channel] &amp;&amp; ![isbotnick $nick]} {         putserv "WHOIS $nick"      }   } proc banchan:join {nick uhost handle channel} {  global checkchans  set checkchans [string tolower $checkchans]  set channel [string tolower $channel]  set matchpattern "*$channel*" if {[string match $matchpattern $checkchans] == 1 &amp;&amp; ![isop $nick $channel] &amp;&amp; ![ishalfop $nick $channel] &amp;&amp; ![isvoice $nick $channel] &amp;&amp; ![isbotnick $nick] &amp;&amp;     ![matchattr [nick2hand $nick] of|of $channel]} {    putserv "WHOIS $nick"    return 0  } else {    return 0  }}if {[string match "*banchan:scan*" [timers]] == 0} {  timer $intervalcheck banchan:scan}proc banchan:names {from keyword nicklist} {  global checkchans  set nicklist [banchan:charfilter $nicklist]  set nicklist [lrange $nicklist 3 end]  set chanfrom ""  append chanfrom "*" [lindex $nicklist 2] "*"  set chanfrom [string tolower $chanfrom]  if {[string match $chanfrom $checkchans]} {    return 1  }  set currnicknum 0  set currentnick "b4"  while {$currentnick != ""} {    set currentnick [lindex $nicklist $currnicknum]    if {[string range $currentnick 0 0] == "@" || [string range $currentnick 0 0] == "+" || [string range $currentnick 0 0] == ":"} {      set currentnick [string range $currentnick 1 end]    }    if {[string range $currentnick 0 0] == "@" || [string range $currentnick 0 0] == "+" || [string range $currentnick 0 0] == ":"} {      set currentnick [string range $currentnick 1 end]    }    putserv "WHOIS $currentnick"    incr currnicknum  }}proc banchan:scan { } {  global checkchans intervalcheck  set tocheck [string tolower $checkchans]  set ccnum 0  set total [llength $tocheck]  while {$ccnum &lt; $total} {    putlog "BanChan: Scanning [lindex $tocheck $ccnum]"    putserv "NAMES [lindex $tocheck $ccnum]"    incr ccnum  }  if {[string match "*banchan:scan*" [timers]] == 0} {    timer $intervalcheck banchan:scan  }} proc banchan:response {from keyword arg} {  global badchans banmsg idiotbantime checkchans  set badchans [string tolower $badchans]  set badchans [concat $badchans]  set arg [banchan:charfilter $arg]  set currentchannel "empty"  set chanlistnum 2  set nick [lindex $arg 1]  set matchpattern ""  while {$currentchannel != ""} {    set currentchannel [lindex $arg $chanlistnum]    set currentchannel [string tolower $currentchannel]    if {$currentchannel == ""} {      break    }    if {$chanlistnum == 2} {      set currentchannel [string range $currentchannel 1 end]    }    if {[string range $currentchannel 0 0] == "@" || [string range $currentchannel 0 0] == "+"} {      set currentchannel [string range $currentchannel 1 end]    }    set currentbannum 0    while {[llength $badchans] &gt; $currentbannum} {      set matchpattern "*[lindex $badchans $currentbannum]*"      if {[string match $matchpattern $currentchannel]} {      if {[isop $nick $currentchannel] || [ishalfop $nick $currentchannel] || [isvoice $nick $currentchannel] || [isbotnick $nick] || [matchattr [nick2hand $nick] of|of $currentchannel]} { return 0 }        set uhost [getchanhost $nick]        if {$uhost == ""} {           return 0        }        set tempi [expr [string first @ $uhost] + 1]        set uhost "*!*@[string range $uhost $tempi end]"        set chantomsglist [string tolower $checkchans]        set chantomsgnum 0        while {$chantomsgnum &lt; [llength $chantomsglist]} {          set currentchantomsg [lindex $chantomsglist $chantomsgnum]          if {[onchan $nick $currentchantomsg] == 1} {            putserv "PRIVMSG $currentchantomsg"          }          incr chantomsgnum        }        utimer 5 [banchan:delayedban $uhost]        putserv "PRIVMSG $nick :no eres bien recibid@ ($currentchannel)."        return 0      }      incr currentbannum    }    incr chanlistnum  }  return 0}proc banchan:delayedban { banhost } {  global banmsg idiotbantime  newban $banhost "BanChan3.2" "$banmsg" $idiotbantime}proc banchan:charfilter {x {y ""}} {  for {set i 0} {$i &lt; [string length $x]} {incr i} {   switch -- [string index $x $i] {   "\"" {append y "\\\""}  "\\" {append y "\\\\"}  "\[" {append y "\\\["}  "\]" {append y "\\\]"}  "\{" {append y "\\\{"}  "\}" {append y "\\\}"}  default {append y [string index $x $i]}   }  }  return $y }putlog "Anticanales Cargado Correctamente"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Wed May 22, 2024 6:22 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2024-05-22T18:04:53-04:00</updated>

		<published>2024-05-22T18:04:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112836#p112836</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112836#p112836"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112836#p112836"><![CDATA[
Ok, delete my script, use yours.<br>Cheers.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Wed May 22, 2024 6:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[flink]]></name></author>
		<updated>2024-05-22T17:15:48-04:00</updated>

		<published>2024-05-22T17:15:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112835#p112835</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112835#p112835"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112835#p112835"><![CDATA[
not to belittle the help, but the tcl that i presented at the beginning works great. just add that it does not ban the ops because that is what it lacks and i am happy that it works well. <br><div class="codebox"><p>Code: </p><pre><code>Tcl error in file 'Rebujado.conf':can't read "from": no such variable    while executing"putlog "$from - $kw - $text""    (in namespace eval "::badchan" script line 113)    invoked from within"namespace eval badchan {   # .chanset #channel +bccheck to enable   # lista de canales "malos"   variable bclist "#chan #chan1 #chan2..."    (file "scripts/maloscanales.tcl" line 1)    invoked from within</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12899">flink</a> — Wed May 22, 2024 5:15 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2024-05-22T16:46:12-04:00</updated>

		<published>2024-05-22T16:46:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112834#p112834</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112834#p112834"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112834#p112834"><![CDATA[
you also have to consider too much use of commands: names and whois may result in disconnecting due to exceeding server commands limits, so not sure what the max stackable value is wich can be used to send whois in a line on the network you  use it on, if you can provide those limits it may be integrated into the  code to stay within server limits.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Wed May 22, 2024 4:46 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2024-05-22T15:33:14-04:00</updated>

		<published>2024-05-22T15:33:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112833#p112833</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112833#p112833"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112833#p112833"><![CDATA[
--- useless comment ....<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Wed May 22, 2024 3:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[flink]]></name></author>
		<updated>2024-05-22T13:03:41-04:00</updated>

		<published>2024-05-22T13:03:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112832#p112832</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112832#p112832"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112832#p112832"><![CDATA[
hello crazycat i did what you suggested and after a while of starting the eggdrop in the partyline i got an error :<br>   Warning: over maximum server queue!<br>   Tcl error [::badchan::respnames]: invalid command name ‘lmap’.<br>   Tcl error [::badchan::respnames]: can't read "cusers": no such variable<br><br>I also get this list of nicknames that are not in any of the rooms where bccheck was activated and the test nickname is not in those rooms either.<br><br>lima.chatzona.org - 319 -  panny :+#luna +#peru +#sexo<br> lima.chatzona.org - 319 -  Trans :@#refli @#sol +#sexo+#lucia<br> lima.chatzona.org - 319 -  Titan :#la @#mediodia @#sexo<br> lima.chatzona.org - 319 -  cuatro :#rias @#pepe #sexo<br> lima.chatzona.org - 319 -  chica_madrid :#sexo<br> lima.chatzona.org - 319 -  Noeliatrans :#canalsexo #travestis #sexo<br> lima.chatzona.org - 319 -  agustin93 :#argentina #travestis #sexo<br> lima.chatzona.org - 319 -  jav :#Relatos-Eroticos #españa #sexo #burgos<br> lima.chatzona.org - 319 -  travesti5542 :#travestis #mazmorra #Gay #sexo<br> lima.chatzona.org - 319 -  Aldo10 :#sexo #mexico<br> lima.chatzona.org - 319 -  Novio34 :#chatzona #cibersexo #sexo #cornudos<br> lima.chatzona.org - 319 -  Cata :#sumisas #mazmorra #latinoamerica #sexo<br> lima.chatzona.org - 319 -  Sipi1414 :#chatzona #Gay #de_ambiente #chueca #sexo #cibersexo #mexico_vip #mexico<br> lima.chatzona.org - 319 -  Alvaro__28 :#mazmorra #sexo<br> lima.chatzona.org - 319 -  Invitado-2155 :#españa #andalucia #cibersexo #travestis #sexo #canalchat<br> lima.chatzona.org - 319 -  paola-rlt{W} :#mazmorra #sexo #Relatos-Eroticos<br> lima.chatzona.org - 319 -  anton32 :#sexo<br> lima.chatzona.org - 319 -  Carlosss___ :#sexo #chatzona #chatear #general<br> lima.chatzona.org - 319 -  Nuee :#chatvenezuela.net #sexo #venezuela #Gay #de_ambiente<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12899">flink</a> — Wed May 22, 2024 1:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2024-05-22T06:09:14-04:00</updated>

		<published>2024-05-22T06:09:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112830#p112830</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112830#p112830"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112830#p112830"><![CDATA[
You can try this one:<br><br>... snip ...<br><br>P.S.: it's possible to optimize it, but too lazy to do that now <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 May 22, 2024 6:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[flink]]></name></author>
		<updated>2024-05-21T08:53:12-04:00</updated>

		<published>2024-05-21T08:53:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112829#p112829</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112829#p112829"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112829#p112829"><![CDATA[
Hello CrazyCat<br>Exactly what you described<br>everything that has and performs the eggdrop but that exclude ops (and halfops<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12899">flink</a> — Tue May 21, 2024 8:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2024-05-21T08:46:30-04:00</updated>

		<published>2024-05-21T08:46:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112828#p112828</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112828#p112828"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112828#p112828"><![CDATA[
I had a look to the script... It could be better.<br>I think I can redo it, just need to be sure:<br>The users which are in $checkchans must not be in $badchans, and check is performed on join and each 5 minutes.<br>And you want to exclude ops (and halfops ?) of the check/ban ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Tue May 21, 2024 8:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[flink]]></name></author>
		<updated>2024-05-21T08:33:12-04:00</updated>

		<published>2024-05-21T08:33:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112827#p112827</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112827#p112827"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112827#p112827"><![CDATA[
Simo. thanks for answering<br> I understand but it doesn't work, this last help you provide doesn't do anything at all, kick it and send the message without further ado.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12899">flink</a> — Tue May 21, 2024 8:33 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2024-05-21T08:24:07-04:00</updated>

		<published>2024-05-21T08:24:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112826#p112826</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112826#p112826"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112826#p112826"><![CDATA[
all i did really was add a delay on join for the bot to determine if nick isn an chanop/halfop or not and send a whois if not an chanop/halfop or any access to bot.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Tue May 21, 2024 8:24 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[flink]]></name></author>
		<updated>2024-05-21T08:10:28-04:00</updated>

		<published>2024-05-21T08:10:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=112825#p112825</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=112825#p112825"/>
		<title type="html"><![CDATA[Re: do not ban ops]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=112825#p112825"><![CDATA[
hello simo<br>I killed eggdrop again, made the changes you recommended and now it's back to how it was at the beginning, it kicks everything, it doesn't distinguish, I even removed @ from the eggdrop and with the voice it sends the message<br>and it does not release an error in the partyline<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12899">flink</a> — Tue May 21, 2024 8:10 am</p><hr />
]]></content>
	</entry>
	</feed>
