Unknown2005-09-11 00:36:43
I apologise if this has already been asked somewhere, but can someone explain how we can set up triggers in zmud that respond to text across multiple lines?
I figured I should start a debating system, but I want to capture the whole text. So for instance, if I want to use the trigger
"(%d) unscrupulously quibbles about the smallest points in argument, bringing up esoteric minutiae to support radical theories. The logic of this argument is sound and you find yourself conceding to all the points raised."
which is split in any way across 3 or 4 multiple lines, how would I do that?
I figured I should start a debating system, but I want to capture the whole text. So for instance, if I want to use the trigger
"(%d) unscrupulously quibbles about the smallest points in argument, bringing up esoteric minutiae to support radical theories. The logic of this argument is sound and you find yourself conceding to all the points raised."
which is split in any way across 3 or 4 multiple lines, how would I do that?
Unknown2005-09-11 00:40:35
With conditionals.
Something like that.
If you feel like reading about conditionals.
QUOTE
#TRIGGER "cautious_1" {^(*) argues with sweeping authority, buttressing} {}
#CONDITION {assumptions and justifications. The argument} {} {within|param=1}
#CONDITION {full of holes that you don't know} {} {within|param=1}
#CONDITION {you realize it your silence has been} {#ECHO " PONTIFICATION"} {within|param=1}
#CONDITION {assumptions and justifications. The argument} {} {within|param=1}
#CONDITION {full of holes that you don't know} {} {within|param=1}
#CONDITION {you realize it your silence has been} {#ECHO " PONTIFICATION"} {within|param=1}
Something like that.
If you feel like reading about conditionals.
Unknown2005-09-11 00:44:58
I'll give it a go, thanks!