| View previous topic :: View next topic |
| Author |
Message |
bleh1234 Voice
Joined: 22 Mar 2007 Posts: 11
|
Posted: Thu Mar 22, 2007 8:14 pm Post subject: [SOLVED] [TCL] Released v103 help! |
|
|
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 |
|
| Back to top |
|
 |
Alchera Revered One

Joined: 11 Aug 2003 Posts: 3344 Location: Ballarat Victoria, Australia
|
Posted: Thu Mar 22, 2007 8:43 pm Post subject: |
|
|
| Code: | # 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: | | ./directory/released.dat |
_________________ Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM |
|
| Back to top |
|
 |
bleh1234 Voice
Joined: 22 Mar 2007 Posts: 11
|
Posted: Fri Mar 23, 2007 9:23 am Post subject: |
|
|
Well that is what i thought also but those .dat files aren't created.
| Code: | # 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: | # 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: | #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  |
|
| Back to top |
|
 |
Alchera Revered One

Joined: 11 Aug 2003 Posts: 3344 Location: Ballarat Victoria, Australia
|
Posted: Fri Mar 23, 2007 9:34 am Post subject: |
|
|
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: | | 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 |
|
| Back to top |
|
 |
|