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

	<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>2009-07-12T17:57:48-04:00</updated>

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

		<entry>
		<author><name><![CDATA[tigrato]]></name></author>
		<updated>2009-07-12T14:49:29-04:00</updated>

		<published>2009-07-12T14:49:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89521#p89521</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89521#p89521"/>
		<title type="html"><![CDATA[[SOLVED]TLC error]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89521#p89521"><![CDATA[
Solved, thanks i not see the ; sorry, and thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10739">tigrato</a> — Sun Jul 12, 2009 2:49 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2009-07-12T14:14:51-04:00</updated>

		<published>2009-07-12T14:14:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89520#p89520</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89520#p89520"/>
		<title type="html"><![CDATA[[SOLVED]TLC error]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89520#p89520"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>return [list [string trim $name] $year [join $genre "/"] [string trim $tagline] [string trim $plot "\r\n\t| "] $rating $votes [string trim $runtime] [join $language "/"] [string trim $top]; [string trim $director " "]];</code></pre></div>Perplexa has this unusual habit of ending each of his lines with a semicolon. This is required in languages such as pascal or c. But for tcl, this is far from a requirement. Notice above where you've left one of these semicolons hanging in the list?<br><br>Let me show you an example of what happens when you do this:<blockquote class="uncited"><div>&lt;speechles&gt; .tcl set b [list this that the-otherthing; [string trim "recreated-problem"]]<br>&lt;sp33chy&gt; Tcl error: invalid command name "recreated-problem"</div></blockquote>So the easy way to fix it, is to put that semicolon at the very end of the line. Or, simply get rid of it. It's not a requirement. To fix it simply copy the line exactly the way it is below.<br><div class="codebox"><p>Code: </p><pre><code>return [list [string trim $name] $year [join $genre "/"] [string trim $tagline] [string trim $plot "\r\n\t| "] $rating $votes [string trim $runtime] [join $language "/"] [string trim $top] [string trim $director]];</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Sun Jul 12, 2009 2:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tigrato]]></name></author>
		<updated>2009-07-12T17:57:48-04:00</updated>

		<published>2009-07-12T09:04:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89515#p89515</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89515#p89515"/>
		<title type="html"><![CDATA[[SOLVED]TLC error]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89515#p89515"><![CDATA[
I changed a IMDB script, to get the Director<br><a href="http://pastie.org/543050" class="postlink">http://pastie.org/543050</a><br><br>But he returns an error 13:58   wareztuga       • [12:56] Tcl error [::imdb::public]: invalid command name "Francis Ford Coppola"<br><br>SOmeone can help me?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10739">tigrato</a> — Sun Jul 12, 2009 9:04 am</p><hr />
]]></content>
	</entry>
	</feed>
