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
Sun Jun 18, 2006 12:44 pm
Forum: Eggdrop Help
Topic: I need help in here pls
Replies: 2
Views: 3306

yes there is

xchannel.tcl
by demond
Sun Jun 18, 2006 12:42 pm
Forum: Eggdrop Help
Topic: Eggdrop starts in mode -n but not in normal mode
Replies: 7
Views: 6208

Tcl core library compiled with thread support

see if you have that, type .set tcl_platform(threaded)
by demond
Sun Jun 18, 2006 5:23 am
Forum: Scripting Help
Topic: local <-> global variable
Replies: 1
Views: 2858

use namespaces
by demond
Sat Jun 17, 2006 10:46 pm
Forum: Eggdrop Help
Topic: Eggdrop starts in mode -n but not in normal mode
Replies: 7
Views: 6208

I vaguely recall having this problem with thread-enabled Tcl
by demond
Sat Jun 17, 2006 10:38 pm
Forum: Scripting Help
Topic: test if FTP is online ...
Replies: 5
Views: 4293

you need to also read the pipe to see the actual ftp server response

this is best done asynchronously using [fileevent], search the forum for "tail -f" script sample
by demond
Sat Jun 17, 2006 10:13 pm
Forum: Scripting Help
Topic: Deleting several lines from a textfile
Replies: 3
Views: 3794

so you are somehow reluctant to actually check out [lreplace] docs and see if it's able to delete more than one line?
by demond
Fri Jun 16, 2006 11:56 pm
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 256824

having 4 probs with this im using eggdrop v1.6.18+spelling-errors-suck windrop prob 1 it doesnt seem to like multiple channels at all yes it does, but one feed per channel; read through the entite thread for explanation on why is that, and how you could circumvent the limitation prob 2 im not seein...
by demond
Fri Jun 16, 2006 11:29 pm
Forum: Scripting Help
Topic: Deleting several lines from a textfile
Replies: 3
Views: 3794

after so many requests for help, you should have known by now that any manipulation of text files is best done in memory - that is, you read the entire file into a list, manipulate the list, and write it back to disk file
by demond
Fri Jun 16, 2006 11:23 pm
Forum: Scripting Help
Topic: Mass op Protection
Replies: 5
Views: 5230

Alchera wrote:Moved to Scripting Help
this is a pure script request and doesn't belong here

I somehow doubt that guy could write "Hello, world" in Tcl
by demond
Fri Jun 16, 2006 1:44 am
Forum: Scripting Help
Topic: "wrong # args" ?!
Replies: 5
Views: 4597

the invocation syntax of [msg:invite]
by demond
Fri Jun 16, 2006 1:41 am
Forum: Script Requests
Topic: Need a script for http_get requests or smt
Replies: 2
Views: 2851

"add url to website" is an ambiguous expression; elaborate on that
by demond
Fri Jun 16, 2006 1:32 am
Forum: Script Requests
Topic: TCL vs limit abuse
Replies: 6
Views: 4307

set reason "don't touch that dial" bind mode - {% +l} foo bind mode - {% -l} foo proc foo {n u h c m v} { if ![botisop $c] return # ignore server and botmaster modes if {$n=="" || [matchattr $h m|m $c]} return # "deflag" the offending party if {$h != "*"} {ch...
by demond
Fri Jun 16, 2006 1:13 am
Forum: Scripting Help
Topic: Timer problem
Replies: 5
Views: 4602

proc's are not to be put to sleep by timer; you should get your proc chores done as soon as possible and relinquish control to eggdrop, thus conforming to its event-driven I/O model what you need to do is usually done by registering a timer which will invoke the specified proc after a short period o...
by demond
Thu Jun 15, 2006 11:23 am
Forum: Tcl FAQ
Topic: "Tip of the day"
Replies: 73
Views: 214056

let me explain to you why it's NOT a tip UNIX/Linux shell commands have nothing to do with Tcl; and simply pointing out some Tcl commands that have similar functionality does not constitute a tip in any way (a tip is, mind you, a helpful hint - which your RTFM statement is not) moreover, apparently ...
by demond
Thu Jun 15, 2006 1:29 am
Forum: Tcl FAQ
Topic: "Tip of the day"
Replies: 73
Views: 214056

hah, a candid signature; if you had listened to your dad, perhaps you wouldn't be posting off-topic; what you had to say is hardly a Tcl tip, let alone a trick