If you want the currently logged in users salt, that's in $vbulletin->userinfo['salt'].
If you need the salt for some other user, assuming your target user ID is in $userid, this should grab it for you:
$my_userinfo = verify_id('user', $userid, 1, 1);
It'll then be in $my_userinfo['salt'].
-- hugh
--------------- Added [DATE]1209928846[/DATE] at [TIME]1209928846[/TIME] ---------------
I just reread your post, realized you are creating new users, so my response above doesn't help much.
Are you using the user datamanager, or trying to do it by steam yourself?
You might want to take a look at the code for 'addmember' in register.php, which shows how to use the datamanager to do this stuff.
If you still want to do it by steam, for a new user you just need to generate a 3 character salt randomly ...
PHP Code:
for ($i = 0; $i < 3; $i++)
{
$salt .= chr(rand(33, 126));
}
The date you asked about is a simple UNIX style "seconds since epoch", as per:
http://www.php.net/time
-- hugh