[high]* Darth Cow just installed

[/high]
I did one little modification that you guys might be interested in. It allows there to be vBcode before the /me and for /me to still be processed. Change:
PHP Code:
$bbcode = preg_replace('#^/me (.*)$#im', "<font color=\"{timecolor}\">* $post[username] \\1</font>", $bbcode);
To:
PHP Code:
$bbcode = preg_replace('#(^|\[.*\])/me (.*)$#im', "\\1<font color=\"{timecolor}\">* $post[username] \\2</font>", $bbcode);
That's all

. Nice simple hack

.