Joshie
WebHost Founder
- May 29, 2015
- 143
- 20
Good evening,
So it turns out I have not found a solution to my problems.
before I give you the code to my client.php, config is all setup correctly, including the variables.. I've double checked everything and I have no clue.
It loads to 50% and reloads to the /me page
So it turns out I have not found a solution to my problems.
before I give you the code to my client.php, config is all setup correctly, including the variables.. I've double checked everything and I have no clue.
It loads to 50% and reloads to the /me page
Code:
<link rel="stylesheet" href="{url}/app/tpl/skins/habbo/styles/client.css" type="text/css">
<script type="text/javascript" src="{url}/app/tpl/skins/habbo/js/swfobject.js"></script>
<script type="text/javascript">
var BaseUrl = "{swf_folder}";
var flashvars =
{
"client.starting" : "Please wait, {hotelName} is loading",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "{ip hidden}",
"connection.info.port" : "30000",
"site.url" : "{url}",
"url.prefix" : "{url}",
"client.reload.url" : "{url}/client",
"client.fatal.error.url" : "{url}/me",
"client.connection.failed.url" : "{url}/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>