Help me please..

Tony Wolf

Member
Oct 6, 2011
321
20
You must be registered for see images attach
I need help with global.php, and I want help with the images that are fucked!
 

bodge

ayy lmao
Oct 31, 2011
406
54
You see i get that fail! "????" Help me please

Edit

I see you mean on the navi.
The "????" Is because you don't have those characters on your computer or your browser doesn't have them installed (primary reason: it isn't your language)

Or the HTML character map is invalid and shows that. e.g © is the copyright symbol.


The avatar?
Go to your me.php file. Search "habbo.com" and replace it with "habbo.fr"

Or you can upload your own imaging script
PHP:
<?php
  $figure = $_GET['figure'];
    $action = $_GET['action'];
    $direction = $_GET['direction'];
    $head_direction = $_GET['head_direction'];
    $gesture = $_GET['gesture'];
    $size = $_GET['size'];
    $imgFile = "$figure$action$direction$head_direction$gesture$size";
    $imagesPath =  $imgFile;

    if(!file_exists(($imagesPath))) {
    
        $otherSiteUrl  = "http://habbo.com/habbo-imaging/avatarimage?figure=$figure&action=$action&direction=$direction&head_direction=$head_direction&gesture=$gesture&size=$size";
        file_put_contents($imagesPath, file_get_contents($otherSiteUrl));
        }
  
header("Content-Type: image/gif");
        readfile($imagesPath);
      
    ?>
(Credits to imstr for that code)
 

Tony Wolf

Member
Oct 6, 2011
321
20
Edit

I see you mean on the navi.
The "????" Is because you don't have those characters on your computer or your browser doesn't have them installed (primary reason: it isn't your language)

Or the HTML character map is invalid and shows that. e.g &copy; is the copyright symbol.


The avatar?
Go to your me.php file. Search "habbo.com" and replace it with "habbo.fr"

Or you can upload your own imaging script
PHP:
<?php
  $figure = $_GET['figure'];
    $action = $_GET['action'];
    $direction = $_GET['direction'];
    $head_direction = $_GET['head_direction'];
    $gesture = $_GET['gesture'];
    $size = $_GET['size'];
    $imgFile = "$figure$action$direction$head_direction$gesture$size";
    $imagesPath =  $imgFile;

    if(!file_exists(($imagesPath))) {
   
        $otherSiteUrl  = "http://habbo.com/habbo-imaging/avatarimage?figure=$figure&action=$action&direction=$direction&head_direction=$head_direction&gesture=$gesture&size=$size";
        file_put_contents($imagesPath, file_get_contents($otherSiteUrl));
        }
 
header("Content-Type: image/gif");
        readfile($imagesPath);
     
    ?>
(Credits to imstr for that code)

Thank you very match for avatar!


But where can I download the symbols then? I want to change the language of the hotel! I hope that you help me with it
 

bodge

ayy lmao
Oct 31, 2011
406
54
Thank you very match for avatar!


But where can I download the symbols then? I want to change the language of the hotel! I hope that you help me with it

I don't know what language you want your hotel in but here's where you can find some of the codes:
 

Users who are viewing this thread

Top