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

	<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>2005-11-22T22:56:37-04:00</updated>

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

		<entry>
		<author><name><![CDATA[echo]]></name></author>
		<updated>2005-11-22T22:56:37-04:00</updated>

		<published>2005-11-22T22:56:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=57641#p57641</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=57641#p57641"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=57641#p57641"><![CDATA[
Well I tried the vs Ian-Highlander posted and get this:<br><div class="codebox"><p>Code: </p><pre><code>Tcl error [pub_word]: invalid command name "chan"</code></pre></div><br>New to eggdrop and TCL but there it is.  Not sure if anyone else had this issue.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7016">echo</a> — Tue Nov 22, 2005 10:56 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pwnt]]></name></author>
		<updated>2005-11-14T15:17:09-04:00</updated>

		<published>2005-11-14T15:17:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=57403#p57403</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=57403#p57403"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=57403#p57403"><![CDATA[
This is a cool script, and it works with my eggdrop with that last code, but the !score is not working too, I'm getting same msg, anyone can help so we can see the scores?<br><br>[22:15] Tcl error [the_score]: expected integer but got ""<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6615">pwnt</a> — Mon Nov 14, 2005 3:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ian-Highlander]]></name></author>
		<updated>2005-10-27T05:16:54-04:00</updated>

		<published>2005-10-27T05:16:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=56865#p56865</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=56865#p56865"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=56865#p56865"><![CDATA[
