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

by GodOfSuicide
Thu Feb 26, 2004 4:10 pm
Forum: Archive
Topic: versions of eggdrop
Replies: 19
Views: 9108

I doubt as much testing is being done as you think heh. From the last few patches I did, I only heard feedback from 1 person. We really need more people to actively test, not just run the bot and say ok well it compiles, it runs, must be fine! i'd love to help, but i dont know any C (the only thing...
by GodOfSuicide
Sat Feb 21, 2004 6:53 am
Forum: Archive
Topic: readfile problem
Replies: 11
Views: 3945

Code: Select all

set data [gets $mkwf]
foreach line [split $data \n] {
 if {[string match "/04*" $line]} { 
 <do something>
 break
}
btw, you might what to close your file too
by GodOfSuicide
Fri Feb 20, 2004 9:46 am
Forum: Archive
Topic: Array and file save
Replies: 8
Views: 2592

asume yer array is called myarray
either you have a global array then you call it with "write_array myarray array.txt" / "read_array myarray array.txt" /

of you have a local array then you have to use the code from inside that proc in your own
by GodOfSuicide
Thu Feb 19, 2004 5:21 pm
Forum: Archive
Topic: Array and file save
Replies: 8
Views: 2592

well, you didnt search well enaught proc write_array {name file} { set fp [open $file w] puts $fp [uplevel 1 [list array get $name]] close $fp } proc read_array {name file} { set fp [open $file r] uplevel 1 [list array set $name [read -nonewline $fp]] close $fp } it was in my "backup vars in fi...
by GodOfSuicide
Thu Feb 19, 2004 9:41 am
Forum: Archive
Topic: transfer of variables
Replies: 24
Views: 4757

why not transfer the data via putbot / bind bot ?
i do it the same way with my scripts since a leaf bot does all the HTML parsing / exec's and so on...a quick&dirty multithread workaround ;)
by GodOfSuicide
Wed Feb 18, 2004 1:23 pm
Forum: Archive
Topic: Insulter tcl
Replies: 6
Views: 2464

arcane wrote:1 logical error and 1 syntax error (sorry, GodOfSuicide)
well, dont drink & code :P
by GodOfSuicide
Wed Feb 18, 2004 9:14 am
Forum: Archive
Topic: bind time triggering every 5 minutes help
Replies: 4
Views: 4580

CrazyCat wrote:Using the recursive timer is quite dangerous: when you rehash your eggdrop (so, usually when you test the tcl), you'll enable a lot of timers :)
So, think to restart the eggdrop when your tcl is ok.
just kill the timer again...killtimer & timerexists are your friends :D
by GodOfSuicide
Wed Feb 18, 2004 9:13 am
Forum: Archive
Topic: Insulter tcl
Replies: 6
Views: 2464

Re: Insulter tcl

### PROCS proc insulta {nick host hand chan arg} { global insulti botnick owner if {[isop $nick $chan]==0} { putserv "NOTICE $nick :Questo comando è accessibile solo agli op del canale!" putserv "PRIVMSG $chan :$nick, you're lame!" } else this is aviable only for op ...i want th...
by GodOfSuicide
Tue Feb 17, 2004 6:51 pm
Forum: Archive
Topic: bind time triggering every 5 minutes help
Replies: 4
Views: 4580

bind time - "?5 * * * *" my_proc
bind time - "?0 * * * *" my_proc

would trigger it all 5 mins (x0 and x5)
or you try a timer

timer 5 myproc
proc myproc { args } {
do something
timer 5 myproc
}
by GodOfSuicide
Mon Feb 16, 2004 12:13 pm
Forum: Archive
Topic: Looking for commands
Replies: 3
Views: 1488

Re: Looking for commands

Hi, I am trying to write a script, but i need some special commands for it to work. Those commands are: A command that let's me retrieve all users added to the bot, or that let'S me retrieve them one by one. [userlist] returns all users, it supports pattern for custom flags A command that either le...
by GodOfSuicide
Sun Feb 15, 2004 3:07 pm
Forum: Archive
Topic: Bind Invite
Replies: 2
Views: 1093

bind raw - INVITE someproc
i'd say
by GodOfSuicide
Fri Feb 13, 2004 6:06 am
Forum: Archive
Topic: share.mod bug could be used for an exploit
Replies: 5
Views: 1588

bobjuh wrote:http://forum.egghelp.org/viewtopic.php?t=6813

There is already a topic open about die share.mod bug
in fact, this one was open befor the other one :D
by GodOfSuicide
Thu Feb 12, 2004 12:18 pm
Forum: Archive
Topic: supposed 1.6.x eggdrop exploit posted on bugtraq
Replies: 16
Views: 6611

from dun_dacil: /* If it's a share bot that hasnt been sharing, ask again */ } else if (!(dcc .status & STAT_SHARE)) { if (dcc .user && (bot_flags(dcc .user) & BOT_AGGRESSIVE)) { dprintf(i, "s u?\n"); dcc .status |= STAT_OFFERED; } } } } you just have to add a { behind the...
by GodOfSuicide
Thu Feb 12, 2004 7:17 am
Forum: Archive
Topic: supposed 1.6.x eggdrop exploit posted on bugtraq
Replies: 16
Views: 6611

btw, is there a patch for .13 out ? dont want to upgrade
by GodOfSuicide
Wed Feb 11, 2004 6:24 am
Forum: Archive
Topic: encrypt
Replies: 14
Views: 7121

strikelight wrote:As for if 'info <arg>' would work for byteencoded scripts, no, it would not work, as the TCL is obliterated and turned into simpler machine code. Hence the term "ByteCode Compiler"...
yeah, but maybe it would have been decrypted on the fly...wouldnt be secure at all, i know.