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

by Access
Tue Oct 09, 2007 6:05 am
Forum: Scripting Help
Topic: Botnet / putallbots
Replies: 4
Views: 2484

Botnet / putallbots

bind bot - "announce" bot:announce proc bot:announce { bot command text } { putlog "$bot $command $text" } a little test script... putallbots "announce kleiner test" ----> [11:33] Tcl error [bot:announce]: wrong # args: should be "bot:announce bot arg" Why th...
by Access
Wed Aug 08, 2007 4:45 pm
Forum: Scripting Help
Topic: mysqltcl - How to send BLOB Files?
Replies: 0
Views: 2673

mysqltcl - How to send BLOB Files?

Hello =)

I need to send a file (xyz.nfo) to my sqldb...
Im using die mysqltcl package...
My mysql field-type is longblob....

How do i save the file in my mysqldb?
by Access
Thu Jul 26, 2007 5:36 pm
Forum: Scripting Help
Topic: 01 instead of 1
Replies: 1
Views: 1824

01 instead of 1

Ok, im countin a variable with "incr"...

And he shows me: 1, 2, 3, 4....

But i want: 01, 02, 03, 04...


How can i do that?

Thanks...
by Access
Mon Dec 11, 2006 12:47 pm
Forum: Scripting Help
Topic: Time problem...
Replies: 7
Views: 5067

???

do u know what i want?

i want to convert

Code: Select all

2006-10-28 00:08:42
or

Code: Select all

1161986922
to

Code: Select all

28.10.2006 00:08:42
by Access
Mon Dec 11, 2006 10:26 am
Forum: Scripting Help
Topic: Time problem...
Replies: 7
Views: 5067

set timeago [string map {" weeks" w " week" w " days" d " day" d " hours" h " hour" h " minutes" m " minute" m " seconds" s " second" s} $timeago] Works great, thx! And whats about the $mytime variab...
by Access
Sun Dec 10, 2006 7:18 pm
Forum: Scripting Help
Topic: Time problem...
Replies: 7
Views: 5067

Time problem...

my code set mytime 2006-12-10 21:58:55 set unxtime [clock scan $mytime] set now [unixtime] set timeago [duration [expr ($now - $unxtime)]] putchan $chan "mytime: $mytime timeago: $timeago my output <eggdrop> mytime 2006-12-10 21:58:55 timeago: 5 weeks 1 day 5 hours 27 minutes 39 seconds how the...
by Access
Tue Dec 05, 2006 5:43 am
Forum: Scripting Help
Topic: [Solved] Limit result
Replies: 3
Views: 3301

i think u want 15.547
by Access
Fri Sep 22, 2006 5:17 am
Forum: Scripting Help
Topic: [SOLVED] List in String?!
Replies: 2
Views: 2459

rofl...i am so stupid^^

thx!
by Access
Thu Sep 21, 2006 6:49 am
Forum: Scripting Help
Topic: [SOLVED] List in String?!
Replies: 2
Views: 2459

[SOLVED] List in String?!

I got the following list:

$list1

Code: Select all

{test.test.test-test {2006-09-21 12:17:07} mobo}
->

Code: Select all

set list2 [join $list1]
$list2

Code: Select all

test.test.test-test {2006-09-21 12:17:07} mobo

Now...how to extract the "{2006-09-21 12:17:07}" from the string?
Or other solutions?!

Thank you, very nice Forum!
by Access
Thu Sep 21, 2006 5:01 am
Forum: Scripting Help
Topic: [SOLVED] mysqltcl - windrop
Replies: 2
Views: 3513

/lib/tcl8.4/mysql/libmysql.dll
/lib/tcl8.4/mysql/libmysqltcl.dll
/lib/tcl8.4/mysql/pkgIndex.tcl

I have this files - whats wrong?


edit: problem solved!

Code: Select all

load mysqltcl.dll
by Access
Wed Sep 20, 2006 3:01 pm
Forum: Scripting Help
Topic: [SOLVED] mysqltcl - windrop
Replies: 2
Views: 3513

[SOLVED] mysqltcl - windrop

Problem:

Code: Select all

Tcl error [pub:sql]: can't find package mysqltcl
WindowsXP + Windrop

The Mysql-Server runs on a remote-server and no one is installed local, is this my problem?
by Access
Mon Aug 28, 2006 11:21 am
Forum: Scripting Help
Topic: How many Files in Folder?
Replies: 3
Views: 3253

very nice! thx!
by Access
Mon Aug 28, 2006 10:10 am
Forum: Scripting Help
Topic: How many Files in Folder?
Replies: 3
Views: 3253

How many Files in Folder?

I want to know how many files with ending *.moep are in /filebase/ folder...

How? ^^ (Too short? dont know how to explain...)



2nd question - no extra thread:

how to delete all files with ending *.moep in /filebase/ folder...?
by Access
Wed Jul 26, 2006 6:58 pm
Forum: Scripting Help
Topic: Compare 2 Numbers
Replies: 5
Views: 3723

that dont work :(
whats about the dots in the numbers? thats the reasen that > and < wont work? how to "strip" the dots?
by Access
Wed Jul 26, 2006 9:40 am
Forum: Scripting Help
Topic: Compare 2 Numbers
Replies: 5
Views: 3723

Compare 2 Numbers

I have 2 numbers - eg. 2.200.000.000 & 6.210.000
Now i want to know which number is higher - how do i do that? :(