INSERT INTO SA_BETA_GAMEDB_0002.PaGamePrivate.TblItemRepository (
_itemKey, _productionRegionKey, _enchantLevel,
_itemWhereType, _ownerNo, _variousNo,
_count, _endurance, _maxEndurance
)
VALUES (
/* item */ 719901, -- e.g. Silver=1
/* region */ 1, -- must be > 0 (Region is 1)
/* enchant */ 20,
/* where type */ 0, -- 0 is inventory (17 pearl, 1 equipSlot)
/* owner */ 10,
/* variousNo */ 50, -- ensure it doesn't collide
/* count */ 1,
/* endurance */ 100, -- 32767 if not 100 (weapon/etc = 100. Items = 32767)
/* maxEndurance */ 100 -- 32767 if not 100 (weapon/etc = 100. Items = 32767)
);