Need help on figuring out dice game scoring logic
问题 So, we are creating a game in VB.net based off the game, Farkle. Basically, you roll an amount of dice and depending on what you keep is your score. We have eight dice. Here's an example, say you roll 3 "3"s and you want to score them, a three of a kind. We want to check all the dice together to see if we do have three 3's. We have figured out the two of a kind, but the three of a kind we cannot. For l = 0 To 5 For o = 1 To 6 For q = 2 To 7 If (DieScore(l) = DieScore(o) And DieScore(l) =