I`ve just installed marky's color uno on my eggdrop. I`ve also copied "uno.tcl" and "uno.cfg" to my bots source scripts.
Then added the line "source scripts/uno.tcl" on the bot`s conf file.
But once i, ./eggdrop bot.conf. It says.....
couldn't open "score scripts/UnoScores": no such file or directory
while executing
"open $UnoScoreFile w"
invoked from within
"if ![file exists $UnoScoreFile] {
set f [open $UnoScoreFile w]
puts $f "$UnoRobot 0 0 0"
close $f
}"
(procedure "UnoReadScores" line 8 )
invoked from within
"UnoReadScores"
(file "scripts/uno.tcl" line 2654)
invoked from within
"source scripts/uno.tcl"
(file "Botnick.conf" line 1370)
[03:49] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR)
What should i do, please provide me few steps (as im new to Eggdrops).
Also should i maybe add a "source scripts/uno.cfg" in the bots conf file, will that be necessary.
Thanks.
couldn't open "score scripts/UnoScores": no such file or directory
while executing
"open $UnoScoreFile w"
invoked from within
"if ![file exists $UnoScoreFile] {
set f [open $UnoScoreFile w]
puts $f "$UnoRobot 0 0 0"
close $f
}"
(procedure "UnoReadScores" line 8 )
invoked from within
"UnoReadScores"
(file "scripts/uno.tcl" line 2654)
invoked from within
"source scripts/uno.tcl"
(file "Botnick.conf" line 1370)
[03:49] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR)
i had that uno script once loaded as well (decided to translate it to german by the way ^^ ) but never ran into any problems.
look closer and see that the error is giving you exact information about what is missing:
That would be a permission issue, or an invalid path. The w access parameter instructs open to create the file if it does not already exists.
Most likely, I'd point the finger at "score " in front of scripts/UnoScores. I'm pretty sure you don't have a directory named "score scripts" within your eggdrop directory. Check your $UnoScoreFile setting.