08-04-2009, 03:25 AM
Code:
Private Sub Check4_Click()
Dim index As Long
If Check4.Value = 1 Then
txtRight = GetPlayerMap(MyIndex) + 1
End If
End Sub
Also think you can do something like:
Code:
Private Sub Check4_Click()
Dim index As Long
If Check4.Value = 1 Then
txtRight = Map.num + 1
End If
End Sub
If it's client side.