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

by Aron
Thu Jul 15, 2004 1:03 pm
Forum: Archive
Topic: Linking bots locally on a box with a NAT
Replies: 6
Views: 4490

... still have not figured it out.
by Aron
Tue Jul 06, 2004 6:50 am
Forum: Archive
Topic: Linking bots locally on a box with a NAT
Replies: 6
Views: 4490

Alright, thanks. I was stupid enough to use upercase in the botnet nick while I added it with lowercase. I've got a new problem now though. When I link the bots I get this: Hub: [10:49] Challenging leaf... [10:49] Linked to leaf. *** Linked to leaf [10:49] Creating resync buffer for leaf [10:49] Sen...
by Aron
Sun Jul 04, 2004 2:16 pm
Forum: Archive
Topic: A script
Replies: 18
Views: 4435

Processes triggered by "bind mode" have the following form:

Code: Select all

proc-name {nick host hand chan mode victim} { }
You forgat the victim.
The person being opped is the victim, in this case.
by Aron
Sun Jul 04, 2004 6:59 am
Forum: Archive
Topic: Linking bots locally on a box with a NAT
Replies: 6
Views: 4490

Already did that. Also, when linking, there is no indication at all on the bot being linked to. When linking from leaf to hub, it shows: [11:00] Telnet connection: 192.168.1.1/53856 [11:00] Timeout/EOF ident connection [11:00] Refused telnet@192.168.1.1 (non-bot) [11:00] Lost Bot: bot1 ...immediatel...
by Aron
Sat Jul 03, 2004 6:38 pm
Forum: Archive
Topic: Linking bots locally on a box with a NAT
Replies: 6
Views: 4490

Linking bots locally on a box with a NAT

Hi, I never tried linking bots through a NAT before, and I have tried pretty much everything I can think off, but just can not get them to link. I set nat-ip to the external IP, uncommented my-ip. I tried linking the bots with the following addresses: localhost 127.0.0.1 external ip address external...
by Aron
Sat Apr 24, 2004 4:56 am
Forum: Archive
Topic: Problem compiling on FreeBSD [need help]
Replies: 2
Views: 1352

Same problem here...


Is there ANY way to compile with the dns module?

I really need it...
by Aron
Sun Apr 18, 2004 3:07 am
Forum: Archive
Topic: Help With Matching A Host To A Nickname
Replies: 7
Views: 1507

proc checkuser {nick host hand chan arg} { set check_host [lindex [split $arg] 0] foreach user [chanlist $chan] { if {[string match -nocase $check_host [getchanhost $user $chan]]} { putserv "NOTICE $nick :$check_host matches $user ([getchanhost $user $chan])" break } } } ....or something ...
by Aron
Thu Apr 15, 2004 3:54 pm
Forum: Archive
Topic: setting a variable to people's Q account name
Replies: 1
Views: 1082

You might want to read this thread

One way to do it would be to get your bot to recognize them as soon as they set mode +x.

Code: Select all

if {[string match "*.users.quakenet.org" $host]} { blablabla }
...or something like that.
by Aron
Thu Apr 15, 2004 3:49 pm
Forum: Archive
Topic: How to execute a url within a tcl script?
Replies: 3
Views: 1598

Execute in what?
by Aron
Thu Apr 15, 2004 10:17 am
Forum: Archive
Topic: Returning a variable from another process (Qnet auth system)
Replies: 2
Views: 1489

That sounds all good, but I don't have a CLUE how to set up a basic script which would do that :)
by Aron
Wed Apr 14, 2004 9:13 am
Forum: Archive
Topic: Returning a variable from another process (Qnet auth system)
Replies: 2
Views: 1489

Returning a variable from another process (Qnet auth system)

I am working on a system to recognize people by their Q (Quakenet's bot) auth name. It is returned in RAW 330. Further explanation is in the script. # The idea is to be able to include this in other scripts like this: # # if {[returnauth nickname]} { blablablabla } # # The problem is that the return...
by Aron
Thu Jan 29, 2004 12:50 pm
Forum: Archive
Topic: Kicking nicknames with brackets in them
Replies: 23
Views: 8378

alright, i feel like a retard now.

Thanks a lot man, it solved the problem. ;)
by Aron
Wed Jan 28, 2004 12:23 pm
Forum: Archive
Topic: Kicking nicknames with brackets in them
Replies: 23
Views: 8378

I have looked over it time and time again, and i just dont see it. I already fixed those errors. proc academy:ban {nick host handle chan text} { global botnick guardmethod botname if {(![authed $handle]) || ![string equal -nocase $chan "#jedi-academy"]} { return 0 } set userlevel [level $h...
by Aron
Fri Jan 23, 2004 8:06 am
Forum: Archive
Topic: Kicking nicknames with brackets in them
Replies: 23
Views: 8378

alright, thanks a lot :) It's working now, but now im having the same problem with my ban command... I just don't see it.. :( proc academy:ban {nick host handle chan text} { global botnick guardmethod if {(![authed $handle]) || ![string equal -nocase $chan "#jedi-academy"]} { return 0 } se...
by Aron
Thu Jan 22, 2004 8:30 pm
Forum: Archive
Topic: Kicking nicknames with brackets in them
Replies: 23
Views: 8378

the nickname is only stored in nickhost, and there are no processes interfering with it.