View Full Version : Habbo Imager Script.
Independent
06-02-2008, 03:35 PM
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
benny99
06-02-2008, 03:43 PM
HabboRing is down, anyone know where I can get a Habbo Imager script?
- HabboRing
That was when habborings cutenews was hacked. Not the site.
Forge
06-02-2008, 03:44 PM
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&q=habbo+scripts&btnG=Google+Search&meta=
http://www.google.co.uk/search?hl=en&q=habbo+imager&btnG=Search&meta=
http://www.google.co.uk/search?hl=en&q=habbo+imager+script&btnG=Search&meta=
I have the .zip file for the Habbo Imager.. PM if you want it..
RedCrisps
06-02-2008, 03:45 PM
its not down cutenews was hacked and a porn site was put on it =]
clubhabbo.net
hffm.co.uk
habbolake.com
Independent
06-02-2008, 03:51 PM
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&q=habbo+scripts&btnG=Google+Search&meta=
http://www.google.co.uk/search?hl=en&q=habbo+imager&btnG=Search&meta=
http://www.google.co.uk/search?hl=en&q=habbo+imager+script&btnG=Search&meta=
Lol, yeah I have tried google.
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 (;
RedCrisps
06-02-2008, 03:52 PM
OH HabboRing dont do that one. but i would like this if anyones got it?
Independent
06-02-2008, 03:57 PM
Hiya, this is just a basic imager script I made earlier today 'cos I was bored.
DEMO: http://imager.habbocolour.net (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/backgrounds/pinkhabbobg.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=$dir&head_direction=$hdir&gesture=$gesture&size=$size\" 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&head_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&head_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&head_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&head_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&head_direction=7&gesture=std&size=l" />
<br />
<input type="radio" name="hdir" value="7" />
</td>
From another Habbo forum, thanks I found it :)
Want to hide these adverts? Register an account for free!
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.