首页 > 其他 > 详细

HearthBuddy投降插件2019-11-01的使用

时间:2019-11-01 23:07:51      阅读:77      评论:0      收藏:0      [点我收藏+]

 在AutoConcede.cs文件中找到如下代码

private List<int> _winList = new List<int> {0, 2, 4, 6, 8};

现在的算法是,用对战局数除以10,然后得到余数。

通过余数匹配来控制胜率(需要注意的是,10,20除以10,取余数是0)。

 

实用配置 

10场对战中,只有第6,8,10场对战正常打,其他对战全部投降。

private List<int> _winList = new List<int> {0, 6, 8};

 

 

60%的胜率

private List<int> _winList = new List<int> {0, 1, 2, 4, 6, 8};

 

 

50%的胜率

private List<int> _winList = new List<int> {0, 2, 4, 6, 8};

 

30%的胜率

private List<int> _winList = new List<int> {2, 4, 6};

 

修改系统时间

https://www.cnblogs.com/chucklu/p/11755836.html

 

HearthBuddy投降插件2019-11-01的使用

原文:https://www.cnblogs.com/chucklu/p/11779585.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!