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.

Search found 74 matches

by deadite66
Mon Jun 18, 2007 10:15 am
Forum: Eggdrop Help
Topic: Eggdrop and Debian
Replies: 4
Views: 10185

Re: Eggdrop and Debian

ben wrote:Ive compiled eggdrop on my debian using:
apt-get install eggdrop
.
apt-get install only downloads and installs a precompiled copy.

when i once installed eggdrop from a package they stuck the modules in /usr/lib/eggdrop

it not there try this in a terminal "find / -name channel.so"
by deadite66
Wed Jan 03, 2007 12:56 am
Forum: Script Requests
Topic: whos in chat
Replies: 17
Views: 10163

the script makes text files in the irclivedata folder.
ie:
irclive#channnelname.txt

use http://weex.sourceforge.net/ or http://www.lyra.org/sitecopy/ to upload then where they can be accessed by a website.
by deadite66
Tue Jan 02, 2007 4:08 pm
Forum: Script Requests
Topic: whos in chat
Replies: 17
Views: 10163

wrote this a while ago, maybe some use. make a irclivedata folder in your eggdrop folder, the data files will sit in there. # irclivedata.tcl version 0.1.0 # code bodged by some guy @ http://ut2004.titaninternet.co.uk # this script will log every channel the eggdrop bot is on # it will update the ni...
by deadite66
Fri Nov 17, 2006 7:37 am
Forum: Scripting Help
Topic: Enabl and Disable script
Replies: 2
Views: 2772

http://www.eggheads.org/support/egghtml ... mands.html

eggdrop has bind and unbind, so you could have a separate procedure to disable/re-enable a bind
by deadite66
Fri Oct 27, 2006 1:34 pm
Forum: Shell & Bouncer Help
Topic: unzip file "linux"
Replies: 4
Views: 11720

likely have unzip installed or can be via urpmi
by deadite66
Tue Oct 10, 2006 10:14 am
Forum: Eggdrop Help
Topic: bot logging
Replies: 13
Views: 9848

it can be done but means changing bits of the tcl script

in eggdrop conf

Code: Select all

logfile jkp1 #channel "/eggdrop/logs/channel.log"
and in each tcl script where the puthelp etc are

Code: Select all

global botnick
putloglev 1 #channel "<$botnick> text to add to log file."
by deadite66
Thu Sep 28, 2006 10:46 am
Forum: Scripting Help
Topic: [Solved] Love Marriage Command
Replies: 9
Views: 8638

the procedure isn't closed, its missing a curly bracket right at the end.
by deadite66
Tue Sep 19, 2006 6:27 pm
Forum: Script Requests
Topic: script request [ solved ]
Replies: 8
Views: 4987

\o/
by deadite66
Sun Sep 17, 2006 7:07 am
Forum: Script Requests
Topic: script request [ solved ]
Replies: 8
Views: 4987

try this (not tested)

Code: Select all

bind pub - !news newsrun
proc newsrun {nick uhost hand chan arg} {
set globres [glob -nocomplain -directory /home/eggdrop/news/ news.*.txt]
puthelp "PRIVMSG $chan : There are [llength $globres] backup files in the NEWS archive"
}
by deadite66
Wed Sep 13, 2006 9:40 am
Forum: Script Requests
Topic: Help with a Small Script
Replies: 18
Views: 9840

you just need to change a few parts for each action. for example. bind pub - !hugs hugsproc proc hugsproc {nick uhost hand chan text} { set text [split $text] if {$text == ""} { puthelp "PRIVMSG $chan :Hug who? Or did you want me to hug YOU, $nick?" } elseif {[onchan $text $chan]...
by deadite66
Tue Sep 12, 2006 12:32 pm
Forum: Scripting Help
Topic: regexp doesn't identify what it should
Replies: 4
Views: 3499

best to wrap that in

Code: Select all

code tags 
, you might not get any help until you do.
by deadite66
Wed Aug 30, 2006 9:28 am
Forum: Script Support & Releases
Topic: topic save and recall
Replies: 4
Views: 4898

it works for the me and channels it runs on if your not happy with it then feel free to bin this thread, i only posted it incase someone else might make us of it.
by deadite66
Tue Aug 29, 2006 11:54 pm
Forum: Script Support & Releases
Topic: topic save and recall
Replies: 4
Views: 4898

quite possibly :)
by deadite66
Tue Aug 29, 2006 3:58 pm
Forum: Script Support & Releases
Topic: topic save and recall
Replies: 4
Views: 4898

topic save and recall

wrote this a while ago thought someone may get some use out of it. 1. it will save every topic the bot is in regardless of it's op status. 2. the topic files are stored in the eggdrop folder you may want to change that. commands !topic will restore the last topic changed, everyone has access to this...
by deadite66
Sun Aug 27, 2006 2:42 pm
Forum: Eggdrop Help
Topic: loading a script
Replies: 11
Views: 6734

try .restart