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 37 matches

by mortician
Thu Nov 20, 2003 3:51 pm
Forum: Archive
Topic: Help Coding GotFrag TCL
Replies: 14
Views: 3278

yeah pretty sure, just follow it a couple hours and you'll see ;-)
I wouldn't enable community news ...

Well, I wouldn't enable the script actually *g*
by mortician
Thu Nov 20, 2003 1:27 pm
Forum: Archive
Topic: Help Coding GotFrag TCL
Replies: 14
Views: 3278

well, the community news ... every time a reply is posted to a certain topic, that topic comes on top again. This tcl only posts the topics that are "new" in the top8. That can be a new topic, or an old topic that disappeared from the top8 and came back. However, a topic that stays in the ...
by mortician
Mon Nov 17, 2003 7:19 pm
Forum: Archive
Topic: Help Coding GotFrag TCL
Replies: 14
Views: 3278

Are they all like that in Syria? :P

first of all:
If you tested it and it works, let me know ...
Thanks for that ... *sigh*

Oh well, I just had a look and fixed the tcl. Download it again and it will work.

btw: np ...
by mortician
Sat Nov 01, 2003 1:58 pm
Forum: Archive
Topic: string split problem...
Replies: 1
Views: 795

http://www.tcl.tk/man/tcl8.4/TclCmd/split.htm

Code: Select all

split "there is some text # there are more text" #
this was hard :)
by mortician
Fri Oct 31, 2003 8:09 pm
Forum: Archive
Topic: Help Coding GotFrag TCL
Replies: 14
Views: 3278

mortician wrote: it will check the site every 10 minutes and post it to the chans that have chanset +gotfrag
you didn't set that chanset huh, did you? :p
by mortician
Fri Oct 31, 2003 8:50 am
Forum: Archive
Topic: Help Coding GotFrag TCL
Replies: 14
Views: 3278

Hmz, I made something like that a couple of weeks ago: http://mortician.zapto.org:8080/scripts/gotfrag.tcl I don't use it myself and I don't know if it works well, it will check the site every 10 minutes and post it to the chans that have chanset +gotfrag If you tested it and it works, let me know ....
by mortician
Tue Oct 14, 2003 12:57 pm
Forum: Archive
Topic: AVOnJoin problem
Replies: 15
Views: 3345

what error do you get in the partyline or when you trie to start your egg again?
by mortician
Sat Oct 11, 2003 8:46 am
Forum: Archive
Topic: List Script
Replies: 1
Views: 989

I think you don't want to use read to read the lines of your file, but gets Without an exact number of characters to read that command will read everything until it encounters EOF, gets reads a single line from the specified channel. set fo [open "$db" r] while { ![eof $fo] } { set buffer ...
by mortician
Mon Sep 29, 2003 4:56 am
Forum: Archive
Topic: this qnet auth script
Replies: 3
Views: 1360

the bind dcc creates a partyline command, when you type .qauth in the pline your bot will auth ...

However, if I'm not mistaking, your proc has too many parameters, it should be like

proc qauth {handle idx text} { ...
by mortician
Sun Jun 22, 2003 4:33 am
Forum: Archive
Topic: eggdrop latest version doesnt compile the modules.
Replies: 9
Views: 2759

the egg is installed in /home/admin/eggdrop and not in /home/admin/irc/eggdrop1.6.45 ...

try to run it from there
by mortician
Fri Jun 20, 2003 5:12 pm
Forum: Archive
Topic: timed actions
Replies: 1
Views: 1047

you need a time binding, it's in the tcl-commands doc: bind time - <mask> <proc> proc-name <min> <hour> <day> <month> <year> allows you to schedule procedure calls at certain times, mask matches 5 space seperated integers of the form: "min hour day month year"
by mortician
Fri Jun 20, 2003 3:59 am
Forum: Archive
Topic: Sending Email On Deop
Replies: 1
Views: 1216

Code: Select all

bind mode - *-o* deopMail
proc deopMail {nick host hand chan mdechg dnick} {
global botnick
  if {$dnick == $botnick} {
  exec echo "$nick deopped me on $chan at [date] [time]" | sendmail my@email.com
  }
}
by mortician
Wed Jun 18, 2003 4:09 pm
Forum: Archive
Topic: blowfish/base64 encryption
Replies: 3
Views: 1553

thanks, I know what to look for now ...

btw Nimo, that prog would be very usefull if it was a decoder and not an encoder :wink: unfortunately I do not know any c(++) so I can't make it myself :)
by mortician
Wed Jun 18, 2003 9:39 am
Forum: Archive
Topic: blowfish/base64 encryption
Replies: 3
Views: 1553

blowfish/base64 encryption

hey, I'm making some perl script (not for eggdrop) and it needs the same encryption as an eggdrop (encrypt <key> <string> / decrypt <key> <encrypted-base64-string>) As I can read in the docs, eggdrop encrypts the string via blowfish first (since that's the encryption module I've loaded), and next en...
by mortician
Tue Jun 10, 2003 4:34 am
Forum: Archive
Topic: Simple TCL Script
Replies: 25
Views: 6960

yup (if you remove that # off course :wink:)
Oh, and the channel parameter in my proc is $channel and not $chan ...