This is like every other Habbo Imager script, except this one works in Signatures.
If you do not want to use it in your signature you can use this code:
That is /figure.php?name=HabboNameHerePHP Code:<?php
header("Content-type: image/gif");
$habbo = $_GET['name'];
$domain = 'http://www.habbo.co.uk';
$content = file_get_contents($domain . '/home/'.$habbo);
$div_start = explode('<div class="profile-figure">', $content, 2);
$div_end = explode('</div>', $div_start[1], 2);
$img = trim($div_end[0]);
$img = preg_replace('/<img alt=\"(.*?)\" src=\"(.*?)\" \/>/', '$2', $img);
$imag = $domain.$img;
$im = imagecreatefromgif($imag);
imagegif($im);
imagedestroy($im);
?>
If you are wanting to use it in your signature you can use this:
Just change line 3.PHP Code:<?php
header("Content-type: image/gif");
$habbo = "HABBO NAME HERE";
$domain = 'http://www.habbo.co.uk';
$content = file_get_contents($domain . '/home/'.$habbo);
$div_start = explode('<div class="profile-figure">', $content, 2);
$div_end = explode('</div>', $div_start[1], 2);
$img = trim($div_end[0]);
$img = preg_replace('/<img alt=\"(.*?)\" src=\"(.*?)\" \/>/', '$2', $img);
$imag = $domain.$img;
$im = imagecreatefromgif($imag);
imagegif($im);
imagedestroy($im);
?>
Obviously this needs to be uploaded or you can use my already uploaded one
http://www.tom.ijeax.com/habbo/figure/HABBONAMEHERE.php
Just change HABBONAMEHERE to your habbo name.
Example in my signature.





Reply With Quote