There is a newer version of Wordgame.tcl by the original author, (this is murf's work not mine) which should work perfectly and does on several bots I run it on. Replace the version you have with this one. Hope this helps.<br><div class="codebox"><p>Code: </p><pre><code>##################  Written by Murf 10/10/97 ####################                                                           #### Requires wordlist.txt and wscore file                     #### I have included a wordlist file, but if you want to write #### your own, the format is                                   ## ## &lt;word to scramble&gt;:&lt;clue&gt;                                 ####                                                           ####                                                           ####                                                           ####  The only  commands are:                                  ####                                                           ####  !word       -- starts the game                           ####  !score      -- spews the top ten scorers                 ####  !wordswitch -- turns it on or off                        ####  !wordanswer -- turn the answer on or off                 ####           Check www.blueday.org/eggdrop.html              ####           Contact murf@mindless.com with questions        ################################################################### NOTES# Scores are kept globally# Scores are only kept for those in the bot's user list.# The special user used to track various things, is added#   by the script.## REVISION HISTORY# Mar 26 2002   --  Fixed adding new channel # Dec 18 2000   --  Fixed the score again. It was totally broken, not listing#                   anything close to the top 10 scorers#               --  fixed problem with possible duplicate entries in the score#                   file is users change case of their nicks# July 9 2000   --  Added switch to say/not say the answer if no one gets it.#--  Got rid of all the 'putchan's# July 2 2000 -- Fixed bug in the_score that didn't account for # less than 10 people in the score list.#--Fixed bug in the_score that failed to check for #non-existent score file.## BINDS#Change the f|f if you want.bind pub f|f !score the_scorebind pub f|f !word pub_wordbind time - "05 03 % % %" wo_refresh_timebind msg m !wordswitch word_onoffbind msg m !wordanswer answer_onoff## VARIABLES, set these.# This is the file that holds the wordlist, set it to whateverset wlistfile /usr/local/egg/kinks/scripts/wordlist.txt# This file keeps scores again call it whatever set wscorefile /usr/local/egg/kinks/scripts/wscore# This special user is added to the bots userlist and used to track# where each chan is in the wordlistset specuser specialwd# Say the answer if no one gets it# 0 is don't say it / 1 is say itset ansonoff 1## ----------------Leave the rest alone----------------------------------# This variable tells whether the script is being run.  It will only allow# the game to be played in one channel at a time, otherwise too many timers# too much confusion.# Occasionally, the script may become confused during desynchs and says its # running when it isn't. You must reset this variable to 0. Don't worry# it doesnt happen often.  Obviously leave it set to 0 hereset winuse 0# This variable is the place in the wordlist.  Its initialized to 0 don't# mess with it.  I tried randomizing this, but found this worked better,# but its not hard to randomize if you like that better.set word_list_count 0# On off switch for the annoying people# 0 is off/ 1 is onset glonoff 1# Global channel variable, initialized to null, leave aloneset chan ""# Initializes global wordlist to null, leave it aloneset words ""# ----------CODE--------------------------------------------------------# Procedure to turn on/off whether the answer is given if no one# gets it.proc answer_onoff {nick uhost handle args} {  global ansonoff botnick  set onoff [string tolower [ string trim [lindex [split $args] 0] "{}" ]]  if {$onoff == "on"} {  set ansonoff 1putserv "NOTICE $nick :Wordgame will now tell you losers the answers ;-P"return}   if {$onoff == "off"} { set ansonoff 0putserv "NOTICE $nick :Wordgame will no longer tell you losers the answers"return}   putserv "NOTICE $nick :USAGE: /msg $botnick !wordanswer on\/off"   return}# Had to add an on off switch cause some pple started annoying meproc word_onoff {nick uhost handle args} {  global botnick glonoff  set onoff [string tolower [ string trim [lindex [split $args] 0] "{}" ]]  if {$onoff == "on"} {  set glonoff 1putserv "NOTICE $nick :Wordgame is turned on"return}   if {$onoff == "off"} { set glonoff 0putserv "NOTICE $nick :Wordgame is turned off"return}   putserv "NOTICE $nick :USAGE: /msg $botnick !wordswitch on\/off"   return}# This is the main proc, it spews the word and sets the timers to do the # rest.proc pub_word {nick uhost handle channel args} {   global wscorefile wlistfile words word_list_count answer winuse \chan letone lettwo letters specuser glonoff   if {$glonoff == 0} {putserv "PRIVMSG $channel :Sorry, wordgame is turned off, try again later"return   }    set chn [string tolower $channel]   if {$word_list_count == 0} {       if {![validuser $specuser]} {          set channels [channels]          adduser $specuser specuser!special@word.special.org          foreach chann $channels {             setuser $specuser XTRA wcount.$chann 0          }       }       set word_list_count [getuser $specuser XTRA wcount.$chn]       if {$word_list_count == ""} {          setuser $specuser XTRA wcount.$chn 0          set $word_list_count 0       }         set words ""       set fd [open $wlistfile r]       while {![eof $fd]} {          lappend words [gets $fd]       }       close $fd   }   if {($winuse == 1) &amp;&amp; ([string compare $chn $chan] != 0)} {      putserv "PRIVMSG $chn :Sorry, they're already playing in $chan, go join in. I'll tell em your coming, $nick."    return 0   } elseif {($winuse == 1) &amp;&amp; ([string compare $chn $chan] == 0)} {         putserv "PRIVMSG $chan :HEY! One word at a time!"     return 0   } elseif {$winuse == 0} {      set chan $chn      set winuse 1      set word_pair [lindex $words $word_list_count]      set answer [lindex [split $word_pair :] 1]      set word_split [split $word_pair :]      set letters [lreplace $word_split 1 1]      set let_split [split $letters {}]      set letone [lindex $let_split 0]      set slettwo $letone      set slettwo [join [lappend slettwo [lindex $let_split 1]]]      regsub { } $slettwo {} lettwo      set i [llength $let_split]      set smixed ""      set tmixed ""      for {set j 0} {$j &lt; $i} {incr j} {        set k [rand [llength $let_split]]         set smixed $tmixed        set smixed [lappend smixed [lindex $let_split $k]]        set let_split [lreplace $let_split $k $k]        regsub { } $smixed {} tmixed      }      set mixed $tmixed      bind pub - $letters pub_gotit      putserv "PRIVMSG $chan :Unscramble ---&gt; \0036 $mixed "      incr word_list_count       if {$word_list_count &gt;= [expr [llength $words] -1]} {         set word_list_count "0"      }      setuser $specuser XTRA wcount.$chn $word_list_count      utimer 60 noone_gotit       utimer 15 clue_1      utimer 30 clue_2      utimer 45 clue_3   }}# All the timers expired and no one got it. Spew to chan.proc noone_gotit {} {   global winuse chan letters ansonoff   if {$ansonoff} {     putserv "PRIVMSG $chan :Nobody got it...it\'s \0034$letters"   } else {      putserv "PRIVMSG $chan :Nobody got it...\0034losers!"   }   unbind pub - $letters pub_gotit   set winuse 0    set chan "" }# List of things to say when a validuser winsset winsay {"must be a fluke""you rule!!""how's that VD comin along?""can I be your friend?""you're such a badass!""must have gotten all the easy ones!""but you still suck!""you must be on \0034fire!!""cheater!"}# Somebody won, spew to chan and update score file. Scores are kept for both# daily and cumulative.  Once anyone hits 500 all scores are reset.proc pub_gotit {nick uhost handle channel args} {   global wscorefile words letters answer  winuse chan winsay   putserv "PRIVMSG $chan :Woohoo $nick!! You got it...\0034$letters"   kill_timers      unbind pub - $letters pub_gotit   if {![validuser $handle]} {     set winuse 0     set chan ""     return 0   }   if {![file exists $wscorefile]} {set fd [open $wscorefile w]close $fd   }   set fd [open $wscorefile r]   set j 0   while {![eof $fd]} {     lappend score [gets $fd]     set j [incr j]    }   set i [expr $j - 1]   set score [lreplace $score $i $i]   close $fd   for {set k 0} {$k &lt; $i} {incr k 3} {     set scnick [lindex $score $k]     if {[string tolower $handle] == [string tolower $scnick]} {        set newd [expr [lindex $score [expr $k + 1]] + 1]        set newf [expr [lindex $score [expr $k + 2]] + 1]        set score [lreplace $score [expr $k + 1] [expr $k + 2] $newd $newf]        set dscore [lindex $score [expr $k + 1]]        set rand_say [lindex $winsay [rand [llength $winsay]]]        putserv "PRIVMSG  $chan :$nick you've won $dscore times today, $rand_say"        if {$newf == 500} {          putserv "PRIVMSG $chan :OH MY GAWD!! $scnick just scored 500 since time began!"          set score [lreplace $score 1 2 0 0]          for {set k 1} {$k &lt; $i} {incr k 2} {            set score [lreplace $score $k $k 0]    incr k            set score [lreplace $score $k $k 0]          }          putserv "PRIVMSG $chan :\001ACTION sprinkles bot dust and time begins again!"        }        set winuse 0        set chan ""        set fd [open $wscorefile w]        foreach line $score {          puts $fd $line        }         close $fd        return 0     }     }   putserv "PRIVMSG $chan :$nick this is your first ever win!!!...Don't you feel pathetic!"   set score [lappend score $handle]   set score [lappend score 1]   set score [lappend score 1]   set fd [open $wscorefile w]     foreach line $score {       puts $fd $line     }   close $fd   set winuse 0   set chan ""}proc the_score {nick uhost handle channel args} {  global botnick wscorefile words answer winuse chan  if {($winuse == 1) &amp;&amp; ($chan == $channel)} {    putserv "PRIVMSG $chan :Sheesh! Can't you see we're playing here!!"  return 0  }  if {![file exists $wscorefile]} {    putserv "PRIVMSG $chan : No one has scored yet!"    return  }  set fd [open $wscorefile r]  set j 0   while {![eof $fd]} {     lappend score [gets $fd] incr j   }   set i [expr $j - 1]   set score [lreplace $score $i $i]   close $fd   set looptest [llength $score]   for {set k 0} {$k &lt; $looptest} {incr k 3} {      set wosnick [lindex $score $k]       set dscore [lindex $score [expr $k + 1]]      set fscore [format "%d" [lindex $score [expr $k + 2]]]      lappend tempsortscore [format "%.20d %d %s" $fscore $dscore $wosnick]   }   set tempsortscore [lsort -decreasing $tempsortscore]   for {set i 0} {$i &lt; 10} {incr i} {      set tiscore [lindex $tempsortscore $i]  set newtempsortscore [string trimleft [lindex $tiscore 0] 0]      append sortscore [format "\0034 %s\.\003 %s\(%d\/%d\)  " [expr {$i + 1}] [lindex $tiscore 2] $newtempsortscore [lindex $tiscore 1]]   }   set slength [llength $sortscore]   putserv "PRIVMSG $channel :The top 10 Scramble scorers are (Total/Daily):"   putserv "PRIVMSG $channel :$sortscore"}# Give clue wordproc clue_1 {} {   global chan answer   set clue $answer   putserv "PRIVMSG $chan :Clue ---&gt;\00312  $clue"}# Give first letter of the wordproc clue_2 {} {   global chan letone   set clue $letone   putserv "PRIVMSG $chan :First letter ---&gt;\00312  $clue"}# Give the second letterproc clue_3 {} {   global chan lettwo   set clue $lettwo    putserv "PRIVMSG $chan :First two letters ---&gt;\00312  $clue"}# Kill all remaining timers when someone wins.proc kill_timers {} {   global chan   foreach j [utimers] {     if {[lindex $j 1] == "noone_gotit"} {        killutimer [lindex $j 2]     }     if {[lindex $j 1] == "clue_1"} {        killutimer [lindex $j 2]     }     if {[lindex $j 1] == "clue_2"} {        killutimer [lindex $j 2]     }     if {[lindex $j 1] == "clue_3"} {        killutimer [lindex $j 2]     }   }   return 0}# Its 3:00 am, clear the daily scores.proc wo_refresh_time {m h d mo y} {  global wscorefile   set fd [open $wscorefile r]  set j 0  while {![eof $fd]} {     lappend score [gets $fd]     set j [incr j]    }  set i [expr $j - 1]  set score [lreplace $score $i $i]  close $fd  set score [lreplace $score 1 1 0]  for {set k 1} {$k &lt; $i} {incr k 3} {     set score [lreplace $score $k $k 0]  }  set fd [open $wscorefile w]  foreach line $score {      puts $fd $line  }   close $fd  return 1}putlog "Wordgame by murf loaded"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=17">Ian-Highlander</a> — Thu Oct 27, 2005 5:16 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-10-25T10:09:51-04:00</updated>

		<published>2005-10-25T10:09:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=56827#p56827</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=56827#p56827"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=56827#p56827"><![CDATA[
<blockquote class="uncited"><div>I have that too after someone got 500 points, and for the damn of it you cannot modify the score file so people can get over 500 points, that error always comes back unless you delete the wscore file and let it make a new one</div></blockquote>Contact the script author.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Tue Oct 25, 2005 10:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CosmicD]]></name></author>
		<updated>2005-10-25T09:18:15-04:00</updated>

		<published>2005-10-25T09:18:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=56824#p56824</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=56824#p56824"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=56824#p56824"><![CDATA[
