Hi,
The /me solution shown in this thread doesn't work that good.
For vB3.0.0 RC4 make the following modifications:
In your AdminCP add the following Custom BB code:
Title : Me
Tag : me
Replacement : <font color="red">* {option} {param}</font>
Example : [me=Pascal]write this[/me]
Description : --What you like--
Use {option} : Yes
Button image : -- Leave blank --
In editpost find:
PHP Code:
$postusername = $bbuserinfo['username'];
After it add:
PHP Code:
// Hack : /me like in IRC channels
$edit['message'] = preg_replace('#^/me (.*)$#im', "[me=" . $bbuserinfo['username'] . "]\\1[/me]", $edit['message']);
// End Hack
In newreply.php find:
PHP Code:
$newpost['openclose'] = $_POST['openclose'];
After it add:
PHP Code:
// Hack : /me like in IRC channels
$newpost['message'] = preg_replace('#^/me (.*)$#im', "[me=" . $bbuserinfo['username'] . "]\\1[/me]", $newpost['message']);
// End Hack
Have fun with it.