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

	<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-10-29T07:31:23-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-10-29T07:31:23-04:00</updated>

		<published>2002-10-29T07:31:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12558#p12558</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12558#p12558"/>
		<title type="html"><![CDATA[Formatting Output]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12558#p12558"><![CDATA[
I believe my problem may be my irc client than, thanks for the reply.<p>Statistics: Posted by Guest — Tue Oct 29, 2002 7:31 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-10-29T05:32:36-04:00</updated>

		<published>2002-10-29T05:32:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12555#p12555</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12555#p12555"/>
		<title type="html"><![CDATA[Formatting Output]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12555#p12555"><![CDATA[
What IRC client are you using?<br><br>Not all clients support formatted text.<br><br>On top of this, not all fonts support formatted text (using spaces).<br><br>And again, not all client scripts support formatting. mIRC has a very large problem when it comes to formatted text. If you leave mirc to display text on it's own (EG, not halting a ON TEXT event), it will work fine (font permitting). Once you start halting a script, and using echo with $1-, all spaces are lost.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Tue Oct 29, 2002 5:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[egghead]]></name></author>
		<updated>2002-10-29T03:05:37-04:00</updated>

		<published>2002-10-29T03:05:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12550#p12550</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12550#p12550"/>
		<title type="html"><![CDATA[Re: Formatting Output]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12550#p12550"><![CDATA[
<blockquote class="uncited"><div>Just a quick question,<br><br>When trying to output a formatted msg, the formatting will remain if i use a putlog, but using putserv/putquick/puthelp, the formatting disappears.  <br><br>(multiple spaces turn into 1 space.)<br>(using tcl format command on the data)<br><br>Is there a way to get around this, and how so. <br><br>martelman</div></blockquote>I'm not sure what formatting you are doing, but loading the below script on a bot, produces a formatted line on irc and the partyline:<br><div class="codebox"><p>Code: </p><pre><code>&lt;egghead&gt; !format&lt;eggheadsbot&gt; hello           world           I am a bot     !!!and on the partyline:[02:03] LINE: hello           world           I am a bot     !!![02:03] &lt;&lt;egghead&gt;&gt; !egghead! !format </code></pre></div><div class="codebox"><p>Code: </p><pre><code>bind PUB - !format showformatproc showformat { nick uhost hand chan text } {   set stringA "hello"   set stringB "world"   set stringC "I am a bot"   set line [format "%-15s %-15s %-15s" $stringA $stringB $stringC]   append line !!!   putlog "LINE: $line"   puthelp "PRIVMSG $chan :$line"   return 1}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=282">egghead</a> — Tue Oct 29, 2002 3:05 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tainted]]></name></author>
		<updated>2002-10-29T01:21:35-04:00</updated>

		<published>2002-10-29T01:21:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12549#p12549</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12549#p12549"/>
		<title type="html"><![CDATA[Formatting Output]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12549#p12549"><![CDATA[
I believe if you escape them (space \ space \ space \ etc) it will work; Don't hold me to that though.<br><br>Edit - I just tested it, and it worked fine. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><div class="codebox"><p>Code: </p><pre><code>putserv "PRIVMSG $chan :\ \ \ \ \ \ \ test \ \ \ \ \ ."</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1256">tainted</a> — Tue Oct 29, 2002 1:21 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-10-29T00:41:37-04:00</updated>

		<published>2002-10-29T00:41:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=12548#p12548</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=12548#p12548"/>
		<title type="html"><![CDATA[Formatting Output]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=12548#p12548"><![CDATA[
Just a quick question,<br><br>When trying to output a formatted msg, the formatting will remain if i use a putlog, but using putserv/putquick/puthelp, the formatting disappears.  <br><br>(multiple spaces turn into 1 space.)<br>(using tcl format command on the data)<br><br>Is there a way to get around this, and how so. <br><br>martelman<p>Statistics: Posted by Guest — Tue Oct 29, 2002 12:41 am</p><hr />
]]></content>
	</entry>
	</feed>
