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

	<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>2007-06-14T21:13:27-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2007-06-14T21:13:27-04:00</updated>

		<published>2007-06-14T21:13:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=73556#p73556</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=73556#p73556"/>
		<title type="html"><![CDATA[Marky Color Uno]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=73556#p73556"><![CDATA[
You have to state what "chokes" mean, is it a Tcl error? if so then you have to paste the errorInfo to detect where the error occurred.<br><br><a href="http://www.peterre.info/characters.html" class="postlink">How to write eggdrop scripts that won't choke on special characters</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu Jun 14, 2007 9:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2007-06-14T20:13:16-04:00</updated>

		<published>2007-06-14T20:13:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=73555#p73555</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=73555#p73555"/>
		<title type="html"><![CDATA[Marky Color Uno]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=73555#p73555"><![CDATA[
The problem is the script uses lots of variables within quotes, and doesn't use the curly braces to suppress interpreter from getting choked on special characters..  I experienced similar issues hacking the google script so I'm fairly certain this causes it. Every place where $nick is referenced within quotes you will have to encapsulate it.  $nick -&gt; ${nick}<br><br>line 246, for example:<div class="codebox"><p>Code: </p><pre><code># choke on special charsunochanmsg "stopped by \00310$nick!$uhost\003"# stop chokingunochanmsg "stopped by \00310${nick}!$uhost\003"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Thu Jun 14, 2007 8:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SaPrOuZy]]></name></author>
		<updated>2007-06-12T09:27:37-04:00</updated>

		<published>2007-06-12T09:27:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=73487#p73487</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=73487#p73487"/>
		<title type="html"><![CDATA[Marky Color Uno]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=73487#p73487"><![CDATA[
i actually modified it in the following way:<br><div class="codebox"><p>Code: </p><pre><code>if {[string match "*\{*" $nick] || [string match "*\}*" $nick] } { unontc $nick "Sorry $nick - you cannot join uno with this nick please use a nick that does not contain \002\{\}\002." return 0 }</code></pre></div>at least till someone does what i don't feel like doing lol<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4727">SaPrOuZy</a> — Tue Jun 12, 2007 9:27 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2007-06-12T09:20:20-04:00</updated>

		<published>2007-06-12T09:20:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=73486#p73486</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=73486#p73486"/>
		<title type="html"><![CDATA[Marky Color Uno]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=73486#p73486"><![CDATA[
You have to [split] and [join] the nick in each of the procs... Personally, I just ban stupid nickchars in my channels..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Tue Jun 12, 2007 9:20 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SaPrOuZy]]></name></author>
		<updated>2007-06-12T05:50:48-04:00</updated>

		<published>2007-06-12T05:50:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=73469#p73469</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=73469#p73469"/>
		<title type="html"><![CDATA[Marky Color Uno]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=73469#p73469"><![CDATA[
hey guys,<br><br>there's a problem in marky's color uno, where the script chokes on players with nicks containing { }. <br>Anyone has this fixed, or is willing to work on fixing it? am not finding much time to do that.<br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4727">SaPrOuZy</a> — Tue Jun 12, 2007 5:50 am</p><hr />
]]></content>
	</entry>
	</feed>
