投稿者 トピック: [All] 乗り物の詳細にある最大収益の値が意味のない数値になっている  (参照数 3525 回)

z9999+

  • 管理人
  • 急行
  • *
  • 投稿: 381
乗り物の詳細にある最大収益の計算式を見ると、「100タイル分の最大収益-1タイル分の維持費」になっていて、この式から計算される数値には意味がない。

Value of max. income on convoi detail window is meaningless.

引用
const sint32 price = (v->get_fracht_max()*(grundwert128>grundwert_bonus ? grundwert128 : grundwert_bonus))/30 - v->get_betriebskosten();
            money_to_string( number, price/100.0 );
This fomula means max. price of 100 tiles trip minus running cost of 1 tile trip.
So, this result of fomula is meaningless.

If you want to get max. income of 1 tile trip, It must be devided by 3000 instead of 30.
If you want to get max. income of 100 tile trip, running cost must be multiplied by 100.
« 最終編集: 2012/05/06 06:14 by z9999+ »

prissi

  • 各駅停車
  • *
  • 投稿: 45
Thanks for pointing this out.