Tested and works fine on vbb3 gold!
Small change though... in includes/functions_bbcodeparse.php instead of looking for this
PHP Code:
$bbcode = str_replace(array('>|||)', '<|||)', '"|||)'), array('>)', '<)','")'), $bbcode);
} // end smilies
You need to look for this slightly different line:
PHP Code:
$bbcode = str_replace(array(">\xE4)", "<\xE4)", ""\xE4)"), array('>)', '<)','")'), $bbcode);
} // end smilies