bumpx
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));
do the above :)