In need of a habbos banner!

Status
Not open for further replies.

xPr0ph3cy

New Member
Jan 4, 2013
3
0
Hey guys, I'm currently in need of a banner asap would mean alot if any of you can pull one of for me. Anyways here is what im looking for.
Requirements:
  • Must say "Smooth Hotel" somewhere.
  • Must be based around Habbo, obviously.
  • Must have some sort of area for online count.
  • Must be saved in a PNG format.
  • Anyways be creative, Thanks in advanced :)
    6
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
Needs to be gif is you want to show the users online...
 

Zodiak

recovering crack addict
Nov 18, 2011
450
411
If you want to show the users online it has to be a .php file, not a .gif :L.
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
If you want to show the users online it has to be a .php file, not a .gif :L.
Nah gif Like I did Meds Hotel's Banner. when I owned with Joshua it looks like this: Gave it to another Meds hotel Owned By Michael, then it became Eclipse.
 

Zodiak

recovering crack addict
Nov 18, 2011
450
411
I'm good friends with Micheal:p. And that banner doesn't show how many users are online? last I heard i has to be .php :S
PHP:
<?php
 
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = 'yourpassword';
$dbname = 'yourdatabase';
 
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die                      ('Error connecting to mysql');
mysql_select_db($dbname);
 
$result = mysql_query("SELECT * FROM server_status");
 
$online = "Users Online!";
 
$row = mysql_fetch_array( $result );
$image = imagecreatefrompng('banner.png');
$font_color = imagecolorallocate($image, 255, 0, 0);
imagefttext($image, 20, 0, 417, 30, $font_color, './arial.ttf', $row['users_online']);
imagefttext($image, 8, 0, 398, 45, $font_color, './arial.ttf', $online);
imagefttext($image, 20, 0, 394, 77, $font_color, './arial.ttf', $num_rows); 
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>
 
Status
Not open for further replies.

Users who are viewing this thread

Top