Sab
I love milfs.
- Jun 25, 2011
- 1,212
- 136
Im using Westyy's Plus emu edit. I came to a problem, and literally tried a dozen of help threads still nothing.
MY client loads to 100% then disconnects.
My vars are linked correctly, but the emulator doesn't pick up any connections. Anyone know what it could be?
Client.php:
When I look for errors in the browser I get a crossdomain.xml error.
MY client loads to 100% then disconnects.
My vars are linked correctly, but the emulator doesn't pick up any connections. Anyone know what it could be?
Client.php:
Code:
PHP:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>{hotelname} - Client</title>
<link rel="stylesheet" href="{url}/app/tpl/skins/{skin}/styles/client.css" type="text/css">
<link rel="shortcut icon" href="{url}/favicon.ico" type="image/vnd.microsoft.icon" />
<script type="text/javascript" src="{url}/app/tpl/skins/{skin}/js/swfobject.js"></script>
<script type="text/javascript">
var BaseUrl = "http://iplaysharp.com/swf/gordon/PRODUCTION-201709052204-426856518/";
var flashvars =
{
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "MYIP",
"client.starting" : "Hello {username}, {hotelname} is Loading",
"connection.info.port" : "30000",
"site.url" : "http://iplaysharp.com",
"url.prefix" : "http://iplaysharp.com",
"client.reload.url" : "http://iplaysharp.com/client",
"client.fatal.error.url" : "http://iplaysharp.com/disconnect",
"client.connection.failed.url" : "http://iplaysharp.com/disconnect",
"external.variables.txt" : "http://iplaysharp.com/swf/gamedata/external_variables.txt",
"external.texts.txt" : "http://iplaysharp.com/swf/gamedata/external_flash_texts.txt",
"external.figurepartlist.txt" : "http://iplaysharp.com/swf/gamedata/figuredata.xml",
"external.override.texts.txt" : "http://iplaysharp.com/swf/gamedata/external_flash_override_texts.txt",
"external.override.variables.txt" : "http://iplaysharp.com/swf/gamedata/external_override_variables.txt",
"productdata.load.url" : "http://iplaysharp.com/swf/gamedata/productdata.txt",
"furnidata.load.url" : "http://iplaysharp.com/swf/gamedata/furnidata.xml",
"use.sso.ticket" : "0",
"sso.ticket" : "{sso}",
"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.",
"processlog.enabled" : "0",
"flash.client.url" : "//iplaysharp.com/swf/gordon/PRODUCTION-201709052204-426856518/",
"flash.client.origin" : "popup",
"nux.lobbies.enabled" : "true"
};
var params =
{
"base" : BaseUrl + "/",
"allowScriptAccess" : "always",
"menu" : "false"
};
swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "http://iplaysharp.com/swf/expressInstall.swf", flashvars, params, null);
</script>
</head>
<body>
<div id="client"></div>
</body>
</html>