HearthBuddy surrender the use of plug-2019-11-01

 Locate the following code in the file AutoConcede.cs

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

Now the algorithm is logarithmic war divided by 10, and then get the remainder.

Winning controlled by matching the remainder (Note that 10, 20 divided by 10, take the remainder is 0).

 

60% winning percentage

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

 

 

.500

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

 

30% winning percentage

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

 

Guess you like

Origin www.cnblogs.com/chucklu/p/11779585.html