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

	<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>2005-12-17T22:38:40-04:00</updated>

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

		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-12-17T22:38:40-04:00</updated>

		<published>2005-12-17T22:38:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58413#p58413</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58413#p58413"/>
		<title type="html"><![CDATA[Please someone help me....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58413#p58413"><![CDATA[
so what makes you think you can edit software (script) when you obviously don't know a sh*t about programming (scripting)?<br><br>that's equivalent to trying to edit text in Chinese, not knowing Chinese alphabet... good luck<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Sat Dec 17, 2005 10:38 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Source]]></name></author>
		<updated>2005-12-17T22:19:48-04:00</updated>

		<published>2005-12-17T22:19:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58412#p58412</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58412#p58412"/>
		<title type="html"><![CDATA[Please someone help me....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58412#p58412"><![CDATA[
sorry abt this but.. can I get a more help .. cuz I dont know what "$that $this"  is..<img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"> <br>thanks..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7116">Source</a> — Sat Dec 17, 2005 10:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-12-17T12:33:57-04:00</updated>

		<published>2005-12-17T12:33:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58381#p58381</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58381#p58381"/>
		<title type="html"><![CDATA[Please someone help me....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58381#p58381"><![CDATA[
This helps:<div class="codebox"><p>Code: </p><pre><code>if {[string match $this $that]} { # match}if {![string match $this $that]} { # NO match}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sat Dec 17, 2005 12:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Source]]></name></author>
		<updated>2005-12-17T01:19:46-04:00</updated>

		<published>2005-12-17T01:19:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58364#p58364</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58364#p58364"/>
		<title type="html"><![CDATA[Please someone help me....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58364#p58364"><![CDATA[
Hello all,<br>I need a little help.. I hope someone will help me with that..<br>I trying to edit respond.tcl to make him to answer if the word not match but I dont have success yet.. so I need a help<br>there is the code...<br><div class="codebox"><p>Code: </p><pre><code>set mc_resp(somethin) { answer }set mc_resp(something) { answer }etc...set mc_resp(what to put here?) { answer if all word not match }set mc_re(chan) [string tolower $mc_re(chan)]bind pubm - * mc:respproc mc:resp {nick uhost hand chan args} { global mc_resp mc_re ; set args [string tolower [lindex $args 0]] if {[lsearch -exact $mc_re(chan) [string tolower $chan]] == "-1"} {return 0} foreach search [string tolower [array names mc_resp]] {  if {[string match $search $args]} {   if {[string match *\n* $mc_resp($search)]} {    foreach post [mc:resp:rep $mc_resp($search) $nick $uhost $hand $chan] {     puthelp "PRIVMSG $chan :$post"    } ; break   } {    puthelp "PRIVMSG $chan :[mc:resp:rep $mc_resp($search) $nick $uhost $hand $chan]"   }  } }}proc mc:resp:rep {data nick uhost hand chan} { global botnick regsub -all -- %nick $data $nick data ; regsub -all -- %uhost $data $uhost data regsub -all -- %botnick $data $botnick data regsub -all -- %hand $data $hand data ; regsub -all -- %chan $data $chan data regsub -all -- %b $data  data ; regsub -all -- %r $data  data regsub -all -- %u $data  data ; regsub -all -- %c $data  data return $data}</code></pre></div>I hope that someone will respond to my topic..<br><br>P.S.: sorry for my bad english....<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7116">Source</a> — Sat Dec 17, 2005 1:19 am</p><hr />
]]></content>
	</entry>
	</feed>
