This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

wordgame.tcl dosent work ?

Old posts that have not been replied to for several years.
Locked
M
Mystical
Voice
Posts: 30
Joined: Thu May 26, 2005 5:53 pm

wordgame.tcl dosent work ?

Post by Mystical »

hello.. ı am install wordgame.tcl than this web page. but not work .. help me please .....
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

I downloaded wordgame.tcl, edited it, then uploaded it to a bot...works just fine for me. What seems to be the problem, homer?
User avatar
De Kus
Revered One
Posts: 1361
Joined: Sun Dec 15, 2002 11:41 am
Location: Germany

Post by De Kus »

"doesn't work" is no error description
*considers to included that in his signature*
De Kus
StarZ|De_Kus, De_Kus or DeKus on IRC
Copyright © 2005-2009 by De Kus - published under The MIT License
Love hurts, love strengthens...
M
Mystical
Voice
Posts: 30
Joined: Thu May 26, 2005 5:53 pm

Post by Mystical »

the porblem !! ı want work (!word) the eggdrop ( wordgame.tcl) but not get reply . ı have create a worldlist file ....
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

have you correctly edited the script?

Code: Select all

# This is the file that holds the wordlist, set it to whatever
set wlistfile /usr/local/egg/kinks/scripts/wordlist.txt

# This file keeps scores again call it whatever 
set wscorefile /usr/local/egg/kinks/scripts/wscore
M
Mystical
Voice
Posts: 30
Joined: Thu May 26, 2005 5:53 pm

Post by Mystical »

yes ! but not get reply ( !word ) what is problem ???
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

Are you running this on a windrop or eggdrop?
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
M
Mystical
Voice
Posts: 30
Joined: Thu May 26, 2005 5:53 pm

Post by Mystical »

eggdrop1.4.5 runninig
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

Have you tried upgrading to.. 1.6.17.

You're WAAAAAAAAAAAAAAAAY behind with 1.4.5
M
Mystical
Voice
Posts: 30
Joined: Thu May 26, 2005 5:53 pm

Post by Mystical »

is it running eggdrop1.4.5 ? are you scramble.tcl ( eggdrop1.6.7) is it running ? send me please ?
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

upgrade to 1.6.17, stop asking stupid questions.

It's most likely that the script won't run properly because of your ancient eggdrop version.
M
Mystical
Voice
Posts: 30
Joined: Thu May 26, 2005 5:53 pm

Post by Mystical »

ı m upgrage eggdrop1.6.17 but get reply again (!word ) . are you running this script ? where is ?
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

Mystical, please copy & paste the same section of binds & variables as shown in this example:

Code: Select all

bind pub f|f !score the_score
bind pub f|f !word pub_word
bind time - "05 03 % % %" wo_refresh_time
bind msg m !wordswitch word_onoff
bind msg m !wordanswer answer_onoff

## VARIABLES, set these.

# This is the file that holds the wordlist, set it to whatever
set 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 wordlist
set specuser specialwd

# Say the answer if no one gets it
# 0 is don't say it / 1 is say it
set 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 here
set 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 on
set glonoff 1

# Global channel variable, initialized to null, leave alone
set chan ""

# Initializes global wordlist to null, leave it alone
set words ""
Locked