Here is my crontab:
* * * * * root /path/to/file_to_run
contents of file_to_run:
/bin/cp /path/to/eggdrop/numchat.txt /path/to/yoursite.com/wherever
Make sure to chmod 755 the file_to_run afterwards...
I modified the peak eggdrop script (announces in channel whenever a new record is set for # of ppl in the channel) - I just added to line 31:
Code:
set fid [open "numchat.txt" "WRONLY CREAT"]
puts $fid $curnum
close $fid
Change the filename to whatever you want (not necessary)
Then in your bot config file add:
source scripts/peak1.5.tcl
That's it

Enjoy