MyBB Community Forums

Full Version: Bot Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys,
I connected my bot as user, but in his profile last access and time spent online don't update. I see it in online list.
This is the page that bot contact:
<?php
define("IN_MYBB", 1);
include("global.php");

if($session->useragent == "bot-ale") {
	require_once MYBB_ROOT."inc/datahandlers/login.php";
	$loginhandler = new LoginDataHandler("get");
	
	$user = array(
		'username' => "Ale"
	);
	
	$options = array(
		'fields' => 'loginattempts',
		'username_method' => (int)$mybb->settings['username_method'],
	);

	$user_loginattempts = get_user_by_username($user['username'], $options);
	
	$loginhandler->set_data($user);
	$loginhandler->verify_username();
	$loginhandler->complete_login();
}

Solved adding $session->init()
xD