Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Official Closed Beta-Testing for Renewed Web

Joined
Aug 10, 2011
Messages
7,399
Reaction score
3,309
They have protection using some kind of access tokens (very strange hm how to bypass? ;) )

Press f12 -> elements and copy that.

Then for the images you have to go to the resources folder and right click them and save those manually.

If anyone with beta access that doesn't know how to save, contact me by PM and I'll help you out.
 
Joined
May 8, 2010
Messages
1,902
Reaction score
669
Press f12 -> elements and copy that.

Then for the images you have to go to the resources folder and right click them and save those manually.

If anyone with beta access that doesn't know how to save, contact me by PM and I'll help you out.
Chromecacheview, keep it in the folder structure. Saves time copying from resources one by one :)
 
Joined
Apr 27, 2008
Messages
446
Reaction score
168
Even though they might use JS or whatever, its still HTML in the browser and that can be saved.
Code:
<!DOCTYPE html><html ng-app=app>


<head>
    <meta charset=utf-8>
    <meta http-equiv=X-UA-Compatible content="IE=edge">
    <title head-title>Habbo</title>
    <meta name=description head-content=DESCRIPTION>
    <meta name=viewport content="width=device-width,initial-scale=1">
    <meta name=revision content=82cb490>
    <link rel="shortcut icon" href=/assets/images/favicon.ico>
    <script>
        ! function() {
            var e = document.createElement("link"),
                t = document.getElementsByTagName("script")[0];
            "http:" !== window.location.protocol && "https:" !== window.location.protocol && (e.href = "http:"), e.href += "//fonts.googleapis.com/css?family=Ubuntu:regular,bold|Ubuntu+Condensed:lighter,regular,bold", e.rel = "stylesheet", e.type = "text/css", t.parentNode.insertBefore(e, t)
        }();
    </script>
    <script>
        window.onerror = function(e, n, r, o, s) {
            var a = s && s.message || e,
                i = [n, r, o].join(":");
            ga("send", "event", "js-error", a, i)
        };
    </script>
    <link rel=stylesheet href=/app.css>
</head>


<body hotel-disable-scrollbars>
    <notifier></notifier>
    <spinner></spinner>
    <section class=content>
        <ng-view autoscroll></ng-view>
        <div class=footer__push></div>
    </section>
    <habbo-footer></habbo-footer>
    <require-session>
        <hotel></hotel>
    </require-session>
    <script src=/vendor.js></script>
    <script src=/scripts.js></script>
</body>


</html>
huh?
 
Joined
Jun 23, 2010
Messages
2,324
Reaction score
2,195
Code:
<!DOCTYPE html><html ng-app=app>


<head>
    <meta charset=utf-8>
    <meta http-equiv=X-UA-Compatible content="IE=edge">
    <title head-title>Habbo</title>
    <meta name=description head-content=DESCRIPTION>
    <meta name=viewport content="width=device-width,initial-scale=1">
    <meta name=revision content=82cb490>
    <link rel="shortcut icon" href=/assets/images/favicon.ico>
    <script>
        ! function() {
            var e = document.createElement("link"),
                t = document.getElementsByTagName("script")[0];
            "http:" !== window.location.protocol && "https:" !== window.location.protocol && (e.href = "http:"), e.href += "//fonts.googleapis.com/css?family=Ubuntu:regular,bold|Ubuntu+Condensed:lighter,regular,bold", e.rel = "stylesheet", e.type = "text/css", t.parentNode.insertBefore(e, t)
        }();
    </script>
    <script>
        window.onerror = function(e, n, r, o, s) {
            var a = s && s.message || e,
                i = [n, r, o].join(":");
            ga("send", "event", "js-error", a, i)
        };
    </script>
    <link rel=stylesheet href=/app.css>
</head>


<body hotel-disable-scrollbars>
    <notifier></notifier>
    <spinner></spinner>
    <section class=content>
        <ng-view autoscroll></ng-view>
        <div class=footer__push></div>
    </section>
    <habbo-footer></habbo-footer>
    <require-session>
        <hotel></hotel>
    </require-session>
    <script src=/vendor.js></script>
    <script src=/scripts.js></script>
</body>


</html>
huh?

HTML5 allows you to have custom elements. I guess scripts or vendor has methods to register those tags. Also someone noticed websockets? Mabye the websocket server provides real time content? I'm just guessing tbh ;P
 
Banned
Banned
Joined
Aug 25, 2009
Messages
431
Reaction score
190
Anyone able to capture the responses from:




etc. ?

Got most of this working now. Just need to see some sample responses.

EDIT: Done :)
 
Last edited:
☮TAKU????
Loyal Member
Joined
Nov 16, 2009
Messages
866
Reaction score
580
If someone could share me access to an account with beta access i'll be starting a new cms development right away.. (I can pay)
 
Back
Top