Thread obsoleto Problema Con client Si Blocca 76 %

Stato
Discussione chiusa ad ulteriori risposte.

michele221

Utente Attivo
Autore del topic
20 Ottobre 2014
460
41
Miglior risposta
0
Salve a tutti ho un problema con il client una volta avviato si blocca a 76 % Tengo a precisare che ho configurato bene tutti gli extern variables Uso plus emulator upload_2017-11-23_12-26-5.png
Vi posto la configurazione dell'emulatore
## uberEmulator System Configuration File
## Must be edited for the server to work

## MySQL Configuration
db.hostname=127.0.0.1
db.port=3306
db.username=root
db.password=password mia
db.name=nome db

## MySQL pooling setup (controls amount of connections)
db.pool.minsize=10
db.pool.maxsize=250

## Game TCP/IP Configuration
game.tcp.bindip=il mio ip
game.tcp.port=3030
game.tcp.conlimit=100000
game.tcp.conperip=200
game.tcp.enablenagles=true

## MUS TCP/IP Configuration
mus.tcp.bindip=il mio ip
mus.tcp.port=3040
mus.tcp.allowedaddr=il mio ip

## Client configuration
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

 

Allegati

  • upload_2017-11-23_12-26-53.png
    upload_2017-11-23_12-26-53.png
    62,5 KB · Visualizzazioni: 3
  • upload_2017-11-23_12-27-32.png
    upload_2017-11-23_12-27-32.png
    62,5 KB · Visualizzazioni: 3
Salve a tutti ho un problema con il client una volta avviato si blocca a 76 % Tengo a precisare che ho configurato bene tutti gli extern variables Uso plus emulator View attachment 495
Vi posto la configurazione dell'emulatore
## uberEmulator System Configuration File
## Must be edited for the server to work

## MySQL Configuration
db.hostname=127.0.0.1
db.port=3306
db.username=root
db.password=password mia
db.name=nome db

## MySQL pooling setup (controls amount of connections)
db.pool.minsize=10
db.pool.maxsize=250

## Game TCP/IP Configuration
game.tcp.bindip=il mio ip
game.tcp.port=3030
game.tcp.conlimit=100000
game.tcp.conperip=200
game.tcp.enablenagles=true

## MUS TCP/IP Configuration
mus.tcp.bindip=il mio ip
mus.tcp.port=3040
mus.tcp.allowedaddr=il mio ip

## Client configuration
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

Hai configurato gli override?

Inviato dal mio JERRY utilizzando Tapatalk
 
<?php
/* #################################################################### \
|| ||
|| TwinkieCMS - Use of this software is strictly prohibited. *#
|| # Copyright (C) 2014 lD@vidl. *#
||---------------------------------------------------------------------*#
||---------------------------------------------------------------------*#
|| Script pensado para la gestión de retroservers Habbo. *#
|| Tanto el script como los autores del mismo no tienen ningún tipo *#
|| de asociación con Habbo y/o Sulake Oy Corp. Por lo tanto, estos no *#
|| se hacen responsables del uso que el usuario le dé. *#
|| ||
\ ################################################################### */
ob_start();
require_once 'inc/core.php';
$user->logged('yes');

if($user->Get("rank") >= RANKMIN && $_SESSION['CLIENT_PIN_NOW'] !== true){
header("LOCATION: ". PATH ."/client/index.php");
exit;
}else{
unset($_SESSION['CLIENT_PIN_NOW']);
$myid = $user->Get('id');
$my_id = $myid;
}

