【异星计划】游戏dll修改参数加速物资投递方法
懒得放dll分享文件了,只要用dnSpy打开就很容易改,就一个参数找到【GetDeliveryTime】然后再改里面的
return Mathf.CeilToInt((float)deliveryTime * this._stationDeliveryModificator * this._missionDeliveryModificator);
为
return Mathf.CeilToInt((float)deliveryTime * this._stationDeliveryModificator / 10f * this._missionDeliveryModificator);
物资投射消耗时间就能除10,
中间加个/10了,也可以自己改其他的数值
记得不要用乘小数的方式写
谢谢分享 感谢分享 看起来很实用,谢谢分享这个方法。修改后确实可以节省不少时间,适合那些想要效率提升的玩家。
页:
[1]