Page 5 of 6 FirstFirst 123456 LastLast
Results 41 to 50 of 54
  1. #41
    Join Date
    Sep 2006
    Location
    Coventry
    Posts
    1,235
    Tokens
    0

    Latest Awards:

    Default

    Any Why of putting it as ur sig on here or does it not support PHP and can u make a script that says if the user is online or offline

  2. #42
    Join Date
    Sep 2006
    Location
    Wakefield, West Yorkshire
    Posts
    162
    Tokens
    0

    Default

    1. There is a way, you need to save this to a php file

    PHP Code:
    <?php
    header
    ("Content-type: image/gif");
    $habbo "NAME HERE";
    $domain 'http://www.habbo.co.uk';
    $content file_get_contents($domain '/home/'.$habbo);
    $div_start explode('<div class="profile-figure">'$content2);
    $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);
    ?>
    and upload it, change the NAME HERE bit to your habbo name. Then treat it like an image.

    2. Check my post in the Coding section.
    Last edited by -1.; 17-11-2006 at 10:39 PM.
    Left. Or have I?

  3. #43
    Join Date
    Apr 2006
    Location
    England
    Posts
    1,159
    Tokens
    0

    Latest Awards:

    Default

    I've put several other scripts to find the Habbo Birthdate and Mission. I'm not going to say how they're done, but if you take a look at how I did the Habbo Imagaging one it's rather obvious.

    Take a look, go to www.bobblefm.co.uk and have a look at someones profile.

  4. #44
    Join Date
    Dec 2005
    Posts
    2,992
    Tokens
    1,531

    Latest Awards:

    Default

    Quote Originally Posted by Halting View Post
    I've put several other scripts to find the Habbo Birthdate and Mission. I'm not going to say how they're done, but if you take a look at how I did the Habbo Imagaging one it's rather obvious.

    Take a look, go to www.bobblefm.co.uk and have a look at someones profile.
    Sexy

    I think this will come in handy, in a way it's the next generation of staff pages! :p
    That went fast.

  5. #45
    Join Date
    Nov 2004
    Location
    Reading, UK
    Posts
    3,060
    Tokens
    1,780

    Latest Awards:

    Default

    im just getting a red x

  6. #46
    Join Date
    Sep 2006
    Location
    Wakefield, West Yorkshire
    Posts
    162
    Tokens
    0

    Default

    Which imager are you using Stitch?
    Left. Or have I?

  7. #47
    Join Date
    Nov 2004
    Location
    Reading, UK
    Posts
    3,060
    Tokens
    1,780

    Latest Awards:

    Default

    Quote Originally Posted by Thomas. View Post
    Which imager are you using Stitch?
    I'm using this code:
    PHP Code:
    <?php
    $habbo 
    $_GET['name'];
    $home file_get_contents("http://www.habbohotel.co.uk/home/".$habbo);
    if (
    eregi("http://images.habbohotel.co.uk/web/web-2.0.1_b21/images/myhabbo/profile/habbo_online_anim.gif"$home)){
    $img "http://images.habbohotel.co.uk/web/web-2.0.1_b21/images/myhabbo/profile/habbo_online.gif";
    }else{
    $img "http://images.habbohotel.co.uk/web/web-2.0.1_b21/images/myhabbo/profile/habbo_offline.gif";
    }
    header("Content-type: image/gif");
    $im imagecreatefromgif($img);
    imagegif($im);
    imagedestroy($im);
    ?>
    and named it habbo.php

  8. #48
    Join Date
    Sep 2006
    Location
    Wakefield, West Yorkshire
    Posts
    162
    Tokens
    0

    Default

    Are you going to use it for a signature or something else?
    Last edited by -1.; 18-11-2006 at 08:08 PM.
    Left. Or have I?

  9. #49
    Join Date
    Nov 2004
    Location
    Reading, UK
    Posts
    3,060
    Tokens
    1,780

    Latest Awards:

    Default

    something else

  10. #50
    Join Date
    Sep 2006
    Location
    Wakefield, West Yorkshire
    Posts
    162
    Tokens
    0

    Default

    1. Are you using a PHP Enabled Host
    2. Are you putting: habbo.php?name=RFC-Dude
    or whatever?
    Last edited by -1.; 18-11-2006 at 08:35 PM.
    Left. Or have I?

Page 5 of 6 FirstFirst 123456 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •