Error when starting emulator
Hi, I am not a genius when it comes to making a retro. I just decided i'd attempt..which I have done so. I've done everything i'm supposed to do (I think) from tutorials, but for some reason when i start emulator I get this error.
http://prntscr.com/6aa8wg
Thank you!
- - - Updated - - -
http://prntscr.com/6aa8wg
Re: Error when starting emulator
Your MySQL details are incorrect. Check the config of the emulator and make sure they are correct.
Re: Error when starting emulator
Hi, Thanks I fixed a problem I had put in an extra space after 'root'. However for some reason, the emu is starting but the client isn't loading? Can you find a problem and help me please? Thanks!
## 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=branxton
db.name=habboretro
## MySQL pooling setup (controls amount of connections)
db.pool.minsize=10
db.pool.maxsize=500
## Game TCP/IP Configuration
game.tcp.bindip=server ip
game.tcp.port=30002
game.tcp.conlimit=11000
game.tcp.conperip=100
game.tcp.enablenagles=true
## MUS TCP/IP Configuration
mus.tcp.bindip=25.97.238.130
mus.tcp.port=34546
mus.tcp.allowedaddr=25.97.238.130
## Client configuration
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300
Re: Error when starting emulator
Re: Error when starting emulator
I have swfs. Here they are; do you see a problem here?
<?php include_once('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="25.97.238.130/app/tpl/skins/Habbo/styles/client.css" type="text/css">
<script type="text/javascript" src="25.97.238.130/app/tpl/skins/Habbo/js/swfobject.js"></script>
<script type="text/javascript">
var BaseUrl = "{swf_folder}";
var flashvars =
{
"client.starting" : "Please wait, {hotelName} Hotel is loading",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "25.97.238.130",
"connection.info.port" : "30021",
"site.url" : "25.97.238.130",
"url.prefix" : "25.97.238.130",
"client.reload.url" : "25.97.238.130/client",
"client.fatal.error.url" : "25.97.238.130/me",
"client.connection.failed.url" : "25.97.238.130/me",
"external.variables.txt" : "{external_vars}",
"external.texts.txt" : "{external_texts}",
"productdata.load.url" : "{product_data}",
"furnidata.load.url" : "{furni_data}",
"use.sso.ticket" : "1",
"sso.ticket" : "{sso}",
"processlog.enabled" : "0",
"flash.client.url" : BaseUrl,
"flash.client.origin" : "popup"
};
var params =
{
"base" : BaseUrl + "/",
"allowScriptAccess" : "always",
"menu" : "false"
};
swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null);
</script>
</head>
<body>
<div id="client"></div>
<?php include_once ("forcevote.php");
?>
</body>
</html>
- - - Updated - - -
Does anyone see a problem
Re: Error when starting emulator
Well, there are a few flaws here.
First off, your emulator config file. You gotta change your "game.tcp.bindip=server ip" to game.tcp.bindip=127.0.0.1 (127.0.0.1) is your local ip adress.
You have to change the 25.97.238.130 to 127.0.0.1 under the MUS section aswell.
Are you sure you have any swfs? I know you said you had, but you were reffering to the client.php file which calls for the actual swf files.
Re: Error when starting emulator
Also change your game.tcp.port to 30000
and mus.tcp.port to 30001