• 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!

More then 100 items?

Bill3000

New Member
Joined
Jul 26, 2010
Messages
106
Reaction score
1
There is a way to make a pile of more than 100 items?

Example: the max gold you can stack is 100, right? I would like to make like 200 gold per pile.

Anyway? Like Mod or source-edit?
 
So, I looked at the item.cpp and items.cpp and found nothing =/

Btw... it will be just for one item or every item will be more then 100?
 
game.ccp have

PHP:
if(item->isStackable() && toItem)
	{
		uint32_t m = std::min((uint32_t)item->getItemCount(), maxQueryCount), n = 0;
		if(toItem->getID() == item->getID())
		{
			n = std::min((uint32_t)100 - toItem->getItemCount(), m);

18610d1359838355-more-then-100-items-yes.png
 

Attachments

Last edited:
Back
Top Bottom