Erro Cliente e Emulador Phoenix! 05.02.13 23:14
Estou tendo esse erro na client, também estou tendo um erro no emulador Phoenix 3.11 e estou usando CMS Mobbo 2.6, DB Phoenix 3.11 e Minha SWF Própria. OBS: Estou com ports tudo aberta e usando No-IP!
Configuração da Client:
- PRINT:
- Código:
## Phoenix 3.0 System Configuration File
## Licence Information
Otaku-Studios.username=Quackster
Otaku-Studios.password=
## MySQL Configuration
db.hostname=Host
db.port=3306
db.username=Usuário
db.password=Senha
db.name=Banco de Dados (Database)
## MySQL pooling setup (controls amount of connections)
db.pool.minsize=5
db.pool.maxsize=30
## Game TCP/IP Configuration
game.tcp.bindip=IP do No-IP
game.tcp.port=30000
game.tcp.conlimit=5000
## Client configuration
client.ping.enabled=1
client.ping.interval=30000
## MUS TCP/IP Configuration
mus.tcp.bindip=IP do No-IP
mus.tcp.port=30001
mus.tcp.allowedaddr=IP do No-IP
## Console Configuration
emu.messages.connections=1
emu.messages.roommgr=0
Configuração da Client:
- Código:
<?php
require_once('./CORE.php');
$path = "http://IP do No-IP";
$my_id = USERS::INFO('id');
$remot_ip = $_SERVER['REMOTE_ADDR'];
mysql_query("UPDATE users SET auth_ticket = '', auth_ticket = '".GenerateTicket()."', ip_last = '".$remote_ip."' WHERE id = '".$my_id."'") or die(mysql_error());
$ticketsql = mysql_query("SELECT * FROM users WHERE id = '".$my_id."'") or die(mysql_error());
$ticketrow = mysql_fetch_assoc($ticketsql);
mysql_query("UPDATE users SET ip_last = '" . $_SERVER['REMOTE_ADDR'] . "' WHERE id = '".$my_id."'") or die(mysql_error());
?>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Bunny - Jogar</title>
<link rel="stylesheet" href="/client.css" type="text/css">
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon" /><script
<script type="text/javascript" src="/swfobject.js"></script>
<script type="text/javascript">
var BaseUrl = "http://Minha Swf/gordon/RERELEASE63-201111301255-246708295/";
var flashvars =
{
"client.starting" : "Aguarde enquanto o Bunny Hotel carrega...",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "127.0.0.1",
"connection.info.port" : "30000",
"site.url" : "http://IP do No-IP/",
"url.prefix" : "http://IP do No-IP/",
"client.reload.url" : "http://IP do No-IP/client",
"client.fatal.error.url" : "http://IP do No-IP/me",
"client.connection.failed.url" : "http://IP do No-IP/me",
"external.variables.txt" : "http://Minha Swf/gamedata/external_variables_habbo_swf_v5.1",
"external.texts.txt" : "http://Minha Swf/gamedata/textos_externales_habbo_swf_v5.1",
"productdata.load.url" : "http://Minha Swf/gamedata/productdata_habbo_swf_v5.1",
"furnidata.load.url" : "http://Minha Swf/gamedata/furnidata_habbo_swf_v5.1",
"use.sso.ticket" : "1",
"sso.ticket" : "<?php echo $ticketrow['auth_ticket']; ?>",
"processlog.enabled" : "0",
"flash.client.url" : BaseUrl,
"flash.client.origin" : "popup",
};
var params =
{
"base" : BaseUrl + "/",
"allowScriptAccess" : "always",
"menu" : "false",
};
params["wmode"] = "black";
swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null);
</script>
<style>
.menu {
position:fixed;
bottom:45px;
left:15px;
boder:: 1005 !important;
color:#FFF;
cursor:pointer;
}
.button {
float:left;
padding:3px;
margin-right:3px;
}
#addedcontent {
position:fixed;
top:5px;
left:300px;
max-width:400px;
min-width:150px;
boder:: 1006 !important;
}
#b-header {
cursor:default;
padding:5px;
text-align:center;
background-color:#568BA4;
font-size:13px;
font-weight:bold;
-moz-border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 0px 0px;
border:2px solid #66A2BE;
border-bottom: 1px solid #000;
height:19px;
line-height:19px;
}
#b-content {
padding:5px;
background-color:#E9E9E1;
-moz-border-radius: 0px 0px 5px 5px;
border-radius: 0px 0px 5px 5px;
color:#000;
}
#close-button {
position:absolute;
right:5px;
top:7px;
width:19px;
height:20px;
background-image:url('http://IP do No-IP/app/tpl/skins/{skin}/images/close.png');
background-repeat:no-repeat;
cursor:pointer;
background-position:right top;
}
#close-button:hover {
background-repeat:no-repeat;
background-position:left top;
}
#font-face {
font-family: Ubuntu-C;
src: url('http://IP do No-IP/Ubuntu-C.ttf');
}
#body {
font-size: 12px;
font-family:Ubuntu-C;
}
</style>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script>
$(document).ready(function() { $("#addedcontent").draggable(); $("#addedcontent").hide(); }); function loadpage(page,title) { $("#b-header").html(title + '<div id="close-button" onclick="$(\'#addedcontent\').hide();"></div>'); $('#b-content').load("addedcontent/"+page+".php", function() { $("#addedcontent").show(); }); }
</script>
</head>
<body>
<script>
var params["wmode"] = "transparent";
</script>
<div id="client"></div>
</div>
<script type="text/javascript">
var uid = '222';
var wid = '685';
</script>
<script type="text/javascript" src="http://popcash.net/pop.js"></script>
</body>
</html>