I too am having problems w/ this mod but my members really want it. Why abandon such a buggy mod like this? WTF. Looks like I'll have to fix them myself.
Update: Works fine on my vBulletin 3.0.3 installation. But be aware of this:
The editor_smiliebox_quickreply template has BBCODE in it. I don't know how it got there but it will cause the "MORE" link under the smilies to NOT WORK. search for and remove the code tags to correct it. Or use the corrected template below:
HTML Code:
<!-- smiles quichreply par Mйgatekno -->
<script language="Javascript">
function open_smilie_window_pop(wysiwyg) { window.open
("misc.php?do=getsmilies&wysiwyg=" + wysiwyg, "open_smilie_window_pop", "statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=240,height =300,top=10,left=600"); }
</script>
<fieldset id="smiliebox" title="$vbphrase[smilies]">
<legend>$vbphrase[smilies]</legend>
<table cellpadding="4" cellspacing="0" border="0" align="center">
$smiliebits
<if condition="$show['moresmilieslink']">
<tr>
<td class="smallfont" colspan="$vboptions[smcolumns]">[<a href="javascript:open_smilie_window_pop($wysiwyg)" onclick="open_smilie_window(smiliewindow_x, smiliewindow_y, $wysiwyg); return false" title="<phrase 1="$vboptions[smtotal]" 2="$totalsmilies">$vbphrase[showing_x_smilies_of_y_total]</phrase>">$vbphrase[more]</a>]</td>
</tr>
</if>
</table>
</fieldset>
<if condition="$show['wysiwyg']">
<script type="text/javascript">
<!--
// init the WYSIWYG smilie box
open_smilie_window($wysiwyg);
//-->
</script>
</if>