Scripterrors
From Eggdrop Wiki
To avoid Eggdrop crashing when an error in a scriptfile occurs: Do this for every script that might raise errors while loading it:
Open the eggdrop.conf file in your editor.
Search for
source scripts/thescript.tcl
and replace it with
if {[catch {source scripts/thescript.tcl} err]} { putlog "Error while loading thescript.tcl: $err" } else { putlog "thescript.tcl loaded without errors" }