else if(bypass.startsWith("user_"))
{
String command = bypass.substring(5).trim();
String word = command.split("\\s+")[0];
String args = command.substring(word.length()).trim();
IVoicedCommandHandler vch = VoicedCommandHandler.getInstance().getVoicedCommandHandler(word);
if(vch != null)
{
vch.useVoicedCommand(word, activeChar, args);
}
else
{
_log.warning("Unknow voiced command '" + word + "'");
}