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

by darkie
Wed Aug 04, 2004 10:42 pm
Forum: Archive
Topic: irc2html
Replies: 5
Views: 2778

One question: what does colour code 19 refer to? My script gives any colour code other than 0-15 and 99 a RGB reading of FFFFFF. if mIRC converts that into green, then I will fix it. But since I don't have a copy of mIRC available at this present time, I will have to review this later. EDIT: Also, I...
by darkie
Wed Aug 04, 2004 3:41 am
Forum: Archive
Topic: irc2html
Replies: 5
Views: 2778

It works... but it produces bulky code with redundant tags. Mine does not (although the code produced may not be XML compatible)
by darkie
Tue Aug 03, 2004 9:45 pm
Forum: Archive
Topic: irc2html
Replies: 5
Views: 2778

irc2html

For those who remember, I needed a script to convert mIRC colour codes to HTML, and stdragon made one that didn't support background colours, I have now made one that does. it is available at http://csusap.csu.edu.au/~amason09/irc2html.tcl.gz and (like most other TCL scripts out there) it is free to...
by darkie
Fri Apr 16, 2004 5:10 am
Forum: Archive
Topic: ASCII conversion in TCL?
Replies: 3
Views: 1484

Thanks, that works even better!
by darkie
Thu Apr 15, 2004 3:19 am
Forum: Archive
Topic: ASCII conversion in TCL?
Replies: 3
Views: 1484

Never mind, I got it. It spits it out in hex, but it works:

Code: Select all

set s "h"
binary scan $s H*@0a* hex ascii
puts "Hex: $hex"
by darkie
Thu Apr 15, 2004 3:08 am
Forum: Archive
Topic: ASCII conversion in TCL?
Replies: 3
Views: 1484

ASCII conversion in TCL?

How can I extract the ASCII code for a single character?

ie. The ascii code of 9 is 57.

Any help on this will be appreciated.
by darkie
Fri May 30, 2003 7:39 am
Forum: Archive
Topic: error while loading shared libraries: libtcl8.4.so
Replies: 5
Views: 3998

Edit /etc/ld.so.conf and add this to it:

/usr/local/lib

Then type ldconfig

Note that you'll need root access to the machine to do this.
by darkie
Mon May 26, 2003 4:56 am
Forum: Archive
Topic: Difficulty with Shared libs
Replies: 1
Views: 643

Difficulty with Shared libs

I get this error when I compile eggdrop: Successful compile: eggdrop make[1]: Leaving directory `/home/splash/eggdrop1.6.15/src' ./eggdrop: error while loading shared libraries: libtcl8.3.so: cannot open shared object file: No such file or directory make: *** [static] Error 127 I did 'find /usr -nam...
by darkie
Mon May 26, 2003 4:43 am
Forum: Archive
Topic: Telnet Connection msgs
Replies: 3
Views: 1018

[04:43] Telnet connection: localhost.daforest.org/1587
by darkie
Sun May 25, 2003 10:24 pm
Forum: Archive
Topic: eggdrop and tcl 8.4.2
Replies: 3
Views: 1118

Never mind, the sysop at the place downgraded to 8.3.4 and all is well.
by darkie
Sun May 25, 2003 10:21 pm
Forum: Archive
Topic: Telnet Connection msgs
Replies: 3
Views: 1018

Telnet Connection msgs

How do I remove Telnet Connection messages, if its possible at all?
by darkie
Tue May 20, 2003 6:13 am
Forum: Archive
Topic: eggdrop and tcl 8.4.2
Replies: 3
Views: 1118

./configure output: checking for Tcl library... found /usr/lib/libtcl.so checking for Tcl header... found /usr/local/include/tcl.h checking whether the Tcl system has changed... yes checking for Tcl version... 8.4 checking for Tcl patch level... 8.4.2 checking for Tcl_Free in -ltcl... yes checking f...
by darkie
Sat May 17, 2003 6:00 am
Forum: Archive
Topic: eggdrop and tcl 8.4.2
Replies: 3
Views: 1118

eggdrop and tcl 8.4.2

Is there a problem with eggdrop and tcl 8.4.2? I had difficulty compiling it on a system with this version of TCL.

If that's not what the problem is, then the sysop on my box has installed TCL wrong.

Ty in advance...
by darkie
Fri Feb 28, 2003 11:11 pm
Forum: Archive
Topic: mIRC to HTML?
Replies: 11
Views: 1268

To see this TCL script in action, go to http://www.splashirc.com/onchat.php
by darkie
Fri Feb 28, 2003 6:22 am
Forum: Archive
Topic: mIRC to HTML?
Replies: 11
Views: 1268

You can try this, I just wrote it. Not really tested. http://stdarg.techmonkeys.org/egg/scripts/irc_to_html.tcl It doesn't support background colors right now but it's not too hard to add. I guess the best way would be to <span style='background-color: blah; color: blah'>blah blah</span> right? Thi...