I went ahead and changed the sqls that came with this with the furnidata from habbo.com and I just changed the ids on the rest.
Furni data
Code:
["s","4646","pink_flamingo","42570","0","1","1","","Flamingo","A bird in the hand...","","203834","11519","","1"],
["s","4644","anc_ele_grass","42570","0","1","1","","Grass Block","Build it up!","","203834","11517","0.5","1"],
["s","4642","anc_ele_rock","42570","4","1","1","","Rock Block","Build it up!","","203834","11515","0.5","1"],
["s","4647","anc_bones","42570","4","1","1","","Dem Bones","What manner of creature did these belong to?","","203834","11520","","1"],
["s","4645","anc_sun","42570","2","1","1","","Blazing Sun","Quick! Do your Icarus impression!","","203834","11518","","1"],
["s","4643","shallow","42570","0","2","2","","Shallow Water","Go paddling","","203834","11516","","1"],
["i","4461","anc_savanna_wall","42570","","","","","Savannah landscape","You can see for miles","","203834","11521","1"],
["s","4641","prizetrophy_frank","42570","0","1","1","","prizetrophy_frank name","prizetrophy_frank desc","","-1","-1","","1"]
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`, `is_arrow`, `foot_figure`) VALUES
(22240, 'anc_savanna_wall', 'anc_savanna_wall', 'i', 1, 1, 1, '1', '0', '0', 4461, '1', '1', '1', '1', '1', 'default', 2, '0', '0', 0),
(22241, 'prizetrophy_frank', 'prizetrophy_frank', 's', 1, 1, 1, '1', '0', '0', 4641, '1', '1', '1', '1', '1', 'trophy', 1, '0', '0', 0),
(22242, 'shallow', 'shallow', 's', 2, 2, 0.1, '0', '0', '1', 4643, '1', '1', '1', '1', '1', 'default', 1, '37', '0', 0),
(22243, 'anc_ele_rock', 'anc_ele_rock', 's', 1, 1, 1, '0', '0', '0', 4642, '1', '1', '1', '1', '1', 'default', 5, '0', '0', 0),
(22244, 'anc_sun', 'anc_sun', 's', 1, 1, 1, '0', '0', '0', 4645, '1', '1', '1', '1', '1', 'default', 1, '0', '0', 0),
(22245, 'anc_ele_grass', 'anc_ele_grass', 's', 1, 1, 1, '0', '0', '0', 4644, '1', '1', '1', '1', '1', 'default', 5, '0', '0', 0),
(22246, 'anc_bones', 'anc_bones', 's', 1, 1, 1, '0', '0', '0', 4647, '1', '1', '1', '1', '1', 'default', 4, '0', '0', 0),
(22247, 'pink_flamingo', 'pink_flamingo', 's', 1, 1, 1, '0', '0', '0', 4646, '1', '1', '1', '1', '1', 'default', 1, '0', '0', 0);
Catalog_items
Code:
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`, `vip`) VALUES
(22241, PAGEID, '22241', 'prizetrophy_frank', 3, 0, 0, 1, '0'),
(22243, PAGEID, '22243', 'anc_ele_rock', 3, 0, 0, 1, '0'),
(22240, PAGEID, '22240', 'anc_savanna_wall', 4, 0, 0, 1, '0'),
(22242, PAGEID, '22242', 'shallow', 4, 0, 0, 1, '0'),
(22244, PAGEID, '22244', 'anc_sun', 10, 0, 0, 1, '0'),
(22246, PAGEID, '22246', 'anc_bones', 6, 0, 0, 1, '0'),
(22245, PAGEID, '22245', 'anc_ele_grass', 3, 0, 0, 1, '0'),
(22247, PAGEID, '22247', 'pink_flamingo', 12, 0, 0, 1, '0');