So just to make a "comeback" since i've been away for all those year's i decided to make an Habbo Value which allow's you to add, remove and edit you'r habbo values on the value page. If you find any bugs then please post them below!
This is coded in PHP and uses MySQL as database. This is still under BETA and alot of the functions aren't ready yet to be used. So the features are:
Features:
Add -- Add values
Remove -- Remove values
Edit -- Edit the old values
Admincp -- Show's you where to click and what to do.
value -- Show's all the values in the MySQL Database
Demo:
Website under review
You can also try to access
Website under review
But i wont be giving away the password,
Download:
values.zip
MySQL Code:
PHP Code:
CREATE TABLE `values` (
`id` int(4) NOT NULL AUTO_INCREMENT,
`img` varchar(65) COLLATE latin1_general_ci NOT NULL DEFAULT '',
`value` varchar(65) COLLATE latin1_general_ci NOT NULL DEFAULT '',
`lastedited` varchar(65) COLLATE latin1_general_ci NOT NULL DEFAULT '',
`furni` varchar(65) COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=9 ;
To be able to use this you need to have an MySQL database and then you have to edit the valueconfig.php that comes with the package. And all the images that you're using for the values is supposed to be in the values directory.
And i know this has been done before but i just wanted to try to do something "new".