'Note' or 'Tell' in same line as triggered text?

Posted by Bonzai on Sun 02 Sep 2007 12:48 AM — 2 posts, 13,416 views.

#0
After a triggered text matches, I want to be send a 'Note' or 'Tell' in the same line as that of the matched text.

is that possible?
USA #1
Depending on what else you are planning on doing with the text, you might just want to omit the line, then rewrite it with ColourTell. Here's an example with Lua:

function AddToLine( sTrig, sLine, wildcards, style)
  for _,v in pairs(style) do
    ColourTell(RGBColourToName(v.textcolour), RGBColourToName(v.backcolour), v.text)
  end
  Note( "your text here" )
end