乗り物の詳細にある最大収益の計算式を見ると、「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.