This is the format I use for my sign/dialogue system. It's maybe not as flexible, but I find it more easier to read and follow:
PHP Code:
temp.test = Sign.multi("A copy of Ninja Illustrated! Should you take it?",{
"Yes",
"No",
"Does it have bikini ninja chicks???"
}
);
if (test == "Yes") Sign.say("Thief!#bYou should be ashamed!");
else if (test == "No") Sign.say("Good, you're a good boy... a good boy...");
else Sign.say("Maybe, you pervert!");
These functions can be stacked in order needed, as it won't process the next sign until the last has finished. Sorry about the formatting. I was trying to make it more readable, as in what's going on.