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

by Dereckson
Mon Jul 14, 2003 10:26 am
Forum: Archive
Topic: Pls help me with sql in tcl ...
Replies: 1
Views: 1113

First, you have to install something to allow tcl to play with sql databases. In my mind, the most powerful and easy is fbsql : http://www.fastbase.co.nz/fbsql/index.html --- Secondly, you have to create a table with two columns : one for the timestamp (for example called datetime ), another for the...
by Dereckson
Sun Jul 13, 2003 4:34 pm
Forum: Archive
Topic: Check if a nick is +r (registered).
Replies: 3
Views: 1222

Code: Select all

bind raw - 330 raw:330

proc raw:330 {from key arg} {
	#To have the nick, [lindex $arg 1]
	#To have the login, [lindex [split $arg] 2]
}
by Dereckson
Sun Jul 13, 2003 4:29 pm
Forum: Archive
Topic: FTP in TCL
Replies: 2
Views: 1382

The excellent tcllib includes a FTP package to add FTP manipulation to TCL.

The list of commands (and help) is on http://tcllib.sourceforge.net/doc/ftp.html

You can download tcllib on sourceforge :
by Dereckson
Sun Jul 13, 2003 1:00 pm
Forum: Archive
Topic: Message Auto-Reply
Replies: 13
Views: 3254

Please give a example of sentence that causes an error.
by Dereckson
Fri Jul 11, 2003 4:27 am
Forum: Archive
Topic: tcl 8.4.3 vs 8.3
Replies: 2
Views: 1035

If you're final user, according with stdragon, you have the choice and 8.3 is enough. Just a notice for non-english users : the characters are better managed in 8.4 (you avoid somme unicodes é or Ã´ ;)) If you're developer, you'll can use some new commands, functions, possibilites like : numerous p...
by Dereckson
Sat Apr 12, 2003 5:27 am
Forum: Archive
Topic: Cricket World Cup
Replies: 2
Views: 1437

To grab data, you have to use http package.

Documentation can be found here : http://www.scriptics.com/man/tcl8.0/TclCmd/http.htm
by Dereckson
Sat Apr 12, 2003 5:21 am
Forum: Archive
Topic: Script writing new Board-Posts
Replies: 4
Views: 1412

Does your board store posts in a SQL base ?
by Dereckson
Sat Apr 12, 2003 5:18 am
Forum: Archive
Topic: Tcl Eggdrop execute msg command about certain time
Replies: 3
Views: 1869

Hi Maikel :) proc timer_notification {} { puthelp "PRIVMSG #yourchannel :bla bla bla" timer 6 timer_notification } First, we create a procedure called timer_notification. This procedure make 2 things : 1. it drops a line bla bla bla on on #yourchannel 2. it asks eggdrop to execute in 6 min...
by Dereckson
Sat Apr 12, 2003 5:10 am
Forum: Archive
Topic: news grabber
Replies: 1
Views: 1193

Try to undestand the script you've downloaded :

This is a very good method to learn TCL programmation.

If you have questions or remarques on the code, I'll answer you with pleasure.
by Dereckson
Sat Apr 12, 2003 5:09 am
Forum: Archive
Topic: somebody please help me
Replies: 2
Views: 1391

Hello

When you post in a forum, please please use an explicit title !

e.g. add a mass deop feature
by Dereckson
Sat Apr 12, 2003 5:07 am
Forum: Archive
Topic: Take words from a sentence (help)
Replies: 4
Views: 1846

Instead join/split, you need something convert CORRECTLY your string into a list.

This is the solution I use :

Code: Select all

proc splitwords {string} { 
	set return ""
	foreach word [regexp -inline -all -- {\S+} $string] { 
		lappend return $word
	} 
	return $return
}
by Dereckson
Sat Apr 12, 2003 5:02 am
Forum: Archive
Topic: TCL and Mirc
Replies: 5
Views: 2140

I don't agree with you, ppslim.

The common point between mIRC script, TCL script and so on is the idea, the algorhytms used.

Convert a mIRC stuff in TCL is more or less the same work than translate english to chinese.
by Dereckson
Sat Apr 12, 2003 4:59 am
Forum: Archive
Topic: handle lengths
Replies: 16
Views: 5530

The parameter is to set in eggdrop.h
by Dereckson
Sat Apr 12, 2003 4:58 am
Forum: Archive
Topic: (!) timer drift -- spun 3 minutes
Replies: 9
Views: 7932

When you change the time of a computer hosting an eggdrop, you get a timer drift spun (but in common, 58 minutes).

So, on a server with instable electrical connexion frenquentily updated with the value returned by a NTP server, this line is very current.
by Dereckson
Fri Jul 05, 2002 1:48 pm
Forum: Archive
Topic: transfer.c
Replies: 1
Views: 724

transfer.c

How modify the module transfer to accept files from all users ?