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
[UNFINISHED, UNSUPPORTED!] CookieMS- Stable
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="DaLightz" data-source="post: 121147" data-attributes="member: 17436"><p>Ok, grabbing them now.[DOUBLEPOST=1342163317,1342163147][/DOUBLEPOST]Screenshots and features added to thread.[DOUBLEPOST=1342163414][/DOUBLEPOST]ALMOST FORGOT RUN THESE SQLS!</p><p>[CODE]--</p><p>--- Here is the SQL'S that are required to make CookieMS work properly.</p><p>--</p><p> </p><p>--</p><p>--- CookieMS Groups Memberships</p><p>--</p><p>CREATE TABLE IF NOT EXISTS `cookiems_groups_memberships` (</p><p> `userid` int(10) NOT NULL,</p><p> `groupid` int(10) NOT NULL,</p><p> `member_rank` enum('3','2','1') COLLATE latin1_general_ci NOT NULL DEFAULT '3',</p><p> `is_current` enum('0','1') COLLATE latin1_general_ci NOT NULL DEFAULT '0',</p><p> `is_pending` enum('0','1') COLLATE latin1_general_ci NOT NULL DEFAULT '0'</p><p>) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;</p><p> </p><p> </p><p> </p><p>--</p><p>--- CookieMS Groups Details</p><p>--</p><p>CREATE TABLE IF NOT EXISTS `cookiems_groups_details` (</p><p> `id` int(10) NOT NULL AUTO_INCREMENT,</p><p> `name` varchar(45) COLLATE latin1_general_ci NOT NULL,</p><p> `description` varchar(200) COLLATE latin1_general_ci NOT NULL,</p><p> `ownerid` int(10) NOT NULL,</p><p> `roomid` int(10) NOT NULL,</p><p> `created` varchar(50) COLLATE latin1_general_ci NOT NULL,</p><p> `badge` text COLLATE latin1_general_ci NOT NULL,</p><p> `type` int(1) NOT NULL DEFAULT '0',</p><p> `recommended` int(1) NOT NULL DEFAULT '0',</p><p> `views` int(15) NOT NULL,</p><p> `pane` smallint(1) NOT NULL DEFAULT '0',</p><p> `topics` smallint(1) NOT NULL DEFAULT '0',</p><p> `bg` varchar(210) COLLATE latin1_general_ci NOT NULL DEFAULT 'b_bg_colour_08',</p><p> PRIMARY KEY (`id`,`name`),</p><p> KEY `bg` (`bg`)</p><p>) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=1 ;</p><p> </p><p> </p><p>--</p><p>--- CookieMS Campaigns</p><p>--</p><p>CREATE TABLE IF NOT EXISTS `cookiems_campaigns` (</p><p> `id` int(11) NOT NULL AUTO_INCREMENT,</p><p> `order_id` int(11) NOT NULL DEFAULT '1',</p><p> `enabled` enum('0','1') NOT NULL DEFAULT '1',</p><p> `image_url` text NOT NULL,</p><p> `caption` text NOT NULL,</p><p> `descr` text NOT NULL,</p><p> `url` text NOT NULL,</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;</p><p> </p><p>INSERT INTO `cookiems_campaigns` (`id`, `order_id`, `enabled`, `image_url`, `caption`, `descr`, `url`) VALUES</p><p>(2, 1, '1', 'http://65.96.141.124/app/tpl/skins/Habbo/images/facebookconnect.gif', 'Test 2', 'MOAR MOAR MOAR!', 'http://devbest.com'),</p><p>(3, 1, '1', 'http://65.96.141.124/app/tpl/skins/Habbo/images/facebookconnect.gif', 'MOAR TEST!', 'LOOOOOL MOAR!', 'http://devbest.com'),</p><p>(1, 1, '1', 'http://65.96.141.124/app/tpl/skins/Habbo/images/facebookconnect.gif', 'Test', 'This is a test for my shit..', 'http://devbest.com');</p><p> </p><p>--</p><p>--- CookieMS Items for groups/homes</p><p>--</p><p>CREATE TABLE IF NOT EXISTS `cookiems_items` (</p><p> `id` int(100) NOT NULL AUTO_INCREMENT,</p><p> `userId` int(100) NOT NULL,</p><p> `groupId` int(10) NOT NULL,</p><p> `position_left` int(4) NOT NULL,</p><p> `position_top` int(4) NOT NULL,</p><p> `position_z` int(4) NOT NULL,</p><p> `var` varchar(100) NOT NULL,</p><p> `skin` varchar(100) NOT NULL,</p><p> `content` text NOT NULL,</p><p> `type` enum('stickie','sticker','widget') NOT NULL DEFAULT 'sticker',</p><p> `Temporal` enum('True','False') NOT NULL DEFAULT 'False',</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Stickies del Sitio' AUTO_INCREMENT=72 ;</p><p>[/CODE]</p></blockquote><p></p>
[QUOTE="DaLightz, post: 121147, member: 17436"] Ok, grabbing them now.[DOUBLEPOST=1342163317,1342163147][/DOUBLEPOST]Screenshots and features added to thread.[DOUBLEPOST=1342163414][/DOUBLEPOST]ALMOST FORGOT RUN THESE SQLS! [CODE]-- --- Here is the SQL'S that are required to make CookieMS work properly. -- -- --- CookieMS Groups Memberships -- CREATE TABLE IF NOT EXISTS `cookiems_groups_memberships` ( `userid` int(10) NOT NULL, `groupid` int(10) NOT NULL, `member_rank` enum('3','2','1') COLLATE latin1_general_ci NOT NULL DEFAULT '3', `is_current` enum('0','1') COLLATE latin1_general_ci NOT NULL DEFAULT '0', `is_pending` enum('0','1') COLLATE latin1_general_ci NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -- --- CookieMS Groups Details -- CREATE TABLE IF NOT EXISTS `cookiems_groups_details` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(45) COLLATE latin1_general_ci NOT NULL, `description` varchar(200) COLLATE latin1_general_ci NOT NULL, `ownerid` int(10) NOT NULL, `roomid` int(10) NOT NULL, `created` varchar(50) COLLATE latin1_general_ci NOT NULL, `badge` text COLLATE latin1_general_ci NOT NULL, `type` int(1) NOT NULL DEFAULT '0', `recommended` int(1) NOT NULL DEFAULT '0', `views` int(15) NOT NULL, `pane` smallint(1) NOT NULL DEFAULT '0', `topics` smallint(1) NOT NULL DEFAULT '0', `bg` varchar(210) COLLATE latin1_general_ci NOT NULL DEFAULT 'b_bg_colour_08', PRIMARY KEY (`id`,`name`), KEY `bg` (`bg`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=1 ; -- --- CookieMS Campaigns -- CREATE TABLE IF NOT EXISTS `cookiems_campaigns` ( `id` int(11) NOT NULL AUTO_INCREMENT, `order_id` int(11) NOT NULL DEFAULT '1', `enabled` enum('0','1') NOT NULL DEFAULT '1', `image_url` text NOT NULL, `caption` text NOT NULL, `descr` text NOT NULL, `url` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; INSERT INTO `cookiems_campaigns` (`id`, `order_id`, `enabled`, `image_url`, `caption`, `descr`, `url`) VALUES (2, 1, '1', 'http://65.96.141.124/app/tpl/skins/Habbo/images/facebookconnect.gif', 'Test 2', 'MOAR MOAR MOAR!', 'http://devbest.com'), (3, 1, '1', 'http://65.96.141.124/app/tpl/skins/Habbo/images/facebookconnect.gif', 'MOAR TEST!', 'LOOOOOL MOAR!', 'http://devbest.com'), (1, 1, '1', 'http://65.96.141.124/app/tpl/skins/Habbo/images/facebookconnect.gif', 'Test', 'This is a test for my shit..', 'http://devbest.com'); -- --- CookieMS Items for groups/homes -- CREATE TABLE IF NOT EXISTS `cookiems_items` ( `id` int(100) NOT NULL AUTO_INCREMENT, `userId` int(100) NOT NULL, `groupId` int(10) NOT NULL, `position_left` int(4) NOT NULL, `position_top` int(4) NOT NULL, `position_z` int(4) NOT NULL, `var` varchar(100) NOT NULL, `skin` varchar(100) NOT NULL, `content` text NOT NULL, `type` enum('stickie','sticker','widget') NOT NULL DEFAULT 'sticker', `Temporal` enum('True','False') NOT NULL DEFAULT 'False', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Stickies del Sitio' AUTO_INCREMENT=72 ; [/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Releases
CMS Releases
[UNFINISHED, UNSUPPORTED!] CookieMS- Stable
Top