java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java

1850行付近

if (weightproc < 500 || _dietMode)
{newWeightPenalty = 0;}
	else if (weightproc < 666)
{newWeightPenalty = 1;}
	else if ( weightproc < 800)
{newWeightPenalty = 2;}
	else if (weightproc < 1000)
{newWeightPenalty = 3;}
	else
{newWeightPenalty = 4;}

下記の様に変更


if (weightproc < 1000 || _dietMode)
{newWeightPenalty = 0;}
//else if (weightproc < 666)
//	{newWeightPenalty = 1;}
//else if ( weightproc < 800)
//	{newWeightPenalty = 2;}
//else if (weightproc < 1000)
//	{newWeightPenalty = 3;}
 else
{newWeightPenalty = 4;}←この4を0に変えると無制限?
最終更新:2007年08月07日 16:23