I have that too after someone got 500 points, and for the damn of it you cannot modify the score file so people can get over 500 points, that error always comes back unless you delete the wscore file and let it make a new one<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5772">CosmicD</a> — Tue Oct 25, 2005 9:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Stone]]></name></author>
		<updated>2005-08-04T11:19:20-04:00</updated>

		<published>2005-08-04T11:19:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53699#p53699</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53699#p53699"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53699#p53699"><![CDATA[
hello ...<br><br>can you help me please ... with this error  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"> <br><br><div class="codebox"><p>Code: </p><pre><code>Tcl error [the_score]: expected integer but got ""</code></pre></div><br><br>thank you  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6520">Stone</a> — Thu Aug 04, 2005 11:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Mystical]]></name></author>
		<updated>2005-08-01T15:24:39-04:00</updated>

		<published>2005-08-01T15:24:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53612#p53612</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53612#p53612"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53612#p53612"><![CDATA[
<blockquote class="uncited"><div><img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> bu soruyu soran galiba bi türk kardeşim.. bende türkce yanıt vereyim.<br>oncelikle <div class="codebox"><p>Code: </p><pre><code>/home/deneme/eggdrop/scripts/awaC/wordlist.txt</code></pre></div>kısmını kendine göre değişiyiyorsun.. diğerinide aynı şekilde. <br>Sonrasında yukarıda verilmiş wordswitch on komutunuda yaptıktan sonra<br>f|f ları değiştirip -|- yapiorsun.. sorun direk olarak ortadan kalkar tabi tcl nide rehaslamıyı unutma.. kolay gelsin <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote>I know awaC I have maked already ... but not running .. this eggdrop come in irc server but not get reply commands ..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6276">Mystical</a> — Mon Aug 01, 2005 3:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-07-31T16:32:49-04:00</updated>

		<published>2005-07-31T16:32:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53578#p53578</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53578#p53578"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53578#p53578"><![CDATA[
