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

	<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>2006-02-26T16:13:00-04:00</updated>

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

		<entry>
		<author><name><![CDATA[harry1]]></name></author>
		<updated>2006-02-26T16:13:00-04:00</updated>

		<published>2006-02-26T16:13:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=60671#p60671</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=60671#p60671"/>
		<title type="html"><![CDATA[help echo script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=60671#p60671"><![CDATA[
j aimerai le host name et le nick pour etre sur que c bien le bon gars et avoir le bon echo.car j aimerai vraiment ke ca me copie vraiment toute les frase comportant des mot precis ke les mec disent meme kan eux meme font  des  echo ou des msg truc du genre.<br><br><br><br>i'd like the host and the nick to be sure to have the good guys:)<br><br>merci<br><br>ps: mon autre probleme c que j aimerai me connecter a un server ssl avec mon eggdrop . sqi vous avez une solution aussi <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> car me dis requette dns echoue <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> merci<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7414">harry1</a> — Sun Feb 26, 2006 4:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Caribou]]></name></author>
		<updated>2006-02-26T15:58:56-04:00</updated>

		<published>2006-02-26T15:58:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=60670#p60670</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=60670#p60670"/>
		<title type="html"><![CDATA[help echo script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=60670#p60670"><![CDATA[
Salut, je suis français aussi <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> <br><br>Je pense que tu peux rajouter un foreach avec une deuxieme liste mais cette fois une liste de nom à intercepter, en reprenant le principe de ton script, mais uniquement le pseudo ou le host aussi compte ?<br><span style="color:blue"><span style="font-size:84%;line-height:116%"><em class="text-italics">(I think you can add another foreach with a second list but this time for the names to intercept, reusing the same system for words, but you want only names or hosts too ?)</em></span></span><br><br>Uniquement le pseudo ça donnerait :<br><span style="color:blue"><span style="font-size:84%;line-height:116%"><em class="text-italics">(Only the nickname will make : )</em></span></span><br><div class="codebox"><p>Code: </p><pre><code># Liste des mots à intercepter (séparé par des espaces) set wordlist "bla bla joli merde"# Liste de noms à intercepter (séparé par des espaces) set namelist "roger pierre patrice"# Chan où le bot capture ls phrase selon les mots set chan1 "#w****" # Chan ù le bot enverra les phrases set chan2 "#z**" bind pubm -|- "* *" capture:word proc capture:word {nick host hand chan arg} {   if { [string tolower $chan] != [string tolower $::chan1] } { return 0 }   foreach name $::namelist {    if { [lsearch -exact $nick $name] &gt; -1 } {      foreach word $::wordlist {        if { [lsearch -exact $arg $word] &gt; -1 } {           puthelp "PRIVMSG $::chan2 :\[$nick\] $arg"           break         }      }    }  }  return}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4823">Caribou</a> — Sun Feb 26, 2006 3:58 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[harry1]]></name></author>
		<updated>2006-02-26T13:54:52-04:00</updated>

		<published>2006-02-26T13:54:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=60665#p60665</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=60665#p60665"/>
		<title type="html"><![CDATA[help echo script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=60665#p60665"><![CDATA[
i have already a script who make echo of some word but il would like to make an echo of only certain  nickname(with usernane  on  irc) .can someone could put an line in my script for that please?<br><br>exemple : if roger  (~Tatian4@*******abo.*****.fr) says hello it will make on echo on my second chan.<br><br>sorry i'm french and my englsih is very bad <br><div class="codebox"><p>Code: </p><pre><code># Liste des mots à intercepter (séparé par des espaces)set wordlist "bla bla joli merde "# Chan où le bot capture ls phrase selon les motsset chan1 "#w****"# Chan ù le bot enverra les phrasesset chan2 "#z**"bind pubm -|- "* *" capture:wordproc capture:word {nick host hand chan arg} {   if { [string tolower $chan] != [string tolower $::chan1] } { return 0 }      foreach word $::wordlist {      if { [lsearch -exact $arg $word] &gt; -1 } {         puthelp "PRIVMSG $::chan2 :\[$nick\] $arg"         break      }   }      return}</code></pre></div>Moderator edit: added 'code' .. please check <a href="http://forum.egghelp.org/viewtopic.php?t=6271" class="postlink">Things to do before posting..</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7414">harry1</a> — Sun Feb 26, 2006 1:54 pm</p><hr />
]]></content>
	</entry>
	</feed>
