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

by Calamaro
Sun Oct 24, 2004 8:15 am
Forum: Archive
Topic: Problems with the script Dictionary 4.68 by MORA@EFNet
Replies: 4
Views: 1686

Disregard my previous post. It would seem that the {} around words with special characters only comes when you remove a definition from the dictionary. These are the relevant parts (i think): bind pub $dictionary(delflag) $dictionary(deltrigger) dic:pub:del proc dic:pub:del {nick uhost handle chan l...
by Calamaro
Sun Oct 24, 2004 2:24 am
Forum: Archive
Topic: Problems with the script Dictionary 4.68 by MORA@EFNet
Replies: 4
Views: 1686

Thanks for the reply but if i understand you correctly that seems more like a fix then a solution to the problem. This is the part of the script that adds the definitions to the in memory db: bind pub $dictionary(addflag) $dictionary(addtrigger) dic:pub:add proc dic:pub:add {nick uhost handle chan t...
by Calamaro
Sat Oct 23, 2004 3:25 pm
Forum: Archive
Topic: Problems with the script Dictionary 4.68 by MORA@EFNet
Replies: 4
Views: 1686

Problems with the script Dictionary 4.68 by MORA@EFNet

Here is the script http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&id=839 The problem i'm having is that if i add a word and use special characters in the definition like: !learn Calamaro says "hell ya" alot It works correctly when i show the definition right away. But sav...
by Calamaro
Wed Sep 29, 2004 3:17 am
Forum: Archive
Topic: Modifying a pub trigger to a msg trigger
Replies: 3
Views: 2649

use 'onchan' to check if they're on a particular channel (it's in tcl-commands.doc) Thanks for telling me about this file. I'm finding it very helpful. Here is what you need: Set your channel here set channel "#mychannel" ### PUB TRIGGER ### bind pub - trigger pub_trigger proc pub_trigger...
by Calamaro
Tue Sep 28, 2004 7:28 pm
Forum: Archive
Topic: Modifying a pub trigger to a msg trigger
Replies: 3
Views: 2649

Modifying a pub trigger to a msg trigger

Hi, I'm trying to modify a script that has a "bind pub" trigger to use a "bind msg" trigger. Here's what i got so far. bind pub - trigger pub_trigger bind msg - trigger msg_trigger proc msg_trigger { nick host handle text } { pub_trigger $nick $host $handle "#channel" $...