<blockquote class="uncited"><div><img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> bu soruyu soran galiba bi türk kardeşim.. bende türkce yanıt vereyim.<br>oncelikle <div class="codebox"><p>Code: </p><pre><code>/home/deneme/eggdrop/scripts/awaC/wordlist.txt</code></pre></div>kısmını kendine göre değişiyiyorsun.. diğerinide aynı şekilde. <br>Sonrasında yukarıda verilmiş wordswitch on komutunuda yaptıktan sonra<br>f|f ları değiştirip -|- yapiorsun.. sorun direk olarak ortadan kalkar tabi tcl nide rehaslamıyı unutma.. kolay gelsin <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote>this is international forum, therefore you are required to post in English<br><br>or at least start a dedicated thread in your language, like our german friends did<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Sun Jul 31, 2005 4:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awaC]]></name></author>
		<updated>2005-07-31T13:15:24-04:00</updated>

		<published>2005-07-31T13:15:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53572#p53572</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53572#p53572"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53572#p53572"><![CDATA[
<img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> bu soruyu soran galiba bi türk kardeşim.. bende türkce yanıt vereyim.<br>oncelikle <div class="codebox"><p>Code: </p><pre><code>/home/deneme/eggdrop/scripts/awaC/wordlist.txt</code></pre></div>kısmını kendine göre değişiyiyorsun.. diğerinide aynı şekilde. <br>Sonrasında yukarıda verilmiş wordswitch on komutunuda yaptıktan sonra<br>f|f ları değiştirip -|- yapiorsun.. sorun direk olarak ortadan kalkar tabi tcl nide rehaslamıyı unutma.. kolay gelsin <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=5429">awaC</a> — Sun Jul 31, 2005 1:15 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-07-31T06:20:21-04:00</updated>

		<published>2005-07-31T06:20:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53570#p53570</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53570#p53570"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53570#p53570"><![CDATA[
