PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

Status
Not open for further replies.

pimp

no1 retard
Jan 24, 2016
110
77
Nice release I assume all the community will probably end up using it. Shame a 12 year old idiot 'hash' released someone else's hard work in advance.
 

Fhraiks

New Member
Feb 1, 2016
13
1
Great release, i have been using it for about a week now and it is a great server, haven't got a single problem so far.
Thank you. :)
 

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
What would be the appropriate CMS for this?
I think Boon uses a HEAVY edit of RevCMS. If you message me I can send you a patched version of RevCMS, you'll have to find a skin though.

I've got a pretty neat CMS released here, you might need to tweak a few files though.
 
Last edited:

Jaden

not so active
Aug 24, 2014
886
263
I think Boon uses a HEAVY edit of RevCMS. If you message me I can send you a patched version of RevCMS, you'll have to find a skin though.

I've got a pretty neat CMS released here, you might need to tweak a few files though.
Yeah, "heavy" ... one can only hope.
 

JynX

Posting Freak
Feb 6, 2016
710
438
Hello guys, I've tried editing this version of plus emulator on my desktop using Visual Studio, but when I save my changes they don't take effect in-game, but are still saved.. Any suggestions?

Thanks, and pardon my no knowledge of emulator development as it's not my strong suit.
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,194
3,901
Hello guys, I've tried editing this version of plus emulator on my desktop using Visual Studio, but when I save my changes they don't take effect in-game, but are still saved.. Any suggestions?

Thanks, and pardon my no knowledge of emulator development as it's not my strong suit.

Are you just hitting the save button/CTRL & S or are you hitting debug? Use the f5 key to debug the solution.
 

JynX

Posting Freak
Feb 6, 2016
710
438
I was just hitting CTRL & S, gonna assume that's my issue init? You can tell I know nothing about emulators.
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,194
3,901
I was just hitting CTRL & S, gonna assume that's my issue init? You can tell I know nothing about emulators.

Yup, you need to debug the solution you can do this quickly by hitting F5. Or see "Debug" in the top bar and hit start debugging. Once done copy the debug folder (assuming this is on your PC and not your server), to your server and that should be it.
 

Jaden

not so active
Aug 24, 2014
886
263
I was just hitting CTRL & S, gonna assume that's my issue init? You can tell I know nothing about emulators.
I'm going to assume that you just opened a .cs file in Visual Studio so debugging would not work until you've gone through these steps:

Open your VS solution file by double clicking it in your Windows Explorer like so:


Then wait for Visual Studio to be opened and proceed to clicking on the "Start" or "Debug" button found here:
 

ItsMeRomian

Member
Oct 3, 2015
190
22
I'm getting a black screen. I'm aware that this is an error when the client cant load the swf's, but i've never set up an hotel with an gordon folder. is this correct?
This is my config.php (ip blanked out)
Code:
$_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/919'; //Web_Build

$_CONFIG['hotel']['external_vars'] = 'http://MyIp/swfs/gamedata/external_variables.txt'; //URL to your external vars

$_CONFIG['hotel']['external_texts'] = 'http://MyIp/swfs/gamedata/external_flash_texts.txt'; //URL to your external texts

$_CONFIG['hotel']['product_data'] = 'http://MyIp/swfs/gamedata/productdata.txt'; //URL to your productdata

$_CONFIG['hotel']['furni_data'] = 'http://MyIp/swfs/gamedata/furnidata.xml'; //URL to your furnidata

$_CONFIG['hotel']['swfs_folder'] = 'http://MyIp/swfs/gordon/PRODUCTION-201601012205-226667486'; //URL to your swfs folder(does not end with a '/')
And this is my client.php
Code:
<!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/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" : "{username} is now loading {hotelName}",
                "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"             
            };
            swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null);
        </script>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
         
    var id = 48;
         
    $(document).ready(function(){
          $.getJSON("http://*****.com/index.php?page=vote", { id: id, hasVoted: 'unknown' }, function(data) {
              if(data == 2) {
                    window.location.replace("http://*****.com/index.php?page=vote&id=" + id);
              }
          });
    });
         
</script>
    </head>
 
    <body>
        <div id="client"></div>
 
    </body>
</html>
 
Oct 11, 2014
1,071
256
@ItsMeRomian try this client.php
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://HOTELLINK/game/gordon/PRODUCTION-201601012205-226667486/";
            var flashvars =
            {
                "client.starting" : "Even geduld, HOTELNAAM is aan het laden...",
                "client.allow.cross.domain" : "1",
                "client.notify.cross.domain" : "0",
                "connection.info.host" : "IP OR SOMETHING",
                "connection.info.port" : "30000",
                "site.url" : "http://HOTELLINK",
                "url.prefix" : "http://HOTELLINK",
                "client.reload.url" : "http://HOTELLINK/client",
                "client.fatal.error.url" : "http://HOTELLINK/client",
                "client.connection.failed.url" : "http://HOTELLINK/client",
                "external.variables.txt" : "http://HOTELLINK/game/gamedata/external_variables.txt",
                "external.texts.txt" : "http://HOTELLINK/game/gamedata/external_flash_texts.txt",
                "external.figurepartlist.txt" : "http://HOTELLINK/game/gamedata/figuredata.xml",
                "external.override.texts.txt" : "http://HOTELLINK/game/gamedata/override/external_flash_override_texts.txt",
                "external.override.variables.txt" : "http://HOTELLINK/game/gamedata/override/external_override_variables.txt",
                "productdata.load.url" : "http://HOTELLINK/game/gamedata/productdata.xml",
                "furnidata.load.url" : "http://HOTELLINK/game/gamedata/furnidata.xml",
                "use.sso.ticket" : "1",
                "sso.ticket" : "{sso}",
                "processlog.enabled" : "0",
                "flash.client.url" : "http://HOTELLINK/game/gordon/PRODUCTION-201601012205-226667486/",
                "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://HOTELLINK/game/expressInstall.swf",                                                                                  flashvars, params, null);
        </script>
      




    </head>
