⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 enter_game.php

📁 Download you own three BR
💻 PHP
字号:
<?php
require_once("../configs/Configs.php");

/////////////////////////////////////////////////////进入- 电信区//////////////////////////////////////////////////////

if($_GET["action"]=="enter_game" and $_GET['server']=="101" and $_GET['game_name']=="3guo"){
	include_once("../functions/class_mysql.php");
	$query=$db->query("select u_id from player_info where `u_id`='".$_COOKIE['UserId']."'");
	$m=$db->fetch_array($query);
	$query_us=$db->query("select u_id from users where u_id='".$_COOKIE['UserId']."';");
	$num_us=$db->num_rows($query_us);
	if ($num_us){
		if($m['u_id']==$_COOKIE['UserId']){
			//已创建角色,直接进入游戏
			$db->query("update player_info set `login_time`='".time()."',`online`='1' where `u_id`='".$UserId."'");
			$db->close();
			echo "<SCRIPT language=JavaScript>";
			echo "top.window.location='../game/index.php?SessionId=".md5($login_md5_chars)."';";
			echo "</SCRIPT>";
			exit;	
		}else{
			//没有创建角色,进入创建角色页面
			$db->close();
		    echo "<SCRIPT language=JavaScript>";
			echo "top.window.location='../game/init/create_role.php';";
			echo "</SCRIPT>";
			exit;
		}
	}
}else{	
	include_once("../functions/class_mysql.php");
	$query=$db->query("select u_id from player_info where `u_id`='".$_COOKIE['UserId']."'");
	$m=$db->fetch_array($query);
	$query_us=$db->query("select u_id from users where u_id='".$_COOKIE['UserId']."';");
	$num_us=$db->num_rows($query_us);
	if ($num_us){
		if($m['u_id']==$_COOKIE['UserId']){
			//已创建角色,直接进入游戏
			$db->query("update player_info set `login_time`='".time()."',`online`='1' where `u_id`='".$UserId."'");
			$db->close();
			echo "<SCRIPT language=JavaScript>";
			echo "top.window.location='../game/index.php?SessionId=".md5($login_md5_chars)."';";
			echo "</SCRIPT>";
			exit;	
		}
	}
}
////////////////////////////////////////////////////////判断电信区结束////////////////////////////////////////////

?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -