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

by BarkerJr
Thu Oct 23, 2003 12:13 am
Forum: Archive
Topic: bot and services
Replies: 5
Views: 1097

Add the services bot to your bot's userlist as a friend.
by BarkerJr
Thu Oct 23, 2003 12:10 am
Forum: Archive
Topic: TCL commands imported.
Replies: 5
Views: 1517

There's some interesting hooks for timers. You can make a function get called every second. Add the hook where you bind stuff and delete it where you unbind. add_hook(HOOK_SECONDLY, (Function)megahal_hook_secondly); static void megahal_hook_secondly(void){ whatever } del_hook(HOOK_SECONDLY, (Functio...
by BarkerJr
Wed Oct 22, 2003 12:51 am
Forum: Archive
Topic: last version of botnetop.mod
Replies: 2
Views: 820

by BarkerJr
Wed Oct 22, 2003 12:43 am
Forum: Archive
Topic: TCL commands imported.
Replies: 5
Views: 1517

Re: TCL commands imported.

Context; Don't use Context anymore. It just wastes CPU and doesn't give any useful output. dprintf(DP_SERVER, "PRIVMSG %s : !list\n", sv_channel); I don't think you want the space after the colon. I don't think any file servers respond to !list if it's prefixed with a space. static void n...
by BarkerJr
Fri Oct 17, 2003 1:09 am
Forum: Archive
Topic: Chanpro1.4.tcl Enhancement
Replies: 15
Views: 2526

I don't think you can :/
by BarkerJr
Thu Oct 16, 2003 4:59 pm
Forum: Archive
Topic: I just got owned, by 1 user vs 17eggs.
Replies: 10
Views: 2288

Something to keep in mind is that bans are set via putquick, but kicks are via putserv. This is by design, to ensure that the bans are set before the user is kicked. Probably the best thing to do would be to deop the user in the same mode line as you ban him or her.
by BarkerJr
Thu Oct 16, 2003 4:35 pm
Forum: Archive
Topic: i need a script for .....
Replies: 7
Views: 1595

Why don't you just not give ops to people you don't trust? With any lag at all, that new user can be deleted before the bot can respond.
by BarkerJr
Thu Oct 16, 2003 4:30 pm
Forum: Archive
Topic: Chanpro1.4.tcl Enhancement
Replies: 15
Views: 2526

I think \017 is plain (CTRL+O), too.
by BarkerJr
Sun Oct 12, 2003 10:02 pm
Forum: Archive
Topic: Connecting Eggdrop Through Proxy!!
Replies: 6
Views: 4572

You can't.
by BarkerJr
Sun Oct 12, 2003 9:57 pm
Forum: Archive
Topic: Is it possible to share notes and channel setting aswell?
Replies: 4
Views: 2339

Alternatively, enable note forwarding and make all of the bots forward notes to one.
by BarkerJr
Sun Oct 12, 2003 9:54 pm
Forum: Archive
Topic: Trouble with bot as operator
Replies: 9
Views: 3094

True. If you do get it to work, submit a patch to the patches at eggheads email address.
by BarkerJr
Sun Oct 12, 2003 9:53 pm
Forum: Archive
Topic: Cannot start eggdrop
Replies: 4
Views: 1976

You did give it write access to its own directory, right?
by BarkerJr
Sun Oct 12, 2003 9:36 pm
Forum: Archive
Topic: fconfigure dccsend ??
Replies: 3
Views: 2263

Re: fconfigure dccsend ??

Ofloo wrote:its when i dcc a txt file it gives funny outputs in win envirement cause of the \n i gues but how do i fix this ?
Tell them to open the files in wordpad, rather than notepad, I guess. Or write them in windows, and not linux.
by BarkerJr
Sun Oct 12, 2003 9:34 pm
Forum: Archive
Topic: Notify
Replies: 11
Views: 2495

It'd look something like:

Code: Select all

utimer 5 proc:ison
proc proc:ison {} {
  puthelp "ISON Jag"
  utimer 5 proc:ison
}
by BarkerJr
Sun Oct 12, 2003 9:31 pm
Forum: Archive
Topic: say script
Replies: 6
Views: 1917

I think you have two issues:

1) You're using timer, rather than utimer.

2) You're rehashing rather than restarting.