As I don't know how the StuffPlug talkers are used by the plugin, I can't give any advice. Anyway, take a look at how bambi talker works:
code:
function getnr() {
var output=""+(Math.round(Math.random()*5) * 50);
while (output.length < 3) output="0"+output;
return output;
}
function talker(input){
var cchar="";
var output="";
var i=0;
while (i<input.length) {
if (input.substr(i,1)==" ") {
output = output+" ";
} else {
output=output+cchar+"(";
output=output+getnr()+",";
output=output+getnr()+",";
output=output+getnr()+")";
output=output+input.substr(i,1);
}
i=i+1;
}
return output;
}
So try giving the value to any string and then use it...