Plugin: Smileys
Author: The LifeType Project
Release Date: 2005/02/13
Version: 1.0

This plugin offers you to show the smileys in comments and articles. Usage as followed:

You can use:
1. $smileys->generateSmileysBar() to show visual smileys tool bar. 

Notice:
Your form must has name and id attribute, just like
<form id="NewComment" name="NewComment" ....>

Example:
Standard Template:
Add the following code to commentForm.template after commentText text area:
{if $smileys->isEnabled()}
<script type="text/javascript" src="{$url->getBaseUrl()}/plugins/smileys/js/smileys/smileys.js"></script>
<br/><label>&nbsp;</label>{$smileys->generateSmileysBar()}
{/if}

Other Template (by Monjo's Suggestion):
Add the following code to commentForm.template after commentText text area:
{if $smileys->isEnabled()} 
<script type="text/javascript" src="{$url->getBaseUrl()}/plugins/smileys/js/smileys/smileys.js"></script> 
{$locale->tr("Smileys")}: {$smileys->generateSmileysBar()} 
{/if}

You can modified by your own.