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

by stdragon
Sun Oct 14, 2001 9:55 pm
Forum: Archive
Topic: Why isn't this working...
Replies: 2
Views: 748

Find this line:

putlog $idx "[Faze.n] Password successfully set for users lacking one."

Change it to:
putdcc $idx "[Faze.n] Password successfully set for users lacking one."
by stdragon
Sun Oct 14, 2001 6:13 am
Forum: Archive
Topic: hey here's a revenue idea slennox
Replies: 10
Views: 1179

You should set up a little area where people who need scripts urgently, for whatever reason, can pay people to get them! And egghelp.org could take 10% of it or something hehe.
by stdragon
Fri Oct 12, 2001 7:52 pm
Forum: Archive
Topic: another question about regsub...
Replies: 2
Views: 503

Try {:)} instead of ":)"
by stdragon
Fri Oct 12, 2001 5:34 pm
Forum: Archive
Topic: Problems with make
Replies: 3
Views: 668

Sounds like you are hitting a concurrent process limit, or you are running out of memory. Getting rid of -O6 and using no optimization for those modules will probably fix it.
by stdragon
Fri Oct 12, 2001 6:29 am
Forum: Archive
Topic: Eggdrop1.4.3+win32 under windows95,98
Replies: 12
Views: 1448

First, how did you fix your earlier problem? If you post your solution maybe other people with the same problem can benefit :smile: Second, try telnetting to the bot. Start -> Run -> telnet localhost 3333 (or whatever port you chose in your config file). Then log in as "new". When you're o...
by stdragon
Fri Oct 12, 2001 3:38 am
Forum: Archive
Topic: Eggdrop1.4.3+win32 under windows95,98
Replies: 12
Views: 1448

Try unloading the dns module.

Find the line that says "loadmodule dns" and put a # at the start:

#loadmoule dns
by stdragon
Fri Oct 12, 2001 3:37 am
Forum: Archive
Topic: Dalnet DCC Sends
Replies: 2
Views: 552

How do you know it's not working? Also, are you sending the correct nick? (what is the context of $nick in your example) I just tried it on my dalnet bot and it works fine. Try this: .set use-console-r 1 .console +r .tcl putserv "dccallow +yournick" it should say <yarker> [01:33] [@] twist...
by stdragon
Thu Oct 11, 2001 6:22 am
Forum: Archive
Topic: can't execute tcl command from dcc window
Replies: 6
Views: 932

it looks like you left out the all-important ".tcl" command... just typing putserv on the console won't work.

.tcl putserv "blah blah blah"
by stdragon
Wed Oct 10, 2001 3:23 pm
Forum: Archive
Topic: treating variables in strings as text
Replies: 2
Views: 482

Well I guess it's too late, now, but if you were still wondering how to do it your original way, try this: set mystring {hello $dynamic eat more eggdrop soup} proc output_something {some_arg somechan} { global mystring set dynamic $some_arg set newstring [subst $mystring] putserv "$somechan :$n...
by stdragon
Tue Oct 09, 2001 6:46 pm
Forum: Archive
Topic: search for a word in a file and rename the word next to it
Replies: 2
Views: 532

Code: Select all

set text "let's get some sexy goats"

regsub -all -- {(^|W)(sexy) w*} $text {12 sheep} newtext

# now it's "let's get some sexy sheep"
by stdragon
Tue Oct 09, 2001 6:21 pm
Forum: Archive
Topic: logging outgoing private msgs
Replies: 3
Views: 656

There is a special flag that lets you log all server output. That should do the trick.

You have to .set debug-output 1
then .console +v

I imagine you can use the v flag with the logfile command, as well, as long as debug-output is 1.
by stdragon
Mon Oct 08, 2001 9:30 pm
Forum: Archive
Topic: 2 questions about eggdrop
Replies: 5
Views: 886

As far as I know, that patch doesn't need any fixing. You don't even need the patch, just get the latest cvs version of 1.6.
by stdragon
Fri Oct 05, 2001 1:35 am
Forum: Archive
Topic: FAQ
Replies: 2
Views: 958

How about a section on using list commands properly? The question could be something like, "why can't tcl handle { } [ ] in nicks or message?" because that's usually where it comes up. Another thing could be about how to use utimer and eval properly. "Why is tcl so insecure that it ex...
by stdragon
Fri Oct 05, 2001 1:30 am
Forum: Archive
Topic: op error
Replies: 2
Views: 799

A better way to use utimer is like this:

utimer 3 [list somecmd arg1 arg2 ...]

Use that instead of your { and } and bob's your uncle.
by stdragon
Thu Oct 04, 2001 4:56 pm
Forum: Archive
Topic: Actions?
Replies: 4
Views: 1085

Are you sure you copy/pasted it correctly? That is the right way to do an action.