Try this.
Hook: member_complete
PHP Code:
// Local Date and Time in Profile
$userinfo['tzoffset'] = $userinfo['timezoneoffset'];
if ($vbulletin->userinfo['dstonoff'])
{
// DST is on, add an hour
$userinfo['tzoffset']++;
if (substr($userinfo['tzoffset'], 0, 1) != '-')
{
// recorrect so that it has + sign, if necessary
$userinfo['tzoffset'] = '+' . $userinfo['tzoffset'];
}
}
$userinfo['localtime'] = date($vbulletin->options['timeformat'], TIMENOW+($userinfo['tzoffset']-$userinfo['timeoffset'])*3600);
$userinfo['localdate'] = date($vbulletin->options['dateformat'], TIMENOW+($userinfo['tzoffset']-$userinfo['timeoffset'])*3600);
// Local Date and Time in Profile