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

	<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-03-12T05:43:00-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-12T05:43:00-04:00</updated>

		<published>2002-03-12T05:43:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5256#p5256</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5256#p5256"/>
		<title type="html"><![CDATA[Code for word scrambling]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5256#p5256"><![CDATA[
Those both work perfectly stdragon, I do appreciate for your great help. Thanx a lot.<p>Statistics: Posted by Guest — Tue Mar 12, 2002 5:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2002-03-11T23:52:00-04:00</updated>

		<published>2002-03-11T23:52:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5252#p5252</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5252#p5252"/>
		<title type="html"><![CDATA[Code for word scrambling]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5252#p5252"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>proc scramble_phrase {phrase} {  set newphrase [list]  foreach word [split $phrase] {    lappend newphrase [scramble $word]  }  return [join $newphrase]}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Mon Mar 11, 2002 11:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-11T08:21:00-04:00</updated>

		<published>2002-03-11T08:21:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5237#p5237</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5237#p5237"/>
		<title type="html"><![CDATA[Code for word scrambling]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5237#p5237"><![CDATA[
I've found the way to call the procedure, but what if I want to scramble a phrase, let say I want to scramble "word1 word2 word3" and I want the result something like "rd1ow 2odwr r3owd"? dont scramble the space, keep the space at it original location.<br><br>Thanks.<p>Statistics: Posted by Guest — Mon Mar 11, 2002 8:21 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-11T06:52:00-04:00</updated>

		<published>2002-03-11T06:52:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5233#p5233</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5233#p5233"/>
		<title type="html"><![CDATA[Code for word scrambling]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5233#p5233"><![CDATA[
Sorry to bother you again stdragon.<br><br>How can I call the procedure &amp; say it to the channel?<p>Statistics: Posted by Guest — Mon Mar 11, 2002 6:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-11T04:41:00-04:00</updated>

		<published>2002-03-11T04:41:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5229#p5229</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5229#p5229"/>
		<title type="html"><![CDATA[Code for word scrambling]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5229#p5229"><![CDATA[
Thx stdragon, I'll give your code a try<p>Statistics: Posted by Guest — Mon Mar 11, 2002 4:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2002-03-11T03:58:00-04:00</updated>

		<published>2002-03-11T03:58:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5227#p5227</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5227#p5227"/>
		<title type="html"><![CDATA[Code for word scrambling]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5227#p5227"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>set word "yummysheep"proc scramble {word} {  set letters [split $word ""]  set newword ""  while {[llength $letters]} {    set i [rand [llength $letters]]    append newword [lindex $letters $i]    set letters [lreplace $letters $i $i]  }  return $newword}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Mon Mar 11, 2002 3:58 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-11T01:11:00-04:00</updated>

		<published>2002-03-11T01:11:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5223#p5223</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5223#p5223"/>
		<title type="html"><![CDATA[Code for word scrambling]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5223#p5223"><![CDATA[
Please anybody help<br>How's the code for scrambling a word?<p>Statistics: Posted by Guest — Mon Mar 11, 2002 1:11 am</p><hr />
]]></content>
	</entry>
	</feed>
