Total Members Voted: 38
An RGB selection screen would be good, but we'd need the game to not let people be within X units in R, G, and B of each other. The units will look almost the same.
btnColor_Click...Dim intPlrR As Integer = Val(Me.txtPlrRed.Text)Dim intPlrB As Integer = Val(Me.txtPlrBlu.Text)DIm intPlrG As Integer = Val(Me.txtPlrGrn.Text)Dim intOpn1R As Integer = Val(Me.lblOp1Red.Text)Dim intOpn1B As Integer = Val(Me.lblOp1Blu.Text)Dim intOpn1G As Integer= Val(Me.lblOp1.Text)'Repeat 4,5,6 for # of opponentsIf intPlrR = intOpn1R - 5 And intPlrB = intOpn1B - 5 And intPlrG = intOpn1G -5 Then Me.lblClrChk.Text = "Too Close To Opponents Colour"ElseIf intPlrR = intOpn1R +5 And intPlrB = intOpn1B + 5 And intPlrG = intOpn1G +5 Then Me.lblClrChk.Text = "Too Close To Opponents Colour"'repeat for all values between 0 to 5 for all 8 opponents (if applyable)