Hi, I have set up many hotels r63 and r63b. I'm trying to set one up currently. I downloaded the latest swfs and emu from *****, and also applied a few exploit fixes myself in the emulator code. No issues upon debugging - but I get 76% on the client. Emu shows that I am not connected. I have open ports in firewall and I took my proxy off the client while trying to fix this. Here are my client.php and config.ini :
The emulator connects to the database and shows it's listening for connections on 30000. Heres the client.php:
No errors on developer tools (chrome). Full clean database. The exploits I applied are the SSO one's , where you edit the emulator code and change some class.core and .users stuff, dont think that's the issue anyway since if I close my emulator when trying to connect is continues to stay on 76. Note that it doesnt disconnect me after being on 76% for 30secs, it goes on for hours.
Any help would be appreciated, never seen this before when I set all hotels up the same.
Code:
## uberEmulator System Configuration File
## Must be edited for the server to work
## MySQL Configuration
db.hostname=localhost
db.port=3306
db.username=root
db.password=password
db.name=databasename
## MySQL pooling setup (controls amount of connections)
db.pool.minsize=10
db.pool.maxsize=250
## Game TCP/IP Configuration
game.tcp.bindip=serverip
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=200
game.tcp.enablenagles=true
## MUS TCP/IP Configuration
mus.tcp.bindip=serverip
mus.tcp.port=30001
mus.tcp.allowedaddr=localhost;serverip
## Client configuration
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300
The emulator connects to the database and shows it's listening for connections on 30000. Heres the client.php:
Code:
<?php require_once ('app/tpl/skins/site/includes/checktheban.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>{hotelname} - Client</title>
<link rel="stylesheet" href="http://url/client.css" type="text/css">
<script type="text/javascript" src="http://url/swfobject.js"></script>
<script type="text/javascript">
var BaseUrl = "http://url/swf/gordon/PRODUCTION-201602082203-712976078/";
var flashvars =
{
"client.allow.cross.domain" : "0",
"client.notify.cross.domain" : "1",
"connection.info.host" : "ip",
"connection.info.port" : "30000",
"site.url" : "http://url",
"url.prefix" : "http://url",
"client.reload.url" : "http://url/client",
"client.fatal.error.url" : "http://url/client",
"client.connection.failed.url" : "http://url/client",
"logout.url" : "http://url/client",
"logout.disconnect.url" : "http://url/client",
"external.variables.txt" : "http://url/swf/gamedata/external_variables.txt",
"external.texts.txt" : "http://url/swf/gamedata/external_flash_texts.txt",
"external.figurepartlist.txt" : "http://url/swf/gamedata/figuredata.xml",
"productdata.load.url" : "http://url/swf/gamedata/productdata.txt",
"furnidata.load.url" : "http://url/swf/gamedata/furnidata.xml",
"sso.ticket" : "{sso}",
"processlog.enabled" : "0",
"client.starting" : "{username}, Welcome to hotel Hotel!",
"flash.client.url" : "http://url/swf/gordon/PRODUCTION-201602082203-712976078/",
"user.hash" : "code that i dont know is safe to release",
"has.identity" : "1",
"flash.client.origin" : "popup",
"nux.lobbies.enabled" : "true",
"country_code" : "GB"
};
var params =
{
"base" : BaseUrl + "/",
"allowScriptAccess" : "always",
"menu" : "false"
};
swfobject.embedSWF(BaseUrl + "habbo.swf", "client", "100%", "100%", "10.0.0", "http://url/swf/gordon/PRODUCTION-201602082203-712976078/expressInstall.swf", flashvars, params, null);
</script>
</head>
<body>
<div id="client"></div>
</body>
</html>
Any help would be appreciated, never seen this before when I set all hotels up the same.