DarkXIDE
Member
- Oct 3, 2011
- 72
- 10
Hello!
I've been searching and searching but at no luck finding a solution to this problem.
Everyone says something different so it's hard to get a grip
My client.php:
My external_variables.txt:
Emulator config.ini:
There is no password to my database at the moment, only during testing ofcourse.
When I load my client with this setup I get stuck at 76% without progress. I've tried changing it all around but at no luck.
I've been searching and searching but at no luck finding a solution to this problem.
Everyone says something different so it's hard to get a grip
My client.php:
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="{url}/app/tpl/skins/{skin}/images/favicon.ico" type="image/vnd.microsoft.icon"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>{hotelName} Hotel</title>
<link rel="stylesheet" href="{url}/app/tpl/skins/Mango/styles/client.css" type="text/css">
<script type="text/javascript" src="{url}/app/tpl/skins/Mango/js/swfobject.js"></script>
<script type="text/javascript">
var BaseUrl = "{url}/swfs/gordon/PRODUCTION-201701242205-837386173/";
var flashvars =
{
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "192.168.1.5",
"connection.info.port" : "30000",
"site.url" : "{url}",
"url.prefix" : "{url}",
"client.reload.url" : "{url}/disconnected",
"client.fatal.error.url" : "{url}/fatal",
"client.connection.failed.url" : "{url}/failed",
"external.variables.txt" : "{url}/swfs/external_variables.txt",
"external.texts.txt" : "{url}/swfs/external_flash_texts.txt",
"external.override.texts.txt" : "{url}/swfs/override/external_flash_override_texts.txt",
"external.override.variables.txt" : "{url}/swfs/override/external_override_variables.txt",
"external.figurepartlist.txt" : "{url}/swfs/figuredata.xml",
"productdata.load.url" : "{url}/swfs/productdata.txt",
"furnidata.load.url" : "{url}/swfs/furnidata.txt",
"use.sso.ticket" : "1",
"sso.ticket" : "{sso}",
"client.starting" : "Please wait! {hotelName} is starting up.",
"processlog.enabled" : "0",
"flash.client.url" : BaseUrl,
"client.starting.revolving" : "For science, you monster/Loading funny message... please wait./Would you like fries with that?/Follow the yellow duck./Time is just an illusion./Are we there yet?!/I like your t-shirt./Look left. Look right. Blink twice. Ta da!/It\'s not you, it\'s me./Shhh! I\'m trying to think here./Loading pixel universe.",
"flash.client.origin" : "popup"
};
var params =
{
"base" : BaseUrl + "/",
"allowScriptAccess" : "always",
"menu" : "false"
};
swfobject.embedSWF(BaseUrl + "Habbo.swf", "client", "100%", "100%", "10.0.0", "{url}/swfs/gordon/PRODUCTION-201701242205-837386173/expressInstall.swf", flashvars, params, null);
</script>
</head>
<body>
<div id="client"></div>
</body>
</html>
My external_variables.txt:
You must be registered for see links
Emulator config.ini:
Code:
## PlusEMU System Configuration File
## Must be edited for the server to work
## MySQL Configuration
db.hostname=localhost
db.port=3306
db.username=root
db.password=
db.name=habbo
## MySQL pooling setup (controls amount of connections)
db.pool.minsize=10
db.pool.maxsize=250
## Game TCP/IP Configuration
game.tcp.bindip=192.168.1.5
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=5
game.tcp.enablenagles=true
## RCON TCP/IP Configuration
rcon.tcp.bindip=192.168.1.5
rcon.tcp.port=30001
rcon.tcp.allowedaddr=localhost;127.0.0.1
## Client configuration
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300
There is no password to my database at the moment, only during testing ofcourse.
When I load my client with this setup I get stuck at 76% without progress. I've tried changing it all around but at no luck.