$_config['client'] = array(
'host' => 'il mio ip/',
'port' => '30000',
'external_variables' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/external_variables.txt',
'external_figurepartlist' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/figuredata.xml',
'external_override_variables' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/override/external_override_variables.txt',
'external_override_texts' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/override/external_flash_override_texts.txt',
'external_flash_texts' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/external_flash_texts.txt',
'productdata' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/productdata.txt',
'furnidata' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/furnidata.xml',
'flash_client_url' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gordon/PRODUCTION-201601012205-226667486/',
'habbo_swf' => 'Habbo.swf'
);
$myusername = $user->Get('username');
$ticket = $user->GenerateTicket();
$ip = USER_IP;
$query = $db->query("UPDATE users SET auth_ticket = '{$ticket}', ip_last = '" . USER_IP . "', last_used = '". time() ."' WHERE id = '" . $myid . "'");
$rvip = $db->query("UPDATE users SET rank = 1 WHERE rank = 1");//Pa rango 2 a todos los users PD:emoji_smiley:avid plp
?>
<!DOCTYPE html>
<html lang="es_ES">
<head>
<title><?php echo SHORTNAME; ?> - Client</title>
<link rel="shortcut icon" href="<?php echo CDN; ?>/images/favicon.ico" type="image/vnd.microsoft.icon" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta name="description" content="Diversión al limite!" />
<script type="text/javascript" src="/libs2.js"></script>
<style type="text/css">
* { margin: 0; padding: 0; }
html, #flash-container { height: 100%; text-align: left; background-color: black; }
#flash-container { position: absolute; overflow: hidden; left: 0; top: 0; right: 0; bottom: 0; }
</style>
<script type="text/javascript">
var flashvars = {
"client.allow.cross.domain" : "0",
"client.notify.cross.domain" : "1",
"connection.info.host" : "<?php echo $_config['client']['host']; ?>",
"connection.info.port" : "<?php echo $_config['client']['port']; ?>",
"site.url" : "<?php echo PATH; ?>",
"url.prefix" : "<?php echo PATH; ?>",
"client.reload.url" : "<?php echo PATH; ?>/client.php",
"client.fatal.error.url" : "<?php echo PATH; ?>/client.php",
"client.connection.failed.url" : "<?php echo PATH; ?>/client.php",
"logout.url" : "<?php echo PATH; ?>/client.php",
"logout.disconnect.url" : "<?php echo PATH; ?>/client.php",
"external.variables.txt" : "<?php echo $_config['client']['external_variables']; ?>",
"external.texts.txt" : "<?php echo $_config['client']['external_flash_texts']; ?>",
"external.figurepartlist.txt" : "<?php echo $_config['client']['external_figurepartlist']; ?>",
"external.override.texts.txt" : "<?php echo $_config['client']['external_override_texts']; ?>",
"external.override.variables.txt" : "<?php echo $_config['client']['external_override_variables']; ?>",
"productdata.load.url" : "<?php echo $_config['client']['productdata']; ?>",
"furnidata.load.url" : "<?php echo $_config['client']['furnidata']; ?>",
"sso.ticket": "<?php echo $ticket; ?>",
"processlog.enabled" : "1",
"account_id" : "<?php echo $user->Get('username'); ?>",
"client.starting" : "Per favore, aspetta! <?php echo $myrow['username']; ?>Hubix sta caricando.",
"flash.client.url" : "<?php echo $_config['client']['flash_client_url']; ?>",
"user.hash" : "5690170255dbf26e0275377f436614c91d1a810d",
"has.identity" : "1",
"flash.client.origin" : "popup",
"nux.lobbies.enabled" : "false",
"country_code" : "DO"
};

var params = {
"base" : "<?php echo $_config['client']['flash_client_url']; ?>",
"allowScriptAccess" : "always",
"menu" : "true"
};

