Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Results 1 to 8 of 8
  1. #1
    Join Date
    Dec 2007
    Posts
    1,683
    Tokens
    0

    Latest Awards:

    Default Habbo Imager Script.

    HabboRing is down, anyone know where I can get a Habbo Imager script?

    Back soon. Hmm... who's sadder, a person that runs a website to help people trying to create there own fansite or a person that visits Habbo websites, tries to hack it and writes messages about how bad Habbo is? Get a life.
    - HabboRing

  2. #2
    Join Date
    Oct 2007
    Location
    Gloucester
    Posts
    44
    Tokens
    0

    Default

    Quote Originally Posted by Xedon View Post
    HabboRing is down, anyone know where I can get a Habbo Imager script?

    - HabboRing

    That was when habborings cutenews was hacked. Not the site.
    The Time Has Come...

  3. #3
    Join Date
    Nov 2007
    Posts
    753
    Tokens
    0

    Default

    Sorry if i seem arrogant here (I dont mean to be) but have you tried google?

    Some searches (May help!)
    http://www.google.co.uk/search?hl=en...e+Search&meta=

    http://www.google.co.uk/search?hl=en...G=Search&meta=

    http://www.google.co.uk/search?hl=en...G=Search&meta=
    Publishing free website designs, watch this space!
    Total number of designs published: 0
    Current work in progress: Landscape Design


  4. #4
    Join Date
    Jan 2008
    Posts
    3,711
    Tokens
    100

    Latest Awards:

    Default

    I have the .zip file for the Habbo Imager.. PM if you want it..

  5. #5
    RedCrisps Guest

    Default

    its not down cutenews was hacked and a porn site was put on it =]

    clubhabbo.net
    hffm.co.uk
    habbolake.com

  6. #6
    Join Date
    Dec 2007
    Posts
    1,683
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Forge View Post
    Lol, yeah I have tried google.

    Quote Originally Posted by BigMuscle View Post
    I have the .zip file for the Habbo Imager.. PM if you want it..
    Nah it's alright

    I'm looking for a specific imager, the one made by Devicals/Mofits, whatever his habbo name is, HabboLake use it, it's pretty neat (;

  7. #7
    RedCrisps Guest

    Default

    OH HabboRing dont do that one. but i would like this if anyones got it?

  8. #8
    Join Date
    Dec 2007
    Posts
    1,683
    Tokens
    0

    Latest Awards:

    Default

    Hiya, this is just a basic imager script I made earlier today 'cos I was bored.

    DEMO: http://imager.habbocolour.net

    imager.php:
    PHP Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Habbo Imager (created by Devicals)</title>
    <style type="text/css">
    body {
    background-image: url(http://www.clubhabbo.net/images/back...khabbobg.gif);
    }
    body, input, select {
    font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    }
    #container {
    width: 520px;
    background-color: #FFFFFF;
    border-color: #000000;
    border-width: 1px;
    border-style: dashed;
    }
    </style>
    </head>

    <body>
    <center>
    <div id="container">
    <?php
    if($_POST['submit'])
    {
    $name = stripslashes($_POST['name']);
    $name = htmlspecialchars($_POST['name']);
    $action = $_POST['action'];
    $gesture = $_POST['gesture'];
    $dir = $_POST['dir'];
    $hdir = $_POST['hdir'];
    $size = $_POST['size'];
    echo
    "<img src=\"http://www.habbo.co.uk/habbo-imaging/avatarimage?user=$name&action=$action&direction=$d ir&head_direction=$hdir&gesture=$gesture&size=$siz e\" title=\"$name\" alt=\"$name\" />";
    }
    ?>
    <form action="index.php" method="post">
    <strong>Habbo Name:</strong><br /><input type="text" name="name" />
    <br /><br />
    <strong>Posture:</strong><br />
    <select name="action">
    <option value="std">Normal</option>
    <option value="sit">Sitting</option>
    <option value="wlk">Walking</option>
    <option value="wav">Wave</option>
    </select>
    <br /><br />
    <strong>Gesture:</strong><br />
    <select name="gesture">
    <option value="std">Normal</option>
    <option value="sml">Smiling</option>
    <option value="agr">Angry</option>
    <option value="sad">Upset</option>
    </select>
    <br /><br />
    <strong>Size:</strong><br />
    <select name="size">
    <option value="l">Large</option>
    <option value="s">Small</option>
    </select>
    <br /><br />
    <strong>Body Position:</strong><br />
    <table width="100%" cellpadding="0" cellspacing="0">
    <tr>
    <?php
    for($i=1;$i<=8;$i++)
    {
    ?>
    <td width="20%" align="center">
    <img src="http://www.habbo.co.uk/habbo-imaging/avatarimage?user=Connetix&action=std&direction=<? echo $i; ?>&head_direction=<? echo $i; ?>&gesture=std&size=l" />
    <br />
    <input type="radio" name="dir" value="<? echo $i; ?>" />
    </td>
    <?php
    if($i==4) { echo "</tr>\n<tr>\n"; }
    }
    ?>
    </tr>
    </table>
    <br /><br />
    <strong>Head Direction:</strong><br />
    <table width="100%" cellpadding="0" cellspacing="0">
    <tr>
    <? include("headdir.php"); ?>
    </tr>
    </table>
    <br /><br />
    <input type="submit" name="submit" value="Image!" />
    </form>
    </div>
    </center>
    </body>
    </html>

    headdir.php:
    PHP Code:
    <td width="20%" align="center">
    <
    img src="http://www.habbo.co.uk/habbo-imaging/avatarimage?user=Connetix&action=std&direction=3&h ead_direction=1&gesture=std&size=l" />
    <
    br />
    <
    input type="radio" name="hdir" value="1" />
    </
    td>
    <
    td width="20%" align="center">
    <
    img src="http://www.habbo.co.uk/habbo-imaging/avatarimage?user=Connetix&action=std&direction=3&h ead_direction=2&gesture=std&size=l" />
    <
    br />
    <
    input type="radio" name="hdir" value="2" />
    </
    td>
    <
    td width="20%" align="center">
    <
    img src="http://www.habbo.co.uk/habbo-imaging/avatarimage?user=Connetix&action=std&direction=3&h ead_direction=3&gesture=std&size=l" />
    <
    br />
    <
    input type="radio" name="hdir" value="3" />
    </
    td>
    <
    td width="20%" align="center">
    <
    img src="http://www.habbo.co.uk/habbo-imaging/avatarimage?user=Connetix&action=std&direction=3&h ead_direction=6&gesture=std&size=l" />
    <
    br />
    <
    input type="radio" name="hdir" value="6" />
    </
    td>
    </
    tr>
    <
    tr>
    <
    td colspan="4" align="center">
    <
    img src="http://www.habbo.co.uk/habbo-imaging/avatarimage?user=Connetix&action=std&direction=3&h ead_direction=7&gesture=std&size=l" />
    <
    br />
    <
    input type="radio" name="hdir" value="7" />
    </
    td>
    From another Habbo forum, thanks I found it

Posting Permissions

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