View Single Post
  #6  
Old 07-30-2011, 08:57 PM
lerxst2112
Demi-God
 
Join Date: Aug 2010
Posts: 1,742
Default

StackSize in the Item_Struct is a uint8. That means 255 is as high as you can go without overflowing. As an example, if you set it to 1000 in the database it would get converted to (1000 % 256) or 232 when the item was loaded.

You could potentially change the code to allow for a different variable size, but there may also be a limit on the client side.
Reply With Quote