[TUT] Create your own default figure!

ItsMeRomian

Member
Oct 3, 2015
190
22
Hello! I'm going to show you how to modify the standard figure of your habbo.
First go to page. It will look like this:
4jJQh3o.png

Create your character to your liking. If you dont give your users VIP, dont use vip items.
When you are done copy the figure code out of the Image URL.
OgA2Qs8.png

your code will look somthing like this
Code:
http://labs.habox.org/avatarimage.php?figure=hd-180-2.hr-828-31.ea-3196-62.ch-255-1415.lg-3216-110.sh-305-62&action=std&gesture=std&direction=2&head_direction=2&size=n&img_format=png
Stipped it will look like this
Code:
hd-180-2.hr-828-31.ea-3196-62.ch-255-1415.lg-3216-110.sh-305-62
Put that code in your config.php file
64rSOZ7.png

Thanks for reading, I've you have any problems I'll be glad to help you.
 

LeChris

github.com/habbo-hotel
Sep 30, 2013
2,744
1,326
I prefer to do with this with leaderCode

Code:
<leader>

<api habbo-figure>
new Figure('sexy look')
</api>

<var figure><api[1]></var>
 

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
I would recommend and use this for your RevCMS config though, a lot of the code isn't necessary
<?php
if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
$_CONFIG['mysql']['connection_type'] = 'pconnect';
$_CONFIG['mysql']['hostname'] = 'localhost';
$_CONFIG['mysql']['username'] = 'root';
$_CONFIG['mysql']['password'] = 'password';
$_CONFIG['mysql']['database'] = 'database';
$_CONFIG['mysql']['port'] = '3306';
$_CONFIG['hotel']['url'] = '
$_CONFIG['hotel']['name'] = 'hotelname';
$_CONFIG['hotel']['in_maint'] = false;
$_CONFIG['hotel']['motto'] = 'motto';
$_CONFIG['hotel']['credits'] = 0;
$_CONFIG['hotel']['pixels'] = 0;
$_CONFIG['hotel']['figure'] = 'default look';
$_CONFIG['template']['style'] = 'Habbo';
?>
 

Velaski

winner
Aug 4, 2015
562
165
I would recommend and use this for your RevCMS config though, a lot of the code isn't necessary
<?php
if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
$_CONFIG['mysql']['connection_type'] = 'pconnect';
$_CONFIG['mysql']['hostname'] = 'localhost';
$_CONFIG['mysql']['username'] = 'root';
$_CONFIG['mysql']['password'] = 'password';
$_CONFIG['mysql']['database'] = 'database';
$_CONFIG['mysql']['port'] = '3306';
$_CONFIG['hotel']['url'] = '
$_CONFIG['hotel']['name'] = 'hotelname';
$_CONFIG['hotel']['in_maint'] = false;
$_CONFIG['hotel']['motto'] = 'motto';
$_CONFIG['hotel']['credits'] = 0;
$_CONFIG['hotel']['pixels'] = 0;
$_CONFIG['hotel']['figure'] = 'default look';
$_CONFIG['template']['style'] = 'Habbo';
?>
SWFS?
 

iGlenn

:)
Jul 21, 2015
618
92
I would recommend and use this for your RevCMS config though, a lot of the code isn't necessary
<?php
if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
$_CONFIG['mysql']['connection_type'] = 'pconnect';
$_CONFIG['mysql']['hostname'] = 'localhost';
$_CONFIG['mysql']['username'] = 'root';
$_CONFIG['mysql']['password'] = 'password';
$_CONFIG['mysql']['database'] = 'database';
$_CONFIG['mysql']['port'] = '3306';
$_CONFIG['hotel']['url'] = '
$_CONFIG['hotel']['name'] = 'hotelname';
$_CONFIG['hotel']['in_maint'] = false;
$_CONFIG['hotel']['motto'] = 'motto';
$_CONFIG['hotel']['credits'] = 0;
$_CONFIG['hotel']['pixels'] = 0;
$_CONFIG['hotel']['figure'] = 'default look';
$_CONFIG['template']['style'] = 'Habbo';
?>
this alone deserves its own thread :p
 

Users who are viewing this thread

Top