[REL] [PHP] HabSys (Habbo Usersystem)

Do you like this?


  • Total voters
    4
Status
Not open for further replies.

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
Yeah, took me about 1, maybe 2 weeks but I've finished.

If you're viewing this thread from RapidBug, you should know about it - if you're viewing it from any other forum, you won't know what this is.

Anyway, I've been working on a usersystem for a week days and finished it today.

I don't need to post any screenshots because I have a demo: .

Download




Password
m0nstadot

Also, when you open the config.php file, you will need to edit your MySQL database details, once you have done that, execute this SQL code into your database:

PHP:
CREATE TABLE IF NOT EXISTS `config` (
  `url` varchar(300) NOT NULL,
  `title` varchar(40) NOT NULL,
  `email` varchar(150) NOT NULL,
  `admin` varchar(25) NOT NULL,
  `copyright` varchar(1000) NOT NULL,
  `admin_notes` longtext NOT NULL,
  `maintainance` varchar(1000) NOT NULL,
  `forum` varchar(1) NOT NULL,
  `forum_link` varchar(300) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

INSERT INTO `config` (`url`, `title`, `email`, `admin`, `copyright`, `admin_notes`, `maintainance`, `forum`, `forum_link`) VALUES
('http://mark-eriksson.com/habbousersystem', 'HabSys', '[email protected]', 'Mark Eriksson', 'Copyright © <strong>HabSys</strong> 2010', 'Hello\r\n:)', '0', '0', 'forum.php');

CREATE TABLE IF NOT EXISTS `faq` (
  `id` int(90) NOT NULL AUTO_INCREMENT,
  `q` varchar(40) NOT NULL,
  `a` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `news` (
  `id` int(90) NOT NULL AUTO_INCREMENT,
  `title` varchar(40) NOT NULL,
  `content` longtext NOT NULL,
  `author` varchar(25) NOT NULL,
  `comments` varchar(90) NOT NULL DEFAULT '0',
  `date` varchar(90) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `news_c` (
  `id` int(90) NOT NULL AUTO_INCREMENT,
  `newsid` varchar(90) NOT NULL,
  `date` varchar(90) NOT NULL,
  `author` varchar(25) NOT NULL,
  `content` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `pm` (
  `id` int(90) NOT NULL AUTO_INCREMENT,
  `to` varchar(25) NOT NULL,
  `from` varchar(25) NOT NULL,
  `subject` varchar(40) NOT NULL,
  `content` longtext NOT NULL,
  `date` varchar(90) NOT NULL,
  `read` varchar(1) NOT NULL DEFAULT '0',
  `tdelete` varchar(1) NOT NULL DEFAULT '0',
  `fdelete` varchar(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `quick_req` (
  `id` int(90) NOT NULL AUTO_INCREMENT,
  `name` varchar(25) NOT NULL,
  `message` longtext NOT NULL,
  `ip` varchar(90) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `spotlight` (
  `id` int(90) NOT NULL AUTO_INCREMENT,
  `habboname` varchar(40) NOT NULL,
  `habbohotel` varchar(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `users` (
  `id` int(90) NOT NULL AUTO_INCREMENT,
  `username` varchar(25) NOT NULL,
  `password` varchar(1000) NOT NULL,
  `password_un` varchar(40) NOT NULL,
  `rank` varchar(90) NOT NULL DEFAULT 'Member',
  `email` varchar(150) NOT NULL,
  `ip` varchar(90) NOT NULL,
  `joindate` varchar(90) NOT NULL,
  `messages` varchar(90) NOT NULL DEFAULT '0',
  `habboname` varchar(40) NOT NULL,
  `habbohotel` varchar(10) NOT NULL,
  `msn` varchar(150) NOT NULL,
  `yahoo` varchar(150) NOT NULL,
  `twitter` varchar(30) NOT NULL,
  `facebook` varchar(30) NOT NULL,
  `aboutme` longtext NOT NULL,
  `website` varchar(300) NOT NULL,
  `page_visits` varchar(90) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

I hope you enjoy the system as much as I did creating it.

If you want any more scripts/pages etc or find any bugs on system, or send me a .

Thanks,
m0nsta. / markeriksson94 / Monsta.
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,907
I liked this instantly when you had released it, I think I stiil even have this set up lol. -Thanks again.
 

User3

I just want some piercings and tattoos.
May 23, 2010
176
30
Notice. Go in the PHPMyAdmin and then find the db then Users. Change your rank from "Member" to "Administrator".
 

Benden

maging ang maganda mamatay
Jun 4, 2010
2,281
1,480
nice release looks really nice but why not enter in the coding comp?
 

Andeh

the best cis-boy
Jun 1, 2010
892
124
Lovely release
HabSys is the most awesome habbo usersystem there is
Thanks!
 
Status
Not open for further replies.

Users who are viewing this thread

Top