I got this working:
Code:
<?php
// setup path to your forum and your username and password
define('CWD', '/pathtoforum/');
$username = 'yourusername';
$password = 'yourpassword';
// end setup
define('VB_AREA', 1);
define('THIS_SCRIPT', 1);
define('DIR', CWD);
require_once(DIR . 'includes/init.php');
require_once(DIR . 'includes/functions_login.php');
$encrypted = md5($password);
$c = verify_authentication($username, $password, $encrypted, $encrypted, true, true);
if($c == true) echo 'logged in'; else echo 'logged out';
?>