• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Help - Depot Box max 5 items.

BeeLAeNTe

New Member
Joined
Jan 28, 2016
Messages
7
Reaction score
0
I have a problem on OTX 3.10.

Why i can stack max 5 items in depot box? When i try put more, then i have a message "Sorry not possible"
This problem is in all depot boxes. Can anyone help me with that?
 
Solution
In player.lua

change:
Lua:
 if topParent and topParent:isItem() and topParent:getItemHoldingCount() >= 5 then
to
Lua:
 if topParent and topParent:isItem() and topParent:getItemHoldingCount() >= 500 then
In player.lua

change:
Lua:
 if topParent and topParent:isItem() and topParent:getItemHoldingCount() >= 5 then
to
Lua:
 if topParent and topParent:isItem() and topParent:getItemHoldingCount() >= 500 then
 
Solution
Back
Top