Problem solved, added a new static
static public InvBaseItem FindByID (int id32, int _db)
{
InvDatabase db = GetDatabase(_db);
return (db != null) ? db.GetItem(id32 & 0xFFFF) : null;
}
Allows you to specify the Db you want to search for when you search for an item.