Invalid parameters passed to function. See Error Dialect for more information on what's in the return value.
1.0
Example
function eventChat(sender, to, message) {
if (chat.isBabel(message)) {
// use .fromBabel() array as params to custom event...
eventChatAI.apply(this, chat.fromBabel(sender, to, message));
} else {
// process other kinds of message
}
}
function eventChatAI(sender, to, message, dialect, data) {
// do stuff
}