
Originally Posted by
Meller Plus
For that it would need a generator and a gif saving system, If you can get that and I'll fix it. Else I can't Sorry.
Very simple script for you to get Figure Data and save the .gif :
PHP Code:
<?php
function getHead($figure)
{
return file_get_contents("https://www.habbo.com/habbo-imaging/avatarimage?figure={$figure}&action=std&gesture=std&direction=2&head_direction=2&size=n&img_format=gif&headonly=1");
}
function saveFigure($fileName, $content)
{
file_put_contents($fileName, $content);
}
$figure = "hd-180-1.ch-255-66.lg-280-110.sh-305-62.ha-1012-110.hr-828-61";
saveFigure(md5($figure) . ".gif", getHead($figure));
?>
Yes, it's hardcoded, don't bully me
You can set the figure, so it will go to habbo.com, fetch the image, save in a gif. So you basically needs to do is a fetch to current user style, and use it to fetch the image. No mystery.
Thanks by helping the community with your services,
Lucca