this was in a thread up a bit from this one, shows how to use string replacing, etc. you'll have to hack that into the code, as aposed to just adding a new bbcode.
Code:
// do xxx
$text=eregi_replace("\\[url\\]www.([^\\[]*)\\[/url\\]","<a href=\"http://www.\\1\" target=_blank>(hyperlink)</a>",$text);
$text=eregi_replace("\\[url\\]([^\\[]*)\\[/url\\]","<a href=\"\\1\" target=_blank>(hyperlink)</a>",$text);