I can make it color the prompt blue using "^\<.*?\>", or i can separate it using "^(\<.*\>)(.*)$" and sending:
%1
%2
to the output. But i need it to be BOTH colored AND separated, i.e. Blue prompt and below it the text... how can i do that? (Using triggers)
Why is it though, that if i use both triggers, one to colour and one to separate, the second trigger colours the line again? I mean, I have "no change" selected, yet the line that gets displayed is not blue, even if it was colored blue before!
The first one colours the line, but the second one omits it from output, so it is omitting the coloured one from output. Then your second one displays the line in the world note colour.
You really need just one trigger, that doesn't display anything directly. It calls a script that then displays the two wildcards in the desired colour. eg.
sub mytrigger (sname, sline, wildcards)
world.colournote "blue", "black", wildcards (1)
world.colournote "red", "black", wildcards (2)
end sub