重量制限を解除しよう!!
持ち物が重くなるとペナルティ(足が遅くなったりMP回復が遅くなったりなど)を解除
下の行をコメントアウト
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;
}
最終更新:2009年03月18日 23:44