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
Wed Apr 26, 2006 5:17 am
Forum: Script Support & Releases
Topic: new version of convert.tcl
Replies: 17
Views: 21313

rosc2112 wrote:You mean like '1 + 1' ? Not sure I follow your meaning.

Code: Select all

'1 +         1'
you might want to take a look at my FAQ post about splitting
by demond
Wed Apr 26, 2006 4:16 am
Forum: Scripting Help
Topic: Compressing files
Replies: 2
Views: 4089

nope

the easiest way to accomplish that is:

Code: Select all

exec tar zcf dir.tgz .
by demond
Wed Apr 26, 2006 4:06 am
Forum: Script Requests
Topic: simple script
Replies: 5
Views: 5769

SirFz, you got that? ;)
by demond
Wed Apr 26, 2006 3:47 am
Forum: Script Support & Releases
Topic: new version of convert.tcl
Replies: 17
Views: 21313

calc won't work with expressions containing adjacent whitespaces
by demond
Wed Apr 26, 2006 3:30 am
Forum: Eggdrop Help
Topic: tcllib problems though compiling worked :/
Replies: 5
Views: 5508

you either don't have libtcl8.4.so in /usr/local/ActiveTcl/lib, or have no permission to load it

locate it and set LD_LIBRARY_PATH to the directory it is in

or fix your file permissions
by demond
Tue Apr 25, 2006 12:00 pm
Forum: Eggdrop Help
Topic: tcllib problems though compiling worked :/
Replies: 5
Views: 5508

likely your LD_LIBRARY_PATH
by demond
Sun Apr 23, 2006 4:33 am
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 258380

skipyy wrote:is there an option when it annouce new post it will give the url? so !rss cmd wont be needed so much?
no; but it's easy to modify the script to do so
and another question
does this rss http://www.torec.net/rss.asp supported by the script?
give it a try and let us know
by demond
Sun Apr 23, 2006 4:30 am
Forum: Eggdrop Help
Topic: Deop prtotection
Replies: 11
Views: 8953

you can't
by demond
Sat Apr 22, 2006 1:35 pm
Forum: Scripting Help
Topic: Using 'set {my-var}' prob
Replies: 15
Views: 9915

De Kus wrote:the issue is something else:

set var $var-var
--> reads from 'var-var'
set var "$var-var"
--> reads from 'var' and adds '-var' as string
nah, these are equivalent, with the latter effect
by demond
Sat Apr 22, 2006 2:11 am
Forum: Script Requests
Topic: Fetch list of banned masks.
Replies: 10
Views: 9302

setting up bopm is really easy, you simply need the right regexp - and you really should be using bopm instead of scripts

as long as your ircd provides client's IP in connection notices, bopm will work for you
by demond
Sat Apr 22, 2006 1:57 am
Forum: Script Requests
Topic: REQ: Something to post new topics on vbulletin forum to IRC
Replies: 3
Views: 4967

my script works fine with your RSS feed (the real RSS, not the other which is Atom feed) - I tested that and I can't imagine there's no error whatsoever - it is designed to log every possible error - if it failed to do so in your case, that would be a bug what's the bot response when you type !rss * ?
by demond
Sat Apr 22, 2006 1:50 am
Forum: Scripting Help
Topic: selective whitespace trimming
Replies: 3
Views: 4718

use this: proc duration {t} { set days [expr $t / (3600 * 24)] set hour [expr ($t - (3600 * 24 * $days)) / 3600] set mins [expr (($t - (3600 * 24 * $days)) % 3600) / 60] if $days {append str "$days day(s), "} if $hour {append str "$hour hour(s), "} return [append str "$mins ...
by demond
Sat Apr 22, 2006 1:45 am
Forum: Scripting Help
Topic: Using 'set {my-var}' prob
Replies: 15
Views: 9915

rosc2112 wrote:Didn't work for me..
maybe so, but not for the reason you think
by demond
Fri Apr 21, 2006 6:20 am
Forum: Scripting Help
Topic: Using 'set {my-var}' prob
Replies: 15
Views: 9915

you are incorrect, there is nothing wrong with that expression

this will work too, it's equivalent to yours:

Code: Select all

if [info exists logfile-suffix]
by demond
Fri Apr 21, 2006 4:55 am
Forum: Script Requests
Topic: REQ: Something to post new topics on vbulletin forum to IRC
Replies: 3
Views: 4967

you gave up on RSS? ;)