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

 在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};

 

0%的胜率,也就是说一直投降

private List<int> _winList = new List<int>();

 

 

 

60%的胜率

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

 

40%的胜率

private List<int> _winList = new List<int> {0, 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

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(968)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2017-11-01 web security
2017-11-01 Making ViewState More Secure
2017-11-01 What is the difference between Web Farm and Web Garden?
2017-11-01 dotnet core test with NUnit
2016-11-01 DevExpress Crack
2016-11-01 GitHub如何在自己的Stars中进行搜索
点击右上角即可分享
微信分享提示