重量制限解除

重量制限を100%まで無効にする

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

1837行目~
// edit by gyo from http://www.l2j-jp.info/forum/viewtopic.php?t=11
// if (weightproc < 500 || _dietMode)
if (weightproc < 1000 || _dietMode)
{
newWeightPenalty = 0;
}
// edit by gyo from http://www.l2j-jp.info/forum/viewtopic.php?t=11
// else if (weightproc < 666)
// {
// newWeightPenalty = 1;
// }
// else if ( weightproc < 800)
// {
// newWeightPenalty = 2;
// }
// else if (weightproc < 1000)
// {
// newWeightPenalty = 3;
// }
else
{
newWeightPenalty = 4;
}

最終更新:2008年11月03日 00:18
ツールボックス

下から選んでください:

新しいページを作成する
ヘルプ / FAQ もご覧ください。