I do something similar on my site. I use the "register_addmember_complete" plugin.
PHP Code:
$db->query_write("INSERT INTO users (username, password, email) VALUES (
'" . addslashes(htmlspecialchars_uni($vbulletin->GPC['username'])) . "', '" . addslashes(htmlspecialchars_uni($vbulletin->GPC['password_md5'])) . "', '" . addslashes(htmlspecialchars_uni($vbulletin->GPC['email'])) . "')");
Perhaps that will work for you.