swfobject.embedSWF("<?php echo $_config['client']['flash_client_url'] . $_config['client']['habbo_swf']; ?>?s", "flash-container", "100%", "100%", "10.1.0", "
Perfavore, Entra oppure Registrati per vedere i Link!
", flashvars, params, null);
</script>

</head>
<body>
<div id="flash-container">
</div>
<!-- horizontal largo -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-8546276907774396"
data-ad-slot="4424363866"></ins>

</html>
<?php ob_end_flush(); ?>
 
<?php
/* #################################################################### \
|| ||
|| TwinkieCMS - Use of this software is strictly prohibited. *#
|| # Copyright (C) 2014 lD@vidl. *#
||---------------------------------------------------------------------*#
||---------------------------------------------------------------------*#
|| Script pensado para la gestión de retroservers Habbo. *#
|| Tanto el script como los autores del mismo no tienen ningún tipo *#
|| de asociación con Habbo y/o Sulake Oy Corp. Por lo tanto, estos no *#
|| se hacen responsables del uso que el usuario le dé. *#
|| ||
\ ################################################################### */
ob_start();
require_once 'inc/core.php';
$user->logged('yes');

if($user->Get("rank") >= RANKMIN && $_SESSION['CLIENT_PIN_NOW'] !== true){
header("LOCATION: ". PATH ."/client/index.php");
exit;
}else{
unset($_SESSION['CLIENT_PIN_NOW']);
$myid = $user->Get('id');
$my_id = $myid;
}

$_config['client'] = array(
'host' => 'il mio ip/',
'port' => '30000',
'external_variables' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/external_variables.txt',
'external_figurepartlist' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/figuredata.xml',
'external_override_variables' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/override/external_override_variables.txt',
'external_override_texts' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/override/external_flash_override_texts.txt',
'external_flash_texts' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/external_flash_texts.txt',
'productdata' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/productdata.txt',
'furnidata' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gamedata/furnidata.xml',
'flash_client_url' => '
Perfavore, Entra oppure Registrati per vedere i Link!
mio ip/gordon/PRODUCTION-201601012205-226667486/',
'habbo_swf' => 'Habbo.swf'
);
$myusername = $user->Get('username');
$ticket = $user->GenerateTicket();
$ip = USER_IP;
$query = $db->query("UPDATE users SET auth_ticket = '{$ticket}', ip_last = '" . USER_IP . "', last_used = '". time() ."' WHERE id = '" . $myid . "'");
$rvip = $db->query("UPDATE users SET rank = 1 WHERE rank = 1");//Pa rango 2 a todos los users PD:emoji_smiley:avid plp
?>
<!DOCTYPE html>
<html lang="es_ES">
<head>
<title><?php echo SHORTNAME; ?> - Client</title>
<link rel="shortcut icon" href="<?php echo CDN; ?>/images/favicon.ico" type="image/vnd.microsoft.icon" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta name="description" content="Diversión al limite!" />
<script type="text/javascript" src="/libs2.js"></script>
<style type="text/css">
* { margin: 0; padding: 0; }
html, #flash-container { height: 100%; text-align: left; background-color: black; }
#flash-container { position: absolute; overflow: hidden; left: 0; top: 0; right: 0; bottom: 0; }
</style>
<script type="text/javascript">
var flashvars = {
"client.allow.cross.domain" : "0",
"client.notify.cross.domain" : "1",
"connection.info.host" : "<?php echo $_config['client']['host']; ?>",
"connection.info.port" : "<?php echo $_config['client']['port']; ?>",
"site.url" : "<?php echo PATH; ?>",
"url.prefix" : "<?php echo PATH; ?>",
"client.reload.url" : "<?php echo PATH; ?>/client.php",
"client.fatal.error.url" : "<?php echo PATH; ?>/client.php",
"client.connection.failed.url" : "<?php echo PATH; ?>/client.php",
"logout.url" : "<?php echo PATH; ?>/client.php",
"logout.disconnect.url" : "<?php echo PATH; ?>/client.php",
"external.variables.txt" : "<?php echo $_config['client']['external_variables']; ?>",
"external.texts.txt" : "<?php echo $_config['client']['external_flash_texts']; ?>",
"external.figurepartlist.txt" : "<?php echo $_config['client']['external_figurepartlist']; ?>",
"external.override.texts.txt" : "<?php echo $_config['client']['external_override_texts']; ?>",
"external.override.variables.txt" : "<?php echo $_config['client']['external_override_variables']; ?>",
"productdata.load.url" : "<?php echo $_config['client']['productdata']; ?>",
"furnidata.load.url" : "<?php echo $_config['client']['furnidata']; ?>",
"sso.ticket": "<?php echo $ticket; ?>",
"processlog.enabled" : "1",
"account_id" : "<?php echo $user->Get('username'); ?>",
"client.starting" : "Per favore, aspetta! <?php echo $myrow['username']; ?>Hubix sta caricando.",
"flash.client.url" : "<?php echo $_config['client']['flash_client_url']; ?>",
"user.hash" : "5690170255dbf26e0275377f436614c91d1a810d",
"has.identity" : "1",
"flash.client.origin" : "popup",
"nux.lobbies.enabled" : "false",
"country_code" : "DO"
};

var params = {
"base" : "<?php echo $_config['client']['flash_client_url']; ?>",
"allowScriptAccess" : "always",
"menu" : "true"
};

swfobject.embedSWF("<?php echo $_config['client']['flash_client_url'] . $_config['client']['habbo_swf']; ?>?s", "flash-container", "100%", "100%", "10.1.0", "
Perfavore, Entra oppure Registrati per vedere i Link!
", flashvars, params, null);
</script>

</head>
<body>
<div id="flash-container">
</div>
<!-- horizontal largo -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-8546276907774396"
data-ad-slot="4424363866"></ins>

</html>
<?php ob_end_flush(); ?>
Posta la configurazione dell'emulatore, gli external e gli ovveride variables

Inviato dal mio JERRY utilizzando Tapatalk
 
Stato
Discussione chiusa ad ulteriori risposte.