Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

HabMoon - MTV/Studio Furniture

Status
Not open for further replies.
I would wait for the moon
Loyal Member
Joined
Jun 9, 2007
Messages
2,081
Reaction score
1,192
Furniture:
Code:
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(30041, 'ads_mtv_floor', 'ads_mtv_floor', 's', 1, 1, 0.1, '1', '0', '1', 4079, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30042, 'studio_monitor', 'studio_monitor', 's', 1, 1, 1, '0', '0', '0', 4080, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30043, 'studio_stool', 'studio_stool', 's', 1, 1, 1, '0', '1', '0', 4081, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30044, 'studio_fencecr', 'studio_fencecr', 's', 1, 1, 1, '0', '0', '0', 4082, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30045, 'studio_guitar', 'studio_guitar', 's', 1, 1, 1, '0', '0', '0', 4083, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30046, 'studio_amp2', 'studio_amp2', 's', 2, 1, 1, '0', '0', '0', 4084, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30047, 'studio_fence', 'studio_fence', 's', 1, 2, 1, '0', '0', '0', 4085, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30048, 'studio_amp1', 'studio_amp1', 's', 2, 1, 2, '1', '0', '0', 4086, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30049, 'studio_floorlight', 'studio_floorlight', 's', 1, 1, 0.1, '1', '0', '1', 4087, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30050, 'studio_mixingdesk', 'studio_mixingdesk', 's', 5, 1, 1, '0', '0', '0', 4088, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30051, 'studio_camera', 'studio_camera', 's', 1, 1, 1, '0', '0', '0', 4089, '1', '1', '1', '1', '1', 'default', 2, '0'),
(30052, 'studio_tv', 'studio_tv', 's', 1, 1, 0.1, '0', '0', '1', 4090, '1', '1', '1', '1', '1', 'default', 2, '0'),
(30053, 'studio_lights3', 'studio_lights3', 's', 1, 1, 0.1, '0', '0', '1', 4091, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30054, 'studio_lights2', 'studio_lights2', 's', 1, 1, 0.1, '0', '0', '1', 4092, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30055, 'studio_drums', 'studio_drums', 's', 3, 1, 1, '0', '0', '0', 4093, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30056, 'studio_lights1', 'studio_lights1', 's', 1, 1, 0.1, '0', '0', '1', 4094, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30057, 'studio_chair', 'studio_chair', 's', 1, 1, 1, '0', '1', '0', 4095, '1', '1', '1', '1', '1', 'default', 1, '0'),
(30058, 'ads_mtv_wall', 'ads_mtv_wall', 'i', 1, 1, 1, '0', '0', '0', 4411, '1', '1', '1', '1', '1', 'default', 1, '0');

Catalog_items:
Code:
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `amount`) VALUES
(NULL, '145', '30041', 'ads_mtv_floor', 3, 0, 1),
(NULL, '145', '30042', 'studio_monitor', 3, 0, 1),
(NULL, '145', '30043', 'studio_stool', 3, 0, 1),
(NULL, '145', '30044', 'studio_fencecr', 3, 0, 1),
(NULL, '145', '30045', 'studio_guitar', 3, 0, 1),
(NULL, '145', '30046', 'studio_amp2', 3, 0, 1),
(NULL, '145', '30047', 'studio_fence', 3, 0, 1),
(NULL, '145', '30048', 'studio_amp1', 3, 0, 1),
(NULL, '145', '30049', 'studio_floorlight', 3, 0, 1),
(NULL, '145', '30050', 'studio_mixingdesk', 3, 0, 1),
(NULL, '145', '30051', 'studio_camera', 3, 0, 1),
(NULL, '145', '30052', 'studio_tv', 3, 0, 1),
(NULL, '145', '30053', 'studio_lights3', 3, 0, 1),
(NULL, '145', '30054', 'studio_lights2', 3, 0, 1),
(NULL, '145', '30055', 'studio_drums', 3, 0, 1),
(NULL, '145', '30056', 'studio_lights1', 3, 0, 1),
(NULL, '145', '30057', 'studio_chair', 3, 0, 1),
 (NULL, '145', '30058', 'ads_mtv_wall', 3, 0, 1);

