Catalog Clothing

Derick

New Member
Mar 28, 2017
11
0
Hello. When ever I try and use clothing from the catalog I receive the confirm box but when clicking config I receive the notification "Oops, this item doesn't have a linking clothing configuration, please report it!"

Code:
Code:
if (Item.Data.BehaviourData == 0)
{
    Session.SendNotification("Oops, this item doesn't have a linking clothing configuration, please report it!");
    return;
}

So what does BehaviourData need to be? Because every clothing item in my database is a behaviour data of 0?

Code:
SELECT * FROM furniture WHERE interaction_type = 'purchasable_clothing' AND behaviour_Data != '0';
returns no rows^

@JayCustom @Seriosk @Sledmore @Jaden @JynX
 

Seriosk

Programmer;
Oct 29, 2016
256
105
Not really sure as I don't come from a Habbo background (I have never played it that is) but I'm sure someone else tagged will know, I'm mainly a developer guy not an SWF guy.
 

Ajax

Social Reject
Aug 22, 2015
101
53
Run:
SET@@global.sql_mode='';
Then:
UPDATE furniture SET behaviour_data = furniture.clothing_id WHERE furniture.clothing_id > 0 AND furniture.behaviour_data = 0; UPDATE furniture SET behaviour_data = furniture.wired_id WHERE furniture.wired_id > 0 AND (furniture.interaction_type = 'wired_effect' OR furniture.interaction_type = 'wired_trigger' OR furniture.interaction_type = 'wired_condition');
 
Last edited:

Users who are viewing this thread

Top