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

by De Kus
Mon Feb 07, 2005 1:39 pm
Forum: Archive
Topic: Eggdrop abuse !
Replies: 23
Views: 7364

YooHoo wrote:i woulda thought set global-stopnethack-mode 0 to be the answer.......?
would change nothing for existing channel.
by De Kus
Mon Feb 07, 2005 1:36 pm
Forum: Archive
Topic: Tcl error [joinproc]: invalid command name "}"
Replies: 13
Views: 5117

just as note, I don't have problems with {} within an [expr ] command. I use this line really fine:

Code: Select all

[expr {$kataschaden - pow(1.20, $i)}]
in a for loop.

But triiing will make wise :).
by De Kus
Sun Feb 06, 2005 11:55 pm
Forum: Archive
Topic: Tcl error [joinproc]: invalid command name "}"
Replies: 13
Views: 5117

have you tried using ".set errorInfo" on partyline to get a more detailed error? it should tell you the construct within the error occured. The message sounds like a bracet error, but script highlighting doesnt find any open or to many closed, either. really strange. You dont need to use :...
by De Kus
Sun Feb 06, 2005 12:02 pm
Forum: Archive
Topic: p / s botflags incorrectly labeled?
Replies: 2
Views: 1583

already fixed in live CVS version
s - share aggressively (SEND userfile to a passive bot)
p - share passively (ACCEPT userfile from an aggressive bot)
by De Kus
Sun Feb 06, 2005 11:56 am
Forum: Archive
Topic: DCC
Replies: 4
Views: 2219

da..., read my post closer! if you are firewalled you have to use "/ctcp <botnick> chat" because you cannot accept incomming connections ><. PS: if you not even familiar with English, you should really think over running your own eggdrop. If you are more familiar with German, I can repeat ...
by De Kus
Sun Feb 06, 2005 11:51 am
Forum: Archive
Topic: Users in SQL db?
Replies: 11
Views: 4960

thats why I suggested to use telnet to update changes from web to the bot. This way you will not have to change the bots usermanagement in any way. You might want to change the user file save to every 5min in the source or so ^-^
by De Kus
Sun Feb 06, 2005 11:44 am
Forum: Archive
Topic: query logger
Replies: 2
Views: 1598

yeah, would be nice. html doesnt really matter, because I want to view it only anyway :).
by De Kus
Sun Feb 06, 2005 11:40 am
Forum: Archive
Topic: upgrading to eggdrop1.6.17 with tcl8.4.9
Replies: 3
Views: 2547

clean or DISTclean? its a big diffrence, since distclean deletes the ./configure cache as well!
by De Kus
Sat Feb 05, 2005 6:41 pm
Forum: Archive
Topic: DCC
Replies: 4
Views: 2219

check your ports for beeing firewalled, remember if you /chat the bot, you must be able to accept the incomming TCP con, if you /ctcp .. chat the bot, the bot must be able to receive your incomming TCP con.
for more details... what about the manual?
by De Kus
Sat Feb 05, 2005 6:37 pm
Forum: Archive
Topic: how do you release lingering connections?
Replies: 2
Views: 1703

did you also try using .unlink and .link? did you try using .restart? .rehash doesnt unload the bot so new configs will only override... if possible, if not there might be left behind some shadows (like when you delete an proc in a tcl, it will remain in the memory). So probably rehashing with anoth...
by De Kus
Sat Feb 05, 2005 6:32 pm
Forum: Archive
Topic: upgrading to eggdrop1.6.17 with tcl8.4.9
Replies: 3
Views: 2547

if you extracted the new source over the old, did you do a "make distclean" before using ./configure and compiling?
by De Kus
Sat Feb 05, 2005 6:18 pm
Forum: Archive
Topic: Shell command output trouble
Replies: 3
Views: 1879

Re: Shell command output trouble

Code: Select all

proc outp {i channel} {
this wont give you the channel. you have to save it globally and retrieve it again in the proc.

But I wonder anyway in which part ever a command is called requiring a channel (putquick doesnt require a channel name).
by De Kus
Sat Feb 05, 2005 6:10 pm
Forum: Archive
Topic: query logger
Replies: 2
Views: 1598

query logger

I am not keeping all logs, but I'd really like to keep querys to my bot a bit longer to check them from time to time. So I was about to decide to make one, but then I rembered I would have dig into tcl file management so I searched the database and didnt find one. Has anyone a script to log queries ...
by De Kus
Fri Feb 04, 2005 6:18 pm
Forum: Archive
Topic: Simple socket script
Replies: 18
Views: 6535

hmm, the google script im using uses the commands in the order:
package require http
...
set token [http::config -useragent $agent]
set token [http::geturl $query]
set html [http::data $token]

except the egghttp -> http they seem very alike, maybe it helps.
by De Kus
Thu Feb 03, 2005 1:48 pm
Forum: Archive
Topic: Users in SQL db?
Replies: 11
Views: 4960

i believe its easier to make a web (php?!) script to read the .user data and write to a telnet connection than running an eggdrop in read/write to an sql db :).