I will answer my own question here
How to limit News to certain characters?
Open vBexternal.php
Find
PHP Code:
'post' => $bbcode_parser->parse(unhtmlspecialchars($News['pagetext']), $f),
Replace with
PHP Code:
'post' => $bbcode_parser->parse(unhtmlspecialchars(substr ($News['pagetext'],0,250)), $f),
Change 250 to any numbers you wish and this will be pulled from the database.
Cheers!