Bug with OnPluginScreendraw

Posted by Tspivey on Sun 02 Apr 2006 08:26 PM — 2 posts, 12,270 views.

Canada #0
I noticed that when making a trigger with omit from output set, and send to script, with the send box containing a Note(), the note is sent to the plugin, even though it doesn't seem to appear in the output window.
Australia Forum Administrator #1
It has been noted elsewhere in the forum that sending to output, in "send to script" triggers, which omit from output, also omit the sent output as well. This is to do with the way MUSHclient internally omits the "omit from output" lines. That is, it needs to omit everything, not just the lines in question, so if you append to that, it is also omitted.

However if you call a script in a script file, it will work. The reason for that is that script calls are deferred internally (for example, in case one trigger calls the same script many times, due to "repeat on same line" being set).

Thus, doing a Note in an external script, is the way to go in your case.