Looking for Coder

FunkyBohh

Member
Jun 21, 2011
181
6
Hi,

I'm looking for someone who can design customs etc thrones etc but I want some writing on their. I'm also looking for someone to code them into a SQL for my habbo retro
 

JayC

Well-Known Member
Aug 8, 2013
5,505
1,401
If you are R63 this is a SQL starter (Do it yourself):
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
(CODE 1 HERE (8) , 'SWF Name', 'SWF Name', 's', 1, 1, 1, '1', '0', '0', CODE 2 HERE (8), '1', '1', '1', '1', '1', 'default', 4, '0');

INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`) VALUES
(CODE 1 HERE (8), 'Page Here', 'CODE 1 HERE (8)', 'Catalogue Name', '0', '0', '0', '1');

["s","CODE 2 HERE (8)","SWF Name","CODE 3 HERE (6)","0","1","1","","Furniture Name","Furniture Desc","","-1","-1"],

And as far as the customs its fairly easy. Get a SWF decomplier to separate the Images and then edit them in something like Paint/paint.net/photoshop and then insert the images back in, and use a program called "HxD" to search for the SWF name and replace it with a new SWF name with the same amount of letters/characters. For more information on this you can look up a tutorial.
 

JayC

Well-Known Member
Aug 8, 2013
5,505
1,401
Right if its R63B then look at your tables for catalog_items/furniture and match it^ So like uhm..
`id`, `public_name`, `item_name`, `type`, `width` Is R63

(not familiar with R63B) So lets say R63B your table structure goes:
'public_name', 'type', 'id', 'width', 'item_name' Just put them in order of how your database structure goes LEFT --> RIGHT
 

Users who are viewing this thread

Top