初级玩家

- 贡献度
- 0
- 金元
- 920
- 积分
- 92
- 精华
- 0
- 注册时间
- 2011-9-4
|
if (num < 0f)
{
num = 0f;
}
num *= 10f;
this.sellsPerWeek[0] = Mathf.RoundToInt(num);
this.units += Mathf.RoundToInt(num);
this.mS_.AddVerkaufsverlaufKonsolen((long)Mathf.RoundToInt(num));
long num9 = (long)Mathf.RoundToInt(num);
num9 *= (long)this.GetAktuellProductionsCosts();
this.mS_.Pay(num9, 23);
this.costs_production += num9;
long num10 = (long)Mathf.RoundToInt(num);
num10 *= (long)this.verkaufspreis;
this.mS_.Earn(num10, 9);
this.umsatzTotal += num10;
就加了这个代码!别家的主机销量非常的高! |
|