<body>
    <div id="client"></div>
</body>
</html>
Note : you may need to change the swf into the correct directory such as "swf/gamedata"
 

JynX

Posting Freak
Feb 6, 2016
710
438
Hey bud let's teamview this is an easy fix and I can handle this for you either PM me or skype me at: JakeRetros123
 

ItsMeRomian

Member
Oct 3, 2015
190
22
@ItsMeRomian try this client.php
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://HOTELLINK/game/gordon/PRODUCTION-201601012205-226667486/";
            var flashvars =
            {
                "client.starting" : "Even geduld, HOTELNAAM is aan het laden...",
                "client.allow.cross.domain" : "1",
                "client.notify.cross.domain" : "0",
                "connection.info.host" : "IP OR SOMETHING",
                "connection.info.port" : "30000",
                "site.url" : "http://HOTELLINK",
                "url.prefix" : "http://HOTELLINK",
                "client.reload.url" : "http://HOTELLINK/client",
                "client.fatal.error.url" : "http://HOTELLINK/client",
                "client.connection.failed.url" : "http://HOTELLINK/client",
                "external.variables.txt" : "http://HOTELLINK/game/gamedata/external_variables.txt",
                "external.texts.txt" : "http://HOTELLINK/game/gamedata/external_flash_texts.txt",
                "external.figurepartlist.txt" : "http://HOTELLINK/game/gamedata/figuredata.xml",
                "external.override.texts.txt" : "http://HOTELLINK/game/gamedata/override/external_flash_override_texts.txt",
                "external.override.variables.txt" : "http://HOTELLINK/game/gamedata/override/external_override_variables.txt",
                "productdata.load.url" : "http://HOTELLINK/game/gamedata/productdata.xml",
                "furnidata.load.url" : "http://HOTELLINK/game/gamedata/furnidata.xml",
                "use.sso.ticket" : "1",
                "sso.ticket" : "{sso}",
                "processlog.enabled" : "0",
                "flash.client.url" : "http://HOTELLINK/game/gordon/PRODUCTION-201601012205-226667486/",
                "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://HOTELLINK/game/expressInstall.swf",                                                                                  flashvars, params, null);
        </script>
    




    </head>
<body>
    <div id="client"></div>
</body>
</html>
Note : you may need to change the swf into the correct directory such as "swf/gamedata"
Getting a white screen. Pretty sure i've modified everything to my setup.
@Legit, I've contaced you on skype.
 

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
This pack contains my client.php file (update the required fields where it says boom-hotel.com)

In the SWF pack it includes additional:-
Latest production PRODUCTION-201604132204-637539863 to date 14-04-2016
All the latest clothing which includes the figuredata and figuremap (will need to add into catalogue)
All of the latest badges
The new hotel view
All of the latest catalogue icons

You'll also need to fix group badges as I don't think I fixed them in this pack!!!

Just edit the variables for override and normal, and edit the variables php to your data.
Replace boom-hotel.com/swfs with yourdomainname.domain/swfs

It all works fine as I've used it before, you might want to rename Habboon or Habbo to your hotel name though.

Download .
 
Last edited:

ItsMeRomian

Member
Oct 3, 2015
190
22
This pack contains my client.php file (update the required fields where it says boom-hotel.com)

In the SWF pack it includes additional:-
Latest production PRODUCTION-201604132204-637539863 to date 14-04-2016
All the latest clothing which includes the figuredata and figuremap (will need to add into catalogue)
All of the latest badges
The new hotel view
All of the latest catalogue icons

You'll also need to fix group badges as I don't think I fixed them in this pack!!!

Just edit the variables for override and normal, and edit the variables php to your data.
Replace boom-hotel.com/swfs with yourdomainname.domain/swfs

It all works fine as I've used it before, you might want to rename Habboon or Habbo to your hotel name though.

Download .
Thank you so much! Right now I can see my connection but it keeps loading. The emulator says
>> Connection Dropped [0] from [xxx.xxx.xx.xx]
>> Connection [0] from [xxx.xxx.xx.xx]
>> Connection Dropped [0] from [xxx.xxx.xx.xx]
>> Connection [0] from [xxx.xxx.xx.xx]
but it keeps loading endlessly.
 
Status
Not open for further replies.

Users who are viewing this thread

Top