Hello,
I'm trying to integrate a game script to Dolphin.
That are asking me to do this in the configuration file:
/*
implement this function if login is needed
return null if login failed
return the player ID and player name if succeed
*/
function checkLogin($username, $password) {
$result = new stdClass();
$result->playerID = '1';
$result->playerName = $username;
$result->playerPictureURL = null;
return $result;
}
How do I integrate Dolphins login form to the scripts config.php file?
Can you fix this issue for me please?
Thanks,
