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.

Problem while Binding a Notice

Old posts that have not been replied to for several years.
Locked
k
krazimod

Problem while Binding a Notice

Post by krazimod »

my eggy does not respont on a notices
when I try to bind a notice


there is an example script....

bind NOTC - * NoticeProc

proc NoticeProc {nick uhost handle text dest} {
putlog "$nick Sending a notice :)"
}

I am using an eggdrop version 1.6.14

where is the mistake :(
I am a TCL newbie :)

thank you...
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

The above script, isn't meant to respond to you or a channel.

You have used the "putlog" command, which places a comment/log messages inside the eggdrop log files.

This messages can also be seen on the partyline.

Other than understanding that the following line may confuse you

Code: Select all

proc NoticeProc {nick uhost handle text dest} {
"text" & "dest" are the wrong way around, and will not contain what you think they will. So long as you know which variable contains what, you should have no issue.

Additionaly, eggdrop 1.6.14 does not exist as of yet. 1.6.14, also known as CVS and BETA, are not currently official versions, and may contain bugs in them.

At the time fo this post, it does contain a bug.
Locked