See if this works for you (vB 4.x)...create a new plugin as follows:
Product: vBulletin
Hook Location: printthread_post
Title: Display Inline Attached Images In Printable Thread
Execution Order: 5
Plugin PHP Code:
PHP Code:
$post['attach'] = 0;
$post['message'] = preg_replace('/>Attachment(.*?)<\/a>/', ' />', $post['message']);
$post['message'] = str_replace('<a class="image"', '<img', $post['message']);
$post['message'] = preg_replace('/(<img.*?)href/', '$1src', $post['message']);
Plugin is Active: Yes