ButtLord420
Please delete my devbest account.
- Dec 11, 2010
- 463
- 32
<?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="{url}/app/tpl/skins/Custom-Habbo/styles/client.css" type="text/css">
<link rel="shortcut icon" href="{url}/favicon.ico" type="image/vnd.microsoft.icon" /><script
<script type="text/javascript" src="{url}/app/tpl/skins/Custom-Habbo/js/swfobject.js"></script>
<script type="text/javascript">
var BaseUrl = "{swf_folder}";
var flashvars =
{
"client.starting" : "Please wait {username}, {hotelName} is starting up!",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "{server_ip}",
"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",
};
params["wmode"] = "transparent";
swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null);
</script>
<style>
.menu {
position:fixed;
bottom:45px;
left:15px;
z-index: 1005 !important;
color:#FFF;
cursor:pointer;
}
.button {
float:left;
padding:3px;
margin-right:3px;
}
#addedcontent {
position:fixed;
top:5px;
left:300px;
max-width:400px;
min-width:150px;
z-index: 1006 !important;
}
#b-header {
cursor:default;
padding:5px;
text-align:center;
background-color:#568BA4;
font-size:13px;
font-weight:bold;
-moz-border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 0px 0px;
border:2px solid #66A2BE;
border-bottom: 1px solid #000;
height:19px;
line-height:19px;
}
#b-content {
padding:5px;
background-color:#E9E9E1;
-moz-border-radius: 0px 0px 5px 5px;
border-radius: 0px 0px 5px 5px;
color:#000;
}
#close-button {
position:absolute;
right:5px;
top:7px;
width:19px;
height:20px;
background-image:url('{url}/app/tpl/skins/{skin}/images/close.png');
background-repeat:no-repeat;
cursor:pointer;
background-position:right top;
}
#close-button:hover {
background-repeat:no-repeat;
background-position:left top;
}
#font-face {
font-family: Ubuntu-C;
src: url('{url}/Ubuntu-C.ttf');
}
#body {
font-size: 12px;
font-family:Ubuntu-C;
}
</style>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script>
$(document).ready(function() { $("#addedcontent").draggable(); $("#addedcontent").hide(); }); function loadpage(page,title) { $("#b-header").html(title + '<div id="close-button" onclick="$(\'#addedcontent\').hide();"></div>'); $('#b-content').load("addedcontent/"+page+".php", function() { $("#addedcontent").show(); }); }
</script>
</head>
<body>
<script>
var params["wmode"] = "transparent";
</script>
<div id="client"></div>
</body>
</html>
I'm having the same issue but he didn't post it, and I need help, so I'll post my client.php
Code:<?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="{url}/app/tpl/skins/Custom-Habbo/styles/client.css" type="text/css"> <link rel="shortcut icon" href="{url}/favicon.ico" type="image/vnd.microsoft.icon" /><script <script type="text/javascript" src="{url}/app/tpl/skins/Custom-Habbo/js/swfobject.js"></script> <script type="text/javascript"> var BaseUrl = "{swf_folder}"; var flashvars = { "client.starting" : "Please wait {username}, {hotelName} is starting up!", "client.allow.cross.domain" : "1", "client.notify.cross.domain" : "0", "connection.info.host" : "{server_ip}", "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", }; params["wmode"] = "transparent"; swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null); </script> <style> .menu { position:fixed; bottom:45px; left:15px; z-index: 1005 !important; color:#FFF; cursor:pointer; } .button { float:left; padding:3px; margin-right:3px; } #addedcontent { position:fixed; top:5px; left:300px; max-width:400px; min-width:150px; z-index: 1006 !important; } #b-header { cursor:default; padding:5px; text-align:center; background-color:#568BA4; font-size:13px; font-weight:bold; -moz-border-radius: 5px 5px 0px 0px; border-radius: 5px 5px 0px 0px; border:2px solid #66A2BE; border-bottom: 1px solid #000; height:19px; line-height:19px; } #b-content { padding:5px; background-color:#E9E9E1; -moz-border-radius: 0px 0px 5px 5px; border-radius: 0px 0px 5px 5px; color:#000; } #close-button { position:absolute; right:5px; top:7px; width:19px; height:20px; background-image:url('{url}/app/tpl/skins/{skin}/images/close.png'); background-repeat:no-repeat; cursor:pointer; background-position:right top; } #close-button:hover { background-repeat:no-repeat; background-position:left top; } #font-face { font-family: Ubuntu-C; src: url('{url}/Ubuntu-C.ttf'); } #body { font-size: 12px; font-family:Ubuntu-C; } </style> <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> <script> $(document).ready(function() { $("#addedcontent").draggable(); $("#addedcontent").hide(); }); function loadpage(page,title) { $("#b-header").html(title + '<div id="close-button" onclick="$(\'#addedcontent\').hide();"></div>'); $('#b-content').load("addedcontent/"+page+".php", function() { $("#addedcontent").show(); }); } </script> </head> <body> <script> var params["wmode"] = "transparent"; </script> <div id="client"></div> </body> </html>
sure,can you help me?
as much as you beilieve its right one little mistake makes a different to prove myself, or disprove myself try thisit is correct, checked ALL the urls. And it does connect, just bounces an error and d/c
Maybe it's an error with the actual swfs...?
I have got the right one.
Use another swf and dont act like you know it all and be so rude to people who are trying help
You realize this thread is from May 2013? Pretty much a year ago lmfao.Okay Packet 4000 is the packet that tells you the release your on for example RELEASE63-2343-23323-434345 (random #) Packet 2996 is the connection packet that allows the connection I believe