Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

White Client r64b

Newbie Spellweaver
Joined
Feb 19, 2011
Messages
58
Reaction score
0
Location
UK
hey Ragezone me again after taking the client page apart and trying to get it working i stumpled upon the page that is most common the white client page here is my client.php code for it
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/{skin}/styles/client.css" type="text/css">
        
        <script type="text/javascript" src="{url}/app/tpl/skins/{skin}/js/swfobject.js"></script>
        <script type="text/javascript">
            var BaseUrl = "http://hothhotel.servebeer.com";
            var flashvars =
            {
                "client.starting" : "Please wait, {hotelname} loading",
				"hotelview.banner.url" : "http://hothhotel.servebeer.com/game/rs4.php",
                "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" : "http://hothhotel.servebeer.com/client", 
                "client.fatal.error.url" : "http://hothhotel.servebeer.com/me", 
                "client.connection.failed.url" : "http://hothhotel.servebeer.com/me", 
                "external.variables.txt" : "http://hothhotel.servebeer.com/game/external_variables.txt", 
                "external.texts.txt" : "http://hothotel.servebeer.com/game/external_flash_texts.txt", 
                "productdata.load.url" : "http://hothhotel.servebeer.com/game/productdata.txt", 
                "furnidata.load.url" : "http://hothhotel.servebeer.com/game/furnidata_xml.xml", 
                "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", "http://hothhotel.servebeer.com/game/expressInstall.swf", flashvars, params, null);
        </script>
    </head>
    
    <body>
    
        <div id="client"></div>
    
    </body>
</html>
wondering if anyone help or The General can help
 
Back