. */ require_once(RYAPI_PATH.'client/config.php'); // Og (non-ryzom.com) method function ryzom_authenticate_with_serverkey($cid, $name, $authserver, $authkey) { } // Ig method function ryzom_authenticate_ingame($cid, $name, $authkey) { if (isset($_SESSION['user'])) return true; if (ryzom_get_param('user')) return true; return false; } // Session method function ryzom_authenticate_with_session($name, $redirect) { if (isset($_SESSION['user'])) return true; if (ryzom_get_param('user')) return true; return false; } ?>