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

by BiLL
Wed Sep 22, 2004 9:38 am
Forum: Archive
Topic: TCL Scripts - Encryption ways
Replies: 2
Views: 1800

TCL Scripts - Encryption ways

Hello Guys! If I want to script a .TCL file which not everybody should get/see, is there any way to encrypt the own .tcl file with blowfish (or any other algo)? So not everyone can get the source code, and a correct key is required to decrypt the .tcl file? Any of you know such a way? Is there any o...
by BiLL
Fri Nov 07, 2003 8:23 pm
Forum: Archive
Topic: Advice in massmsg's
Replies: 10
Views: 2014

Thanks for your example and code.

It works perfect now :-).
by BiLL
Thu Nov 06, 2003 12:39 pm
Forum: Archive
Topic: Advice in massmsg's
Replies: 10
Views: 2014

If I use puthelp/putserv both wont work 100%, still some channels didnt get the message. I have to use this utimer method (interval about 10secs for each channel) but I dont know how to do it with a foreach function :(. Can someone help me there?
by BiLL
Mon Nov 03, 2003 1:42 pm
Forum: Archive
Topic: Advice in massmsg's
Replies: 10
Views: 2014

if {[strlwr $c] != [strlwr $basechan]} { means if the channel doesnt match the channels in $basechan it will send the message to it, that means it will only send the message to the channels which are not in $basechan. this means: it will send the message to all channels except from $basechan. this ...
by BiLL
Sun Nov 02, 2003 12:19 pm
Forum: Archive
Topic: Advice in massmsg's
Replies: 10
Views: 2014

Yeah I know that. Its ok, I wanted that. I just wanted to know which would be the best choice. putserv or puthelp? puthelp <text> [options] Description: sends text to the server, like 'putserv', but it uses a different queue intended for sending messages to channels or people. putserv <text> [option...
by BiLL
Sun Nov 02, 2003 9:02 am
Forum: Archive
Topic: Advice in massmsg's
Replies: 10
Views: 2014

Advice in massmsg's

Heyya, A bot (egg 1.6.13 / tcl 8.3.4) should message $msg to EVERY chan he is in. I currently use that way: foreach c [channels] { if {[strlwr $c] != [strlwr $basechan]} { puthelp "PRIVMSG $c :$msg" } But it looks like that sometimes not every chan gets that messages. Is puthelp here the b...
by BiLL
Sat Nov 01, 2003 10:22 am
Forum: Archive
Topic: comparing/matching word <-> list
Replies: 3
Views: 1115

thx got it :)
by BiLL
Fri Oct 31, 2003 10:57 pm
Forum: Archive
Topic: comparing/matching word <-> list
Replies: 3
Views: 1115

comparing/matching word <-> list

Blee!!! Since one hour I am trying to find the correct if clause, I searched through the forum but didn't find a good solution. My problem: set name "BiLL" set namelist "Martin Niklas BiLL Rudolf Dieter" I want to look if $name is in $namelist (string tolower/-nocase prefered), b...
by BiLL
Thu Oct 30, 2003 6:25 pm
Forum: Archive
Topic: lreplace and lsearch combination
Replies: 7
Views: 1520

great that works perfect thanks!
by BiLL
Thu Oct 30, 2003 4:53 pm
Forum: Archive
Topic: lreplace and lsearch combination
Replies: 7
Views: 1520

please someone help me i don't know how to fix that :-(
by BiLL
Thu Oct 30, 2003 12:13 pm
Forum: Archive
Topic: lreplace and lsearch combination
Replies: 7
Views: 1520

Ah, I found the bug :)
Hehe.


Its because I am using that msg:

greetings, please query NICK, this is my msg.

Its because I am using NICK, <- if i leave the , it works. With , it doenst work. You maybe can help me with that also? So I can replace NICK, with my IRCNICK, ? There should be a way!
by BiLL
Thu Oct 30, 2003 11:37 am
Forum: Archive
Topic: lreplace and lsearch combination
Replies: 7
Views: 1520

Hi, thanks for your answer. set msg [split $msg] set msg [lreplace $msg [lsearch $msg "IRC"] [lsearch $msg "IRC"] $nick] set msg [join $msg] I tried this code now but it's still the same. IRC is still not beeing replaced and my irc-nick lands in front of $msg :(. Any other idea??
by BiLL
Thu Oct 30, 2003 11:10 am
Forum: Archive
Topic: lreplace and lsearch combination
Replies: 7
Views: 1520

lreplace and lsearch combination

Hi, I got a problem with lreplace and lsearch :(. I tried a few ways but I don't get it working correctly! I got his: msg = Hello Guys. Blablabla bla bla IRC bla bla bla bla. I want to replace in $msg that IRC with $nick (current nick of the triggerer). So I tried this one: set msg [lreplace $msg [l...
by BiLL
Thu Oct 30, 2003 9:38 am
Forum: Archive
Topic: 2 Things - Channel Key Saving and [channels] cutting
Replies: 2
Views: 1252

Absolutely perfect, no error everything perfect. Big thanks m8. I respect your knowledge!
by BiLL
Wed Oct 29, 2003 11:30 pm
Forum: Archive
Topic: 2 Things - Channel Key Saving and [channels] cutting
Replies: 2
Views: 1252

2 Things - Channel Key Saving and [channels] cutting

Heyya! Good morning guys! I am here cause I got a problem again hehe :-). But I respect your help and knowledge and I hope to get helped here. My first thing: How do I save a channel key per TCL? It sounds easy, but HA! It isn't! In partyline it's easy: .chanset #chan need-key putserv "JOIN :#c...