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

by demond
Tue Dec 19, 2006 1:44 am
Forum: Script Support & Releases
Topic: BadWhois by caesar - buggy Help
Replies: 10
Views: 8068

caesar wrote:(as if someone would care, anyway).
I care! if you leave, there will be no oldtimers left anymore (except slennox that is) which would be sad
by demond
Sun Dec 17, 2006 2:18 pm
Forum: Script Support & Releases
Topic: BadWhois by caesar - buggy Help
Replies: 10
Views: 8068

There are no [split] commands that would make the script tcl-special-char safe, so yeah, it's gonna choke on {} [] " \ and other such chars in names. [split] is a prerequisite for not choking on special chars safety - or rather script security - is another matter which requires awareness of do...
by demond
Sat Dec 16, 2006 4:27 am
Forum: Script Support & Releases
Topic: AllProtection.tcl (Stable: v4.8 / Beta: v4.9b4)
Replies: 1351
Views: 1025264

Sir_Fz wrote:Oh ok, I'll see what can be done :). I guess that's most probably for Undernet users, so it would help if you tell me what command is used to ban through X.
you should rename this thing to SwissKnife.tcl :)
by demond
Thu Dec 14, 2006 1:41 pm
Forum: Eggdrop Help
Topic: MySQL instead of Eggdrops userfile?
Replies: 19
Views: 11582

it would definitely make editing the userfile by hand easier, at least for novices (have you tried XML Notepad?) but I actually meant another, more important advantage - now that people are used to mySQL db's storing and manipulating all kinds of webpage data, import/export & process eggdrop use...
by demond
Thu Dec 14, 2006 1:16 pm
Forum: Scripting Help
Topic: converting dotted quad ip to longip?
Replies: 5
Views: 5003

as ever, user has the more elegant solution ;)

nevertheless, the [expr] version is correct as is:

Code: Select all

% a2n 128.0.0.0
2147483648
% n2a 2147483648
128.0.0.0
masking with 0xffffffff does the format %u trick
by demond
Thu Dec 14, 2006 5:28 am
Forum: Scripting Help
Topic: converting dotted quad ip to longip?
Replies: 5
Views: 5003

Code: Select all

proc n2a {n} {
   foreach i {24 16 8 0} {append s [format %d. [expr ($n>>$i)&0xFF]]}
   return [string trimright $s .]
}
proc a2n {s} {
   foreach {a b c d} [split $s .] {return [expr 0xFFFFFFFF&(($a<<24)+($b<<16)+($c<<8)+$d)]}
}
by demond
Thu Dec 14, 2006 12:59 am
Forum: Eggdrop Help
Topic: Eggdrop Wont Create User File or Connect to Server
Replies: 19
Views: 19938

I'd concur with nml

ask your admin to provide you with a non-threaded version of the Tcl library; or compile one yourself, using --disable-threads switch of Tcl's configure script
by demond
Thu Dec 14, 2006 12:53 am
Forum: Eggdrop Help
Topic: MySQL instead of Eggdrops userfile?
Replies: 19
Views: 11582

using SQL is an overkill for the simple task of reading userfile ONCE (on (re)start) and writing it back ONCE an hour another matter is that the proprietary text format eggdrop uses should be replaced with XML schema, thus allowing for easy userfile manipulation by external tools; but eggdrop is an ...
by demond
Tue Dec 12, 2006 11:10 am
Forum: Script Requests
Topic: Get Umodes script. [SOLVED]
Replies: 11
Views: 6099

Kazymyr wrote: Actually, yes my bot can read my umode, i put on it a restricted oper acces.

So yes he can.
no he can't

(btw how do you know it's not she? :)
by demond
Tue Dec 12, 2006 3:02 am
Forum: Script Requests
Topic: ..is online/away/offline script
Replies: 12
Views: 5917

actually periodic WHOIS is not recommended as it's usually more severely rate-limited than ISON and a potential cause of the bot flooding itself out due to exceeded sendq; WATCH is preferable to both of these (needless to say, none will work if the user is +i and not on bot's channels) naturally, if...
by demond
Tue Dec 12, 2006 1:38 am
Forum: Script Requests
Topic: ..is online/away/offline script
Replies: 12
Views: 5917

rosc2112 wrote:Gotcha, I'll make that an option, to either produce plain text, or the rudimentary html file.
and for server-side notification, you might want to consider now already ubiquitous WATCH command, instead of ISON (and check for WATCH support via VERSION and 005 numeric reply)
by demond
Tue Dec 12, 2006 1:28 am
Forum: Script Requests
Topic: Get Umodes script. [SOLVED]
Replies: 11
Views: 6099

Yeah, already figured that out :lol: but how are these flags detected? via whois or how, you have to be more clear so we would be able to implement something for you. they aren't, that guy is confused; you can't get user modes of other users even if you're one of those petty bureaucrats otherwise k...
by demond
Sat Dec 09, 2006 9:28 pm
Forum: Script Support & Releases
Topic: symantec.tcl 1.0.4-rosc
Replies: 16
Views: 11073

man, you are one scripting dynamo :) good job
by demond
Fri Dec 08, 2006 10:26 pm
Forum: Script Support & Releases
Topic: Trivia 2000
Replies: 16
Views: 12377

Alchera wrote:In a perfect world all the effort that scriptors put into detailed (clear and concise) instructions in their file headers will actually be read.

If that happened I guess we'd all be out of a "job". :lol:
nah, you'd still be guessing what nowadays eggdrop owners actually want ;)
by demond
Fri Dec 08, 2006 10:02 pm
Forum: Script Support & Releases
Topic: incith:acronym (r128) (Sep. 13th, 2009)
Replies: 32
Views: 28976

http://www.acronymfinder.com/terms.htm You may not use automated scripts or programs to "screen scrape" or otherwise extract data from pages on this site. that's what the "cease & desist" guy is actually referring to - you don't scrape but you "otherwise extract data&quo...