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

by Ofloo
Fri Aug 12, 2005 7:43 pm
Forum: Archive
Topic: Support TCL
Replies: 12
Views: 9262

Re: Support TCL

Sorry for my bad english I`m a german boy ;) I had found a Support Script @ google and now nowI will post it and tah i will say my problem with it. # Public command trigger set tr "!" set cc "!" # Channels you _dont_ want the bot to act (seperate with spaces): set nopub "&q...
by Ofloo
Thu Aug 11, 2005 4:57 pm
Forum: Archive
Topic: Winamp Controls
Replies: 18
Views: 14406

i think it is to do shoutcast or something but i recall there was a shoutcast script on this forum..
by Ofloo
Sun Aug 07, 2005 10:42 am
Forum: Archive
Topic: utimer question
Replies: 2
Views: 2669

why do you want to use it and where ?
by Ofloo
Sun Aug 07, 2005 10:19 am
Forum: Scripting Help
Topic: Help us to help you
Replies: 1
Views: 28517

great suggestions
by Ofloo
Mon Jul 25, 2005 1:53 pm
Forum: Archive
Topic: channel join timer
Replies: 5
Views: 2676

Code: Select all

proc raw_485 {from key arg} {
  utimer 1 [list mycommand]
}

bind raw - 485 raw_485
hope that helps
by Ofloo
Mon Jul 25, 2005 1:45 pm
Forum: Archive
Topic: queue buffer
Replies: 2
Views: 1801

queue buffer

is there a bind that triggers when a certain msgqueue buffer is exceeded ? ..

and if there is no such thing maybe it is an idea for eggheads to return number of bytes that is send true the command.. putserv ... instead of nothing..
by Ofloo
Mon Jul 25, 2005 1:41 pm
Forum: Archive
Topic: Sleep between commands...
Replies: 6
Views: 2899

hehe sorry didn't mean to be a wizeass just have been away from the forum for a while ;) just was trying to help ..

hehe

tnx for the update notice good to know ;) wasn't sure about it..
by Ofloo
Mon Jul 25, 2005 8:25 am
Forum: Archive
Topic: Sleep between commands...
Replies: 6
Views: 2899

i think he wants to use ms instead of seconds you can do this using after

Code: Select all

after 250 mycommand
then use update somewhere in a while.. to call back on it ..

or just add

Code: Select all

after 250
and it will block for 250 ms, but remember it will block everything
by Ofloo
Mon Jul 25, 2005 8:20 am
Forum: Archive
Topic: problem with a variable
Replies: 6
Views: 2871

It's ok, but if the egg connection is stopped, it erases the data. How to make to have this information same if the egg connection is stopped?? Thanks dump it in a file, instead of using an array if {![catch {open mylogfile.txt a+} af]} { puts $af $variable close $af } or do both, and load it back ...
by Ofloo
Thu Jun 30, 2005 4:51 am
Forum: Archive
Topic: Download a file from ftp
Replies: 6
Views: 2877

p ackage require http proc wget {arg} { if {![catch {open [file tail [split $arg]] w} wf]} { fconfigure $wf -translation binary if {![catch {http::data [set token [http::geturl $arg -binary 1 -timeout 9999]]}]} { puts $wf "$rd" } else { putlog "Failed fetching file" } close $wf }...
by Ofloo
Sun Jun 12, 2005 3:01 pm
Forum: Archive
Topic: server socket -> crash on rehash
Replies: 4
Views: 2378

when you rehash the bot trys to rebind on the same port which could cause a crash => try this if {[catch {socket -myaddr "cyberscripters.org" -server Server 63322} s]} { putlog "Already binded to cyberscripters.org:63322" } else { putlog "Binded to cyberscripters.org:63322&q...
by Ofloo
Sun Jun 12, 2005 2:51 pm
Forum: Archive
Topic: Small socket script
Replies: 11
Views: 3608

that depends if you want async connections or not cause if i recall well

that script uses async sockets..
by Ofloo
Mon May 30, 2005 10:36 am
Forum: Archive
Topic: Problem with TCL script and FISH crypted channels
Replies: 1
Views: 1536

did you ask the author first , cause this could be a commen bug or the script is not supposed to support it ..
by Ofloo
Tue May 24, 2005 7:39 am
Forum: Archive
Topic: Auth SSL FTP
Replies: 3
Views: 1512

Galadhrim wrote:think all you need to do is use ssl with the bot. then you can tell the ftp connection to use ssl.
no you need to tunnel it true tls
by Ofloo
Tue May 24, 2005 7:22 am
Forum: Archive
Topic: ip2country command
Replies: 5
Views: 2155

set bancountry "us,de" proc join_ban_country {nick host hand chan} { if {[regexp {(.*)@(.*)} $host -> ident hostname]} { dnslookup $hostname dns_callback $nick $ident $chan } } proc dns_callback {ip hst st nick ident chan} { global bancountry botnick foreach {c} [split $bancountry \x2c] {...