i'm using this catalogue; http://forum.ragezone.com/f353/bcstr...hoenix-906600/
Changed my hof_furnis, c_images and SQL's and still get this error:
(also changed product, and furnidata)
![]()
i'm using this catalogue; http://forum.ragezone.com/f353/bcstr...hoenix-906600/
Changed my hof_furnis, c_images and SQL's and still get this error:
(also changed product, and furnidata)
![]()
This could be due to serveral reasons.
I suggest you getting a new copy of your catalogue or install a backup if you have any.
Can you recommend any catalogs, just to be sure that they really work. I just want to know that am i doing something wrong.
Already did an backup still failed my dutch users getting angry that groups don't work @HillBilly
Have you actually done this part?
go to HabboHotel > Items > ItemManager and find
Code:
uint id = Convert.ToUInt16(row[0]);
and change it to
Code:
uint id = Convert.ToUInt32(row[0]);
Also Edit
Go to butterfly/habbohotel/items/catalogs/catalogitems.cs
Edit from:
this.Items.Add((uint) int.Parse(this.ItemIdString));
To:
this.Items.Add((uint) uint.Parse(this.ItemIdString));