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

	<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>2002-06-10T00:39:00-04:00</updated>

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

		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2002-06-10T00:39:00-04:00</updated>

		<published>2002-06-10T00:39:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=7823#p7823</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=7823#p7823"/>
		<title type="html"><![CDATA[Extra characters after close quotes]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=7823#p7823"><![CDATA[
Well the first thing that jumps out at me is you're missing a quote on your sendnote line.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Mon Jun 10, 2002 12:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Yourname]]></name></author>
		<updated>2002-06-08T19:22:00-04:00</updated>

		<published>2002-06-08T19:22:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=7785#p7785</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=7785#p7785"/>
		<title type="html"><![CDATA[Extra characters after close quotes]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=7785#p7785"><![CDATA[
Hello<br><div class="codebox"><p>Code: </p><pre><code>proc notmemobot {from keyword arg} {global botnick memochan chnmemnick memsrvnick lchnmemnick lmemsrvnick cserv_ip sendmemoserv fusernote fusermemo fnduname perfnick perfip optype opperf opnick acctype accnick utlcfmlgset nick [lindex [split $from !] 0] ; set uhost [lindex [split $from !] 1]if {[string match "*.*" $nick]} {return 0}if {[string match "@" $chnmemnick]} {set lchnmemnick [lindex [split $chnmemnick @] 0]} else {set lchnmemnick $chnmemnick}if {![string match *[string tolower $cserv_ip]* [string tolower $uhost]]} {return 0}if {[string match "*op * add*" $arg] || [string match "*op * del*" $arg] || [string match "*akick * add*" $arg] || [string match "*akick * del*" $arg]} {set chan [lindex [split [string tolower [lindex $arg 0]] @] 1]if {[string toupper $chan] != [string toupper $memochan]} {return 0}set perfhost [lindex $arg 2] ; set perfnick [string trim [lindex [split $perfhost !] 0] ""] ; set perfip [lindex [split $perfhost !] 1]set optype [lindex $arg 6] ; set opperf [lindex $arg 4] ; set opnick [lindex $arg 7]putquick "PRIVMSG $chnmemnick :why $chan $perfnick" ; putquick "PRIVMSG $chnmemnick :info $chan"putlog "$utlcfmlg doing /$lchnmemnick why $chan $perfnick and /$nick info for $chan" ; return 0}if {[string match "*has * access*" $arg]} {set acctype [lindex $arg 3]if {[string match "*FOUNDER*" [string toupper $acctype]]} {set accnick [string trim [lrange $arg 13 end] "."]} else {set accnick [lrange $arg 11 12]}putlog "$utlcfmlg $perfnick has $acctype access on channel: $memochan, identify to: $accnick" ; return 0}if {[string match "*FOUNDER*" [string toupper $arg]] &amp;&amp; ![string match "*emo *eve*" [string toupper $arg]]} {set chanfnd [lindex $arg 3]if {![info exist perfnick] || ![info exist perfip] || ![info exist optype] || ![info exist opperf] || ![info exist opnick] || ![info exist acctype] || ![info exist accnick]} {return 0}if {$sendmemoserv} {if {[string match "@" $memsrvnick]} {set lmemsrvnick [lindex [split $memsrvnick @] 0]} else {set lmemsrvnick $memsrvnick}putquick "PRIVMSG $memsrvnick :send $chanfnd $utlcfmlg $acctype: $perfnick [$perfip] (Identify to: $accnick) $optype [string toupper $opperf] for: $opnick on channel: $memochan"putlog "$utlcfmlg doing /$lmemsrvnick send $chanfnd $acctype: $perfnick [$perfip] (Identify to: $accnick) $optype [string toupper $opperf] for: $opnick on channel: $memochan"}if {$fusermemo} {foreach fusername1 $fnduname {putquick "PRIVMSG $memsrvnick :send $fusername1 $utlcfmlg $acctype: $perfnick [$perfip] (Identify to: $accnick) $optype [string toupper $opperf] for: $opnick on channel: $memochan"putlog "$utlcfmlg doing /$lmemsrvnick send $fusername1 $acctype: $perfnick [$perfip] (Identify to: $accnick) $optype [string toupper $opperf] for: $opnick on channel: $memochan"}}if {$fusernote} {foreach fusername2 $fnduname {if {[validuser $fusername2]} {sendnote $botnick $fusername2 "$utlcfmlg $acctype: $perfnick [$perfip] (Identify to: $accnick) $optype [string toupper $opperf] for: $opnick on channel: $memochan"putlog "$utlcfmlg Sending personal NOTES to: $fusername2"}}} ; unset perfnick ; unset perfip ; unset optype ; unset opperf ; unset opnick ; unset acctype ; unset accnick ; return 0} ; return 0}</code></pre></div>What the hell is wrong with that proc? I've been tryng to locate the error since an hour now.<br><br>The error is:<div class="codebox"><p>Code: </p><pre><code>[16:05] TCL error [notmemobot]: extra characters after close-quote</code></pre></div>Please help!<br><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13">Yourname</a> — Sat Jun 08, 2002 7:22 pm</p><hr />
]]></content>
	</entry>
	</feed>
