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

	<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>2010-09-07T10:00:27-04:00</updated>

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

		<entry>
		<author><name><![CDATA[blake]]></name></author>
		<updated>2010-09-07T10:00:27-04:00</updated>

		<published>2010-09-07T10:00:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94236#p94236</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94236#p94236"/>
		<title type="html"><![CDATA[Scramble]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94236#p94236"><![CDATA[
WScrabble 1.10<br>Presentation<br><br>WScrabble is an automatic "robot" or "bot" designed to entertain an IRC chatroom by offering people to play to a Scrabble/Anagrams game.<br><br>Like in the Scrabble game or on TV, 10 letters are drawn randomly : Players must then compose the longest word possible using these letters.<br><br>The player who found the longest wins points, with a bonus if the word uses all letters. As in the WQuizz script, the bot stores the score of each players and can display a ranklist of the 3 or 10 best players of the week or the year.<br><br>Usage<br><br>WScrabble is not a mIRC script but a small standalone Windows program in console-mode. It is however highly-configurable, through the file "WScrabble.ini" which you will have to modify before first use.<br><br>That way, you will be able to change as you like :<br><br>IRC connection settings (including password) <br>colors and texts displayed <br>number of letters drawn <br>the dictionnary of valid words <br>the letters distribution (to alter the frequency of each letters)<br> <br>This is a a good scrabble bot how ever it is unfortunate that it hasnt been developed for eggdrop and runs as a seperate application<br><br><a href="http://wiz0u.free.fr/wscrabble/index_en.php" class="postlink">http://wiz0u.free.fr/wscrabble/index_en.php</a><br><br>Maybe some one could come up with something that will work as equaly as good as this application the developer has no intensions of doing it for eggdrop which is a shame<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10512">blake</a> — Tue Sep 07, 2010 10:00 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2010-09-07T09:22:14-04:00</updated>

		<published>2010-09-07T09:22:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94234#p94234</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94234#p94234"/>
		<title type="html"><![CDATA[Scramble]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94234#p94234"><![CDATA[
I'm going to re-make in a 'namespace' so any variables that is used to not interfere with other scripts you may have loaded. Will reply in a few hours as I'm at work right now. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Tue Sep 07, 2010 9:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Torrevado]]></name></author>
		<updated>2010-09-06T12:39:02-04:00</updated>

		<published>2010-09-06T12:39:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94224#p94224</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94224#p94224"/>
		<title type="html"><![CDATA[Scramble]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94224#p94224"><![CDATA[
@caesar:<br><br>I'd like to show answers also on correctly guessed answers. Is there a way to call a variable from another process? ($word).<br><div class="codebox"><p>Code: </p><pre><code># From what file are the words that will be scrambed? set scramblefile "scramble.txt" # How many seconds to play a scrambled word? set ssecs 60 # Show the answer if nobody got the answer? # 0 for NO and 1 for YES. set sanswer 0 ### Done with configurations, do not edit past here unless you know TCL. ### # binds # bind pub o !scramble pub:scramble # messages # set scongrats {   "Well done"   "Nice going"   "Way to go"   "You got it"   "That's the way"   "Show 'em how it's done"   "Check out the big brain on" } set snonegotit {   "Nobody got it right."   "Hello? Anybody home?"   "You're going to have to try harder!"   "Are these too tough for you?"   "Am I alone here or what?" } # scramble # proc pub:scramble {nick uhost hand chan text} {   if {![file exists $::scramblefile]} {     putserv "PRIVMSG $chan :\002Error\002: $::scramblefile dose not exist."     return   }   set sstarted 0   foreach bla [utimers] {     if {[string match "nobody:gotit*" [lindex $bla 1]]} {       set sstarted 1     }   }   if {$sstarted == 1} {     putserv "PRIVMSG $chan :HEY! One word at a time!"     return   }   set file [open "$::scramblefile" r]   set data [split [read $file] "\n"]   close $file   set word [lindex $data [rand [llength $data]]]   putserv "PRIVMSG $chan :[scramble $word]"   # stuff #   bind pub - $word pub:gotit   utimer $::ssecs [list nobody:gotit $word $chan] } # got it! # proc pub:gotit {nick uhost hand chan text} {   putserv "PRIVMSG $chan :[lindex $::scongrats [rand [llength $::scongrats]]] $nick.."   # clean #   foreach bla [utimers] {     if {[string match "nobody:gotit*" [lindex $bla 1]]} {       killutimer [lindex $bla 2]     }   }   unbind pub - $::lastbind pub:gotit } # loosers! # proc nobody:gotit {word chan} {   if {$::sanswer == 1} {     putserv "PRIVMSG $chan :The answer was \002$word\002.. [lindex $::snonegotit [rand [llength $::snonegotit]]]"     unbind pub - $word pub:gotit     return   }   putserv "PRIVMSG $chan :[lindex $::snonegotit [rand [llength $::snonegotit]]]"   unbind pub - $word pub:gotit } # scramble proc by stdragon @ forum.egghelp.org 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=8047">Torrevado</a> — Mon Sep 06, 2010 12:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2010-08-22T13:50:42-04:00</updated>

		<published>2010-08-22T13:50:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94059#p94059</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94059#p94059"/>
		<title type="html"><![CDATA[Scramble]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94059#p94059"><![CDATA[
have you checked my <a href="http://forum.egghelp.org/viewtopic.php?p=20422" class="postlink">scramble version</a>? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> It's a bit dusty but should do the trick.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sun Aug 22, 2010 1:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Amr]]></name></author>
		<updated>2010-08-22T08:40:54-04:00</updated>

		<published>2010-08-22T08:40:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94049#p94049</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94049#p94049"/>
		<title type="html"><![CDATA[Scramble]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94049#p94049"><![CDATA[
I mean new released one<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9309">Amr</a> — Sun Aug 22, 2010 8:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Torrevado]]></name></author>
		<updated>2010-08-22T08:28:41-04:00</updated>

		<published>2010-08-22T08:28:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94048#p94048</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94048#p94048"/>
		<title type="html"><![CDATA[Scramble]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94048#p94048"><![CDATA[
TCL Archive: <a href="http://www.egghelp.org/tclhtml/3478-4-0-0-1-scramble.htm" class="postlink">http://www.egghelp.org/tclhtml/3478-4-0 ... ramble.htm</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8047">Torrevado</a> — Sun Aug 22, 2010 8:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Amr]]></name></author>
		<updated>2010-08-22T08:23:01-04:00</updated>

		<published>2010-08-22T08:23:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94047#p94047</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94047#p94047"/>
		<title type="html"><![CDATA[Scramble]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94047#p94047"><![CDATA[
guys , any good scramble game tcl around?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9309">Amr</a> — Sun Aug 22, 2010 8:23 am</p><hr />
]]></content>
	</entry>
	</feed>
