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.

[SOLVED] [TCL] Released v103 help!

Support & discussion of released scripts, and announcements of new releases.
Post Reply
b
bleh1234
Voice
Posts: 11
Joined: Thu Mar 22, 2007 8:10 pm

[SOLVED] [TCL] Released v103 help!

Post by bleh1234 »

Hi all,

first post and as always with a problem.

I tryed to use Released v103 in script archive but for some reason i can't get it to work on windrop.

Maybe some1 can explain how it need to be properly installed or knows a better script that does the same?
Last edited by bleh1234 on Fri Mar 23, 2007 3:37 pm, edited 1 time in total.
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Code: Select all

# Location of the file to store data in.
# Location of the file to store data in.
set released(datafile) "/usr/home/ladysin/released.dat"
set released(datafile) "/home/flirtbot/released.dat"

#Elviraa
set released(datafile) "~/released.dat"
One variable is all that is required and if (the script is) properly configured it should function as expected.

Hint:

Code: Select all

./directory/released.dat
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
b
bleh1234
Voice
Posts: 11
Joined: Thu Mar 22, 2007 8:10 pm

Post by bleh1234 »

Well that is what i thought also but those .dat files aren't created.

Code: Select all

# Location of the file to store data in.
# Location of the file to store data in.
set released(datafile) "/usr/home/ladysin/released.dat"
set released(datafile) "/home/flirtbot/released.dat" 
There are 2 lines but why need 2?

this is what i did, just to get that .dat file appear

Code: Select all

# Location of the file to store data in.
# Location of the file to store data in.
set released(datafile) "released.dat"
set released(datafile) "released.dat" 
***NOT WORKING
# Location of the file to store data in.
# Location of the file to store data in.
# set released(datafile) "released.dat"
set released(datafile) "./released.dat" 
***STILL NOTHING
This i didn't get also so i leaved it that way

Code: Select all

#Elviraa
set released(datafile) "~/released.dat"
Starting eggdrop/windrop doesn't gave any error ?¿?¿?¿

Gonna try it again later today, such a simple script can't be a big problem probably a typo ;)
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

The coder left those lines as examples expecting (erroneously) that the person using the script would figure it out.

You dictate where the file (released.dat) should go.

The following places it in your windrop folder:

Code: Select all

set released(datafile) "./released.dat"
Note: Delete all other references to "released(datafile)" as (previously explained) you just need the one reference.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Post Reply