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 Q&A
Can't find a Table
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="Sab" data-source="post: 340075" data-attributes="member: 3878"><p>Run this in your DB:</p><p></p><p>[CODE]</p><p>-- ----------------------------</p><p>-- Table structure for `ranks`</p><p>-- ----------------------------</p><p>DROP TABLE IF EXISTS `ranks`;</p><p>CREATE TABLE `ranks` (</p><p> `id` int(11) unsigned NOT NULL AUTO_INCREMENT,</p><p> `name` varchar(50) NOT NULL,</p><p> `badgeid` varchar(5) DEFAULT NULL,</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;</p><p></p><p>-- ----------------------------</p><p>-- Records of ranks</p><p>-- ----------------------------</p><p>INSERT INTO `ranks` VALUES ('1', 'User', 'HH1');</p><p>INSERT INTO `ranks` VALUES ('2', 'VIP', 'VIP');</p><p>INSERT INTO `ranks` VALUES ('3', 'Intern', 'HIT');</p><p>INSERT INTO `ranks` VALUES ('4', 'Trial Moderator', 'ADM');</p><p>INSERT INTO `ranks` VALUES ('5', 'Moderator', 'ADM');</p><p>INSERT INTO `ranks` VALUES ('7', 'Administrator', 'ADM');</p><p>INSERT INTO `ranks` VALUES ('8', 'Manager', 'ADM');</p><p>INSERT INTO `ranks` VALUES ('9', 'Co-Owner', 'ADM');</p><p>INSERT INTO `ranks` VALUES ('10', 'Owner', 'ADM');[/CODE]</p><p></p><p>Like stated above this isn't when the emu depends on, it is just for your cms, and a view of your rank standings.</p></blockquote><p></p>
[QUOTE="Sab, post: 340075, member: 3878"] Run this in your DB: [CODE] -- ---------------------------- -- Table structure for `ranks` -- ---------------------------- DROP TABLE IF EXISTS `ranks`; CREATE TABLE `ranks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `badgeid` varchar(5) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of ranks -- ---------------------------- INSERT INTO `ranks` VALUES ('1', 'User', 'HH1'); INSERT INTO `ranks` VALUES ('2', 'VIP', 'VIP'); INSERT INTO `ranks` VALUES ('3', 'Intern', 'HIT'); INSERT INTO `ranks` VALUES ('4', 'Trial Moderator', 'ADM'); INSERT INTO `ranks` VALUES ('5', 'Moderator', 'ADM'); INSERT INTO `ranks` VALUES ('7', 'Administrator', 'ADM'); INSERT INTO `ranks` VALUES ('8', 'Manager', 'ADM'); INSERT INTO `ranks` VALUES ('9', 'Co-Owner', 'ADM'); INSERT INTO `ranks` VALUES ('10', 'Owner', 'ADM');[/CODE] Like stated above this isn't when the emu depends on, it is just for your cms, and a view of your rank standings. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Can't find a Table
Top