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

by ex
Tue Dec 20, 2005 10:45 am
Forum: Eggdrop Help
Topic: botnet botattr problem
Replies: 2
Views: 7264

botnet botattr problem

Hi. I am having a small botnet. the hub is in some channels where the leafs are as well. i can't get the botnet running that way, that the hub bot shares the userinformations in general and the channel attributes of the users which are in the channel where both bots are in. but at the moment the hub...
by ex
Sun Jul 17, 2005 11:30 pm
Forum: Archive
Topic: Substraction of strings
Replies: 1
Views: 1541

Substraction of strings

To make it short: i want a routine which handles strings like giving chanlevs in quakenet.

for example:

user has: ao
i type: /msg q chanlev #chan #auth -o+v

result: user has +av

is there a possibility to reach that with regex? can anyone provide a regex solution?
by ex
Sun Jun 12, 2005 4:02 pm
Forum: Archive
Topic: get procname
Replies: 2
Views: 1507

Code: Select all

set procname [lindex [info level 0] 0]
by ex
Tue Jun 07, 2005 10:56 pm
Forum: Archive
Topic: server socket -> crash on rehash
Replies: 4
Views: 2368

server socket -> crash on rehash

proc Server {channel clientaddr clientport} { putlog "Connection from $clientaddr registered" puts $channel "[channels]" close $channel } socket -myaddr "cyberscripters.org" -server Server 63322 i have this out of a manual. but my problem is, that the eggdrop crashs wh...
by ex
Mon May 30, 2005 3:51 pm
Forum: Archive
Topic: socket timeout
Replies: 7
Views: 2968

i am pretty sure because changed the program to fileevents proc test:rss { url port get offset } { global noff set ::sid [socket $url $port] set noff($::sid) 1 fconfigure $::sid -buffering line -blocking 0 fileevent $::sid readable "gotdata $::sid $offset" puts $::sid "GET $get HTTP/1...
by ex
Mon May 30, 2005 2:04 pm
Forum: Archive
Topic: socket timeout
Replies: 7
Views: 2968

yes i read it. but the problem is, that the eggdrop doesn't arrive at any following line even: set utimer [utimer 10 [list close:socket [set sock [socket -async $url 80]]]] does not help at the moment it crash while trying to connect to eggheads.org they are obviosly down. i think it hangs, when try...
by ex
Mon May 30, 2005 10:46 am
Forum: Archive
Topic: socket timeout
Replies: 7
Views: 2968

ok tried it proc get:rss2 { url port get offst news } { set ::sid [socket $url $port] fconfigure $::sid -buffering line -blocking 0 fileevent $::sid readable gotdata:rss } proc gotdata:rss { } { ... } thats the way someone aut of #tcl channel showed me. but it also hangs in the line with 'socket' in...
by ex
Mon May 30, 2005 2:36 am
Forum: Archive
Topic: socket timeout
Replies: 7
Views: 2968

socket timeout

When my eggdrop tries to acces a webserver and this server is currently offline, the following line causes a ping timeout for my eggdrop often because he is totally blocked while trying to connect proc get:rss { url port get offset } { if { [catch {set sock [socket -async $url $port]}] } { putlog &q...
by ex
Thu May 19, 2005 2:33 pm
Forum: Archive
Topic: regex problem
Replies: 5
Views: 2666

solved.
the { } still needs the escape of ?

i missunderstood this.


thank you all
by ex
Thu May 19, 2005 2:21 pm
Forum: Archive
Topic: regex problem
Replies: 5
Views: 2666

return [regexp {</tt>: <a class="link" href="http://www.eggheads.org/redirect.php?url=(.+)">(.+)</a>} {004 ]</tt>: <a class="link" href="http://www.eggheads.org/redirect.php?url=http://www.eggheads.org/news/2004/08/23/31">Eggdrop 1.6.17 released</a><br} tmp u...
by ex
Thu May 19, 2005 10:41 am
Forum: Script Support & Releases
Topic: encrypted trojan scan script (cont.)
Replies: 20
Views: 34510

it connects to a bot and on every join it asks whether it is a spamclient or not.

+ some additional features.
by ex
Thu May 19, 2005 10:39 am
Forum: Archive
Topic: regex problem
Replies: 5
Views: 2666

argh. damn must have overseen it in the manual.


grml then it is quite clear why i tried 4 hours with no result.
by ex
Wed May 18, 2005 11:42 pm
Forum: Script Support & Releases
Topic: encrypted trojan scan script
Replies: 5
Views: 17835

you can write the code in a file with decrypt
by ex
Wed May 18, 2005 11:09 pm
Forum: Archive
Topic: regex problem
Replies: 5
Views: 2666

regex problem

hi i'm having a problem with regex return [regexp "^.*test(.+?)test.*" "testlalatest"] returns 1. so far so good. but if i extend the string an the matchstring it is not working anymore. #normally the code is in one line - but it's much more easy to read now :)# return [regexp &q...