Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Releases
CMS Releases
Cabbos CMS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="JackH" data-source="post: 347034" data-attributes="member: 28141"><p>Another mirror: <a href="https://mega.co.nz/#!Pdw2lBYD!XwioxJpp6WKeX0jCc5TNPdq3OfsQubsQkt3eWl3sqR8" target="_blank">https://mega.co.nz/#!Pdw2lBYD!XwioxJpp6WKeX0jCc5TNPdq3OfsQubsQkt3eWl3sqR8</a></p><p>Also, here is a blank user table as a lot of people was having issues on the other forum.</p><p>[PHP]</p><p>-- ----------------------------</p><p>-- Table structure for users</p><p>-- ----------------------------</p><p>DROP TABLE IF EXISTS `users`;</p><p>CREATE TABLE `users` (</p><p> `id` int(11) unsigned NOT NULL AUTO_INCREMENT,</p><p> `username` varchar(50) NOT NULL,</p><p> `real_name` varchar(100) NOT NULL DEFAULT '',</p><p> `password` varchar(50) NOT NULL,</p><p> `mail` varchar(50) NOT NULL DEFAULT 'defaultuser@meth0d.org',</p><p> `auth_ticket` text NOT NULL,</p><p> `rank` int(11) unsigned NOT NULL DEFAULT '1',</p><p> `credits` int(11) NOT NULL DEFAULT '50000',</p><p> `vip_points` int(11) NOT NULL DEFAULT '0',</p><p> `activity_points` int(11) NOT NULL DEFAULT '0',</p><p> `activity_points_lastupdate` double NOT NULL DEFAULT '0',</p><p> `look` varchar(255) NOT NULL DEFAULT 'hr-115-42.hd-190-1.ch-215-62.lg-285-91.sh-290-62',</p><p> `gender` enum('M','F') NOT NULL DEFAULT 'M',</p><p> `motto` varchar(50) NOT NULL,</p><p> `account_created` varchar(50) NOT NULL,</p><p> `last_online` varchar(50) NOT NULL,</p><p> `online` enum('0','1') NOT NULL DEFAULT '0',</p><p> `ip_last` varchar(120) NOT NULL,</p><p> `ip_reg` varchar(120) NOT NULL,</p><p> `home_room` int(10) unsigned NOT NULL DEFAULT '1528',</p><p> `respect` int(11) NOT NULL DEFAULT '0',</p><p> `daily_respect_points` int(11) NOT NULL DEFAULT '10',</p><p> `daily_pet_respect_points` int(11) NOT NULL DEFAULT '5',</p><p> `newbie_status` int(11) NOT NULL DEFAULT '0',</p><p> `is_muted` enum('0','1') NOT NULL DEFAULT '0',</p><p> `mutant_penalty` enum('0','1','2') NOT NULL DEFAULT '0',</p><p> `mutant_penalty_expire` int(11) NOT NULL DEFAULT '0',</p><p> `block_newfriends` enum('0','1') NOT NULL DEFAULT '0',</p><p> `hide_online` enum('0','1') NOT NULL DEFAULT '0',</p><p> `hide_inroom` enum('0','1') NOT NULL DEFAULT '0',</p><p> `mail_verified` varchar(6) NOT NULL DEFAULT '0',</p><p> `vip` enum('0','1') NOT NULL DEFAULT '1',</p><p> `volume` int(3) NOT NULL DEFAULT '100',</p><p> `accept_trading` enum('0','1') NOT NULL DEFAULT '1',</p><p> `LastHaSended` double NOT NULL DEFAULT '0',</p><p> `LastHalSended` double NOT NULL DEFAULT '0',</p><p> `seckey` varchar(999) NOT NULL,</p><p> `language` varchar(255) NOT NULL DEFAULT 'default',</p><p> `housekeeping_pin` varchar(100) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '5555',</p><p> `account_locked` enum('0','1') CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '0',</p><p> `client_pin` varchar(1000) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT 'e48e13207341b6bffb7fb1622282247b',</p><p> `country` varchar(111) NOT NULL DEFAULT 'unknown',</p><p> `color` enum('blue','red','green','orange','purple','grey') NOT NULL DEFAULT 'blue',</p><p> `kik` varchar(255) NOT NULL DEFAULT 'N/A',</p><p> `skype` varchar(255) NOT NULL DEFAULT 'N/A',</p><p> `eventha` varchar(255) NOT NULL,</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=MyISAM AUTO_INCREMENT=4249 DEFAULT CHARSET=latin1;</p><p>[/PHP]</p><p>[DOUBLEPOST=1439380131,1439380066][/DOUBLEPOST]</p><p>I was going to donate it all to charity, but since Gage was an impatient asshole and decided to post it all over Facebook I thought **** him.</p><p>[DOUBLEPOST=1439380205][/DOUBLEPOST]Another thing, if you're going to use this. Add the following to <strong>bots.php </strong>otherwise any user that isn't logged will be able to edit your bots.</p><p>[PHP]</p><p>if(!isset($_SESSION['user']['username']))</p><p>{ </p><p>header('Location: index'); exit();</p><p>} </p><p>[/PHP]</p></blockquote><p></p>
[QUOTE="JackH, post: 347034, member: 28141"] Another mirror: [URL]https://mega.co.nz/#!Pdw2lBYD!XwioxJpp6WKeX0jCc5TNPdq3OfsQubsQkt3eWl3sqR8[/URL] Also, here is a blank user table as a lot of people was having issues on the other forum. [PHP] -- ---------------------------- -- Table structure for users -- ---------------------------- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(50) NOT NULL, `real_name` varchar(100) NOT NULL DEFAULT '', `password` varchar(50) NOT NULL, `mail` varchar(50) NOT NULL DEFAULT 'defaultuser@meth0d.org', `auth_ticket` text NOT NULL, `rank` int(11) unsigned NOT NULL DEFAULT '1', `credits` int(11) NOT NULL DEFAULT '50000', `vip_points` int(11) NOT NULL DEFAULT '0', `activity_points` int(11) NOT NULL DEFAULT '0', `activity_points_lastupdate` double NOT NULL DEFAULT '0', `look` varchar(255) NOT NULL DEFAULT 'hr-115-42.hd-190-1.ch-215-62.lg-285-91.sh-290-62', `gender` enum('M','F') NOT NULL DEFAULT 'M', `motto` varchar(50) NOT NULL, `account_created` varchar(50) NOT NULL, `last_online` varchar(50) NOT NULL, `online` enum('0','1') NOT NULL DEFAULT '0', `ip_last` varchar(120) NOT NULL, `ip_reg` varchar(120) NOT NULL, `home_room` int(10) unsigned NOT NULL DEFAULT '1528', `respect` int(11) NOT NULL DEFAULT '0', `daily_respect_points` int(11) NOT NULL DEFAULT '10', `daily_pet_respect_points` int(11) NOT NULL DEFAULT '5', `newbie_status` int(11) NOT NULL DEFAULT '0', `is_muted` enum('0','1') NOT NULL DEFAULT '0', `mutant_penalty` enum('0','1','2') NOT NULL DEFAULT '0', `mutant_penalty_expire` int(11) NOT NULL DEFAULT '0', `block_newfriends` enum('0','1') NOT NULL DEFAULT '0', `hide_online` enum('0','1') NOT NULL DEFAULT '0', `hide_inroom` enum('0','1') NOT NULL DEFAULT '0', `mail_verified` varchar(6) NOT NULL DEFAULT '0', `vip` enum('0','1') NOT NULL DEFAULT '1', `volume` int(3) NOT NULL DEFAULT '100', `accept_trading` enum('0','1') NOT NULL DEFAULT '1', `LastHaSended` double NOT NULL DEFAULT '0', `LastHalSended` double NOT NULL DEFAULT '0', `seckey` varchar(999) NOT NULL, `language` varchar(255) NOT NULL DEFAULT 'default', `housekeeping_pin` varchar(100) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '5555', `account_locked` enum('0','1') CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '0', `client_pin` varchar(1000) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT 'e48e13207341b6bffb7fb1622282247b', `country` varchar(111) NOT NULL DEFAULT 'unknown', `color` enum('blue','red','green','orange','purple','grey') NOT NULL DEFAULT 'blue', `kik` varchar(255) NOT NULL DEFAULT 'N/A', `skype` varchar(255) NOT NULL DEFAULT 'N/A', `eventha` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4249 DEFAULT CHARSET=latin1; [/PHP] [DOUBLEPOST=1439380131,1439380066][/DOUBLEPOST] I was going to donate it all to charity, but since Gage was an impatient asshole and decided to post it all over Facebook I thought **** him. [DOUBLEPOST=1439380205][/DOUBLEPOST]Another thing, if you're going to use this. Add the following to [B]bots.php [/B]otherwise any user that isn't logged will be able to edit your bots. [PHP] if(!isset($_SESSION['user']['username'])) { header('Location: index'); exit(); } [/PHP] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Releases
CMS Releases
Cabbos CMS
Top