How to make an own habbo-imaging?

Ceto

Hello, I'm Ceto.
Apr 24, 2019
15
8
Does anyone know how to make an own habbo-imaging?
Like:
Or does anyone have a script for it?
 

Higoka

Active Member
Dec 16, 2018
174
74
here is a little script:
PHP:
<?php

$query = parse_url($_SERVER['REQUEST_URI'], PHP_URL_QUERY);
$image = file_get_contents("https://www.habbo.com/habbo-imaging/avatarimage?{$query}", false, stream_context_create([
    'http' => [
        'header' => 'user-agent:habbo-sucks',
    ],
    'ssl' => [
        'verify_peer' => false,
        'verify_peer_name' => false,
    ],
]));

header('content-type: image/png');
exit($image);

it just redirects the request to habbos imager
 

Pipitt05000

Active Member
May 18, 2014
37
101
Oh okay ! I though you talking about a curl redirection to Habbo ! :D

But I don't think your system can be coded in 15 minutes Bro !
Post automatically merged:

@Ceto you can made it easily in PHP ! :D

 
Last edited:

Damien

Don't need glasses if you can C#
Feb 26, 2012
426
642
It's not hard to make one it takes, like 15 mins but you mean like this?

You're using the Habox Labs one. Who you trying to fool? :lol:

One of the key issues with the Habox one is the layering for one of the rotations which is also present in yours:
avatarimage.php


If it's really easy and takes 15mins, spend 15mins to fix that bug and then I'll withdraw my statement.
 

Julianvs

Discord: TheDevJulian#0001 && #JusticeForCalensi
Aug 5, 2020
42
17
I'm also using the Habox's labs one ( ) but I can't get it to work. There are no errors or something, he just gives a black page.
 

Damien

Don't need glasses if you can C#
Feb 26, 2012
426
642
Wasnt going to make another post on this thread since @Rebel 'S original post was made months ago (which I didn't realise due to the thread being bumped).

Personally to me it looked like you was implying that creating your own imager from scratch was easy. Some context wouldnt of hurt since I wasnt the only one who thought this.

All drama aside if people still use the habbox one and are looking for a fix, I can look into it when I get some spare time.
 

Users who are viewing this thread

Top