Steffen
Well-known member
Since https://xenforo.com/community/threads/vb4-import-keep-invisible-mode.144603/ the importer disables "Show your online status" if the user had invisible mode enabled in vBulletin. Additionally, "Show your current activity" needs be disabled, too (because it's a subsetting).
PHP:
if ($this->bitwise($optionBits, 9))
{
$import->visible = false;
$import->activity_visible = false;
}