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

by sKy
Fri Aug 24, 2007 6:32 pm
Forum: Scripting Help
Topic: How to let an utimer know it`s own utimer id?
Replies: 3
Views: 3106

No one knows? No way? Or is my English to bad to understand what I want to do?
by sKy
Thu Aug 23, 2007 8:21 am
Forum: Modules & Programming
Topic: Extension for SSL DCC Chat between Eggdrop & psyBNC
Replies: 11
Views: 27493

You started to talk about illegal issues in this thread.
by sKy
Thu Aug 23, 2007 8:19 am
Forum: Modules & Programming
Topic: Can this C module be converted to eggdrop?
Replies: 5
Views: 13448

I think questions regarding file servers and file transfer are not disallowed by default. The rules say he need a realistic expectations what he is needing that for. Them also say "No requesting help on anything involving "piracy" (of software, movies, or otherwise), because it's ille...
by sKy
Tue Jul 31, 2007 9:44 am
Forum: Other Topics
Topic: encypted eggdrop chat, looking for contributors
Replies: 13
Views: 4888

Kinda off topic in this thread. ;) Please make your own for this problem.
by sKy
Fri Jul 27, 2007 7:58 pm
Forum: Other Topics
Topic: encypted eggdrop chat, looking for contributors
Replies: 13
Views: 4888

psyBNC is capable of handling incoming SSL-encrypted connections from the client: Dunno exactly who you mean. But psybnc <-> eggdrop would still chat unencryped in that case, because eggdrop has still no support for encryption. Or you would run the bot on a psybnc? This is imho a very bad idea. Tha...
by sKy
Wed Jul 18, 2007 1:26 pm
Forum: Scripting Help
Topic: How to let an utimer know it`s own utimer id?
Replies: 3
Views: 3106

How to let an utimer know it`s own utimer id?

proc lremove { list string } { return [lsearch -all -inline -not -exact $listname $string] } This sets the timers. set timer 0 foreach element $list_of_ tasks { set timer [expr $timer + 5] set id [utimer $timer [list $element]] lappend ::list_with_timerids $id } This code is used in case of I want ...
by sKy
Fri Jul 13, 2007 8:45 pm
Forum: Scripting Help
Topic: best ide / debugger for eggdrop (tcl)?
Replies: 4
Views: 6096

best ide / debugger for eggdrop (tcl)?

Which integrated development environment is best for eggdrop? I tested already all ides and debuggers for tcl. But no ide and no debugger integrates well into eggdrop. To develop/debug on remote shell would be awesome, but for a local installed win/eggdrop it would be fine as well. None of the debug...
by sKy
Wed Jul 04, 2007 6:48 pm
Forum: Modules & Programming
Topic: Extension for SSL DCC Chat between Eggdrop & psyBNC
Replies: 11
Views: 27493

If the server supports ssl then using it is fine. Same for bouncer. This is a nice little security bonus you should catch if you can.

But the irc server (also ircops) could still read your messages thought if you don`t use an end to end encryption.
by sKy
Wed Jul 04, 2007 6:41 pm
Forum: Other Topics
Topic: encypted eggdrop chat, looking for contributors
Replies: 13
Views: 4888

What I meant about the interface being through any irc client is that the chat window automatically opens in any client so why create a new separate interface for that? I like this idea as well but it`s not easy to do that for me. I don`t want to learn mirc scripting. To investigate into C++ Gui de...
by sKy
Wed Jul 04, 2007 4:09 pm
Forum: Other Topics
Topic: encypted eggdrop chat, looking for contributors
Replies: 13
Views: 4888

Thanks for your comment. state the problem Normal dcc chats with eggdrop are not encrypted. On irc you just /dcc chat nickname or /ctcp botname chat, could be also a nickstealer. To use /whois works but it`s not the most comfortable solution. The initial request is send over irc server and the follo...
by sKy
Wed Jul 04, 2007 5:59 am
Forum: Tcl FAQ
Topic: socket api - nonblocking tcp made easy
Replies: 9
Views: 40021

Re: socket api - nonblocking tcp made easy

This is an attempt to make the built in sockets even more user friendly. You can`t imagine how much this decreases my amount of time to write socket related stuff. I just started coding this thing, so please help me find bugs/suggest new features/tell me what you think :) Bugs so far none, but I wi...
by sKy
Wed Jul 04, 2007 1:32 am
Forum: Tcl FAQ
Topic: socket api - nonblocking tcp made easy
Replies: 9
Views: 40021

This is very interesting and promising. proc test_server { } { set sock [sock::Listen 35189] sock::Set $sock onAll [list test_server_all] return $sock } proc test_server_all { args } { putlog "test_server_all: $args" } proc test_connect { } { set sock [::sock::Connect 127.0.0.1 35189] sock...
by sKy
Tue Jul 03, 2007 9:23 pm
Forum: Modules & Programming
Topic: Extension for SSL DCC Chat between Eggdrop & psyBNC
Replies: 11
Views: 27493

I also think now eggdrop <--ssl--> bouncer is not very effective. Only helpful if you run the bouncer on your own machine and this wouldn`t be much point. Because otherwise it would be still bouncer<--unencrypted--> your client. Better would be end to end encryption, eggdrop <--ssl--> client. I also...
by sKy
Tue Jul 03, 2007 6:35 pm
Forum: Other Topics
Topic: encypted eggdrop chat, looking for contributors
Replies: 13
Views: 4888

encypted eggdrop chat, looking for contributors

This is not a request for a hole premade script. I write in tcl myself. I like to try out to develop in a team, to split tasks. I could also need... - Someone who wants to create a graphical gui for the encrypted eggdrop chat program. Preferred written in an portable language such as tk or C++ so we...
by sKy
Sun Jul 01, 2007 6:51 pm
Forum: Scripting Help
Topic: string encryption without eggdrop tcl commands?
Replies: 8
Views: 6332

I still don`t get how this is supposed to work. proc test { } { package require aes set sixteen_bytes_key_data "1234567890123456" set sixteen_byte_iv "1234567890123456" set Key [aes::Init cbc $sixteen_bytes_key_data $sixteen_byte_iv] set plaintext "1234567890123456" set...