hmmm odd that i missed the useful word 'on' in that lol. must of been another of my sleep deprived posts.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3723">^DooM^</a> — Sun Jul 31, 2005 6:20 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-07-30T18:39:35-04:00</updated>

		<published>2005-07-30T18:39:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53547#p53547</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53547#p53547"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53547#p53547"><![CDATA[
<blockquote class="uncited"><div>.. ı have maked  /msg scramble ! !wordswitch on<br>but not get reply ..</div></blockquote>Incase that's not a typing mistake it's<blockquote class="uncited"><div>/msg scramble !wordswitch on</div></blockquote>as suggested by Ian-Highlander.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sat Jul 30, 2005 6:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Mystical]]></name></author>
		<updated>2005-07-30T09:52:58-04:00</updated>

		<published>2005-07-30T09:52:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53530#p53530</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53530#p53530"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53530#p53530"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div><blockquote class="uncited"><div>Did you actually turn the game on?<br><br>/msg yourbotsname !wordswitch<br><br>Make sure you have the flags +mf. Also noone but people added to your bot with the +f flag can play the game you may want to change the 'f|f' flags to '-|-' in the binds without the quotes''</div></blockquote>ok ı have maked flags to -|-' but not get relpy "/msg botname !wordswitch and !word</div></blockquote>Umm you do realise the command is actually:<br><br>/msg botnick !wordswitch on<br><br>Right?<br><br>You have to specify the on or off at the end, just a thought in case you'd missed it.</div></blockquote>oke ı have inspected .. ı have maked  /msg scramble ! !wordswitch on<br>but not get reply ..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6276">Mystical</a> — Sat Jul 30, 2005 9:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ian-Highlander]]></name></author>
		<updated>2005-07-30T08:38:25-04:00</updated>

		<published>2005-07-30T08:38:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53528#p53528</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53528#p53528"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53528#p53528"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div>Did you actually turn the game on?<br><br>/msg yourbotsname !wordswitch<br><br>Make sure you have the flags +mf. Also noone but people added to your bot with the +f flag can play the game you may want to change the 'f|f' flags to '-|-' in the binds without the quotes''</div></blockquote>ok ı have maked flags to -|-' but not get relpy "/msg botname !wordswitch and !word</div></blockquote>Umm you do realise the command is actually:<br><br>/msg botnick !wordswitch on<br><br>Right?<br><br>You have to specify the on or off at the end, just a thought in case you'd missed it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=17">Ian-Highlander</a> — Sat Jul 30, 2005 8:38 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Mystical]]></name></author>
		<updated>2005-07-30T06:40:28-04:00</updated>

		<published>2005-07-30T06:40:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53526#p53526</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53526#p53526"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53526#p53526"><![CDATA[
<blockquote class="uncited"><div>Are you certain you have set the pathlist to <em class="text-italics">wordlist.txt </em>&amp; <em class="text-italics">wscore</em> correctly? To recheck, from your bots ~scripts folder type &gt;&gt; pwd</div></blockquote>yes ı have again checked  ... it is'nt problem...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6276">Mystical</a> — Sat Jul 30, 2005 6:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-07-29T20:42:12-04:00</updated>

		<published>2005-07-29T20:42:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53499#p53499</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53499#p53499"/>
		<title type="html"><![CDATA[&amp;#305; can't runnig Wordgame.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53499#p53499"><![CDATA[
Are you certain you have set the pathlist to <em class="text-italics">wordlist.txt </em>&amp; <em class="text-italics">wscore</em> correctly? To recheck, from your bots ~scripts folder type &gt;&gt; pwd<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Fri Jul 29, 2005 8:42 pm</p><hr />
]]></content>
	</entry>
	</feed>
