Is there any way to process pub binds before pubm binds? Also, is there any way to prevent a pubm to be triggered after a pub trigger has been triggered? For instance, I have a URL title grabber tcl and a message tcl. If I leave a message which includes a URL, I don't want the title grabber to be triggered. For instance:
<dude> !msg walter http://www.somelink.com
<bot> URL title: http://www.somelink.com's title <- IT HAPPENS, BUT IT'S NOT WANTED
<bot> Message for walter accepted
Can this be done?
According to TCL Commands.doc file that comes with the eggdrop, and I quote:
PUBM binds are processed before PUB binds.
This means that you can do what you wanted by changing the url title grabber script to "ignore" (return) when the line that normally would trigger it if the line starts with "!msg" for instance.