[HIDE]
[/HIDE]
SQL:
USE SRO_VT_SHARD
Declare @NEWMaxStack int
Declare @ItemID int
--##########################
SET @NEWMaxStack = 75 /* e.g. for the new Stack */
SET @ItemID = '' -- ID from ItemData.txt e.g. SET @ItemID = '4'
--##########################
UPDATE dbo._RefObjItem
SET MaxStack = @NEWMaxStack
WHERE ID = (SELECT Link FROM _RefObjCommon WHERE ID like @ItemID)