Furnidata:
Code:
["s","4079","ads_mtv_floor","34870","4","1","1","","ads_mtv_floor name","ads_mtv_floor desc","","-1","-1"],
["s","4080","studio_monitor","34870","2","1","1","","studio_monitor name","studio_monitor desc","","-1","-1"],
["s","4081","studio_stool","34870","0","1","1","","studio_stool name","studio_stool desc","","-1","-1"],
["s","4082","studio_fencecr","34870","0","1","1","","studio_fencecr name","studio_fencecr desc","","-1","-1"],
["s","4083","studio_guitar","34870","2","1","1","","studio_guitar name","studio_guitar desc","","-1","-1"],
["s","4084","studio_amp2","34870","0","2","1","","studio_amp2 name","studio_amp2 desc","","-1","-1"],
["s","4085","studio_fence","34870","0","1","2","","studio_fence name","studio_fence desc","","-1","-1"],
["s","4086","studio_amp1","34870","0","2","1","","studio_amp1 name","studio_amp1 desc","","-1","-1"],
["s","4087","studio_floorlight","34870","0","1","1","","studio_floorlight name","studio_floorlight desc","","-1","-1"],
["s","4088","studio_mixingdesk","34870","0","5","1","","studio_mixingdesk name","studio_mixingdesk desc","","-1","-1"],
["s","4089","studio_camera","34870","0","1","1","","studio_camera name","studio_camera desc","","-1","-1"],
["s","4090","studio_tv","34870","4","1","1","","studio_tv name","studio_tv desc","","-1","-1"],
["s","4091","studio_lights3","34870","2","1","1","","studio_lights3 name","studio_lights3 desc","","-1","-1"],
["s","4092","studio_lights2","34870","2","1","1","","studio_lights2 name","studio_lights2 desc","","-1","-1"],
["s","4093","studio_drums","34870","0","3","1","","studio_drums name","studio_drums desc","","-1","-1"],
["s","4094","studio_lights1","34870","2","1","1","","studio_lights1 name","studio_lights1 desc","","-1","-1"],
["s","4095","studio_chair","34870","2","1","1","","studio_chair name","studio_chair desc","","-1","-1"],
["i","4411","ads_mtv_wall","34870","","","","","ads_mtv_wall name","ads_mtv_wall desc","","-1","-1"]

Catalog page:
Code:
INSERT INTO `catalog_pages` (`id`, `parent_id`, `caption`, `icon_color`, `icon_image`, `visible`, `enabled`, `min_rank`, `club_only`, `vip_only`, `coming_soon`, `order_num`, `page_layout`, `page_headline`, `page_teaser`, `page_special`, `page_text1`, `page_text2`, `page_text_details`, `page_text_teaser`) VALUES
(145, ParentID, 'MTV Studio', 1, 64, '1', '1', 7, '0', '0', '0', 1124, 'default_3x3', 'catalog_limited', '', '', 'Release from HabMoon - If you release on forums other than ragezone please give credits.', '', '', '');

Download SWF:


Like release? 'Like' thread!:thumbup1:
Brought to you by HabMoon.
Comments appreciated.

---------- Post added at 03:52 PM ---------- Previous post was at 03:44 PM ----------

Screen of furniture in my own Hotel with above queries.
HabMoon - HabMoon - MTV/Studio Furniture - RaGEZONE Forums


MTV wall isn't on screen, but is in download an sql.
 
Last edited:
Experienced Elementalist
Joined
Oct 13, 2010
Messages
240
Reaction score
142
not being a noob which i am but can you remove null and actually stick it to what its meant to be, im not good with SQL :) thanks!
 
I would wait for the moon
Loyal Member
Joined
Jun 9, 2007
Messages
2,081
Reaction score
1,192
Everything, as far as I know, is clickable/animated
HabMoon - HabMoon - MTV/Studio Furniture - RaGEZONE Forums

HabMoon - HabMoon - MTV/Studio Furniture - RaGEZONE Forums


not being a noob which i am but can you remove null and actually stick it to what its meant to be, im not good with SQL :) thanks!
The part that is NULL at beginning doesn't matter if you add it, I just give you less work cause if I put an ID that you already got you need to change everything, and NULL just auto +1 it.
 
Last edited:
Experienced Elementalist
Joined
Oct 13, 2010
Messages
240
Reaction score
142
still can't seem to do it , im dumb man can you do it for me -.- cheers.
 
Newbie Spellweaver
Joined
Aug 29, 2007
Messages
51
Reaction score
9
great release and nice furniture. i wont use it tho
 
Newbie Spellweaver
Joined
May 1, 2011
Messages
14
Reaction score
4
Wow! This is some pretty sweet furniture. Thanks Habmoon for this release :)
 
Supreme Arcanarch
Loyal Member
Joined
Jul 7, 2011
Messages
944
Reaction score
205
Are this Habbo's furni or customs? They''re good, nice release.
 
Newbie Spellweaver
Joined
Jun 12, 2011
Messages
38
Reaction score
1
I keep on getting an ERROR, for ' NULL ', can anyone please help me ?
 
Newbie Spellweaver
Joined
Jul 12, 2011
Messages
41
Reaction score
6
#1136 - Column count doesn't match value count at row 1 :s

---------- Post added at 11:38 AM ---------- Previous post was at 11:19 AM ----------

#1062 - Duplicate entry '4294967295' for key 'PRIMARY' help:S
 
Status
Not open for further replies.
Back
Top