BTW, if you are testing templates you can change the line in the plugin:
PHP Code:
if (($vbulletin->userinfo['userid'] > 0) AND ($vbulletin->userinfo['posts'] == 0)) {
to something like:
PHP Code:
if (($vbulletin->userinfo['userid'] > 0) AND ($vbulletin->userinfo['posts'] < 9999)) {
This will temporarily make any post for a user under 9999 posts create a welcome post. This would not work well on an open, public forum. But in a test forum, or if you have closed the forum for maintanance, this lets you easily test the templates.