This isn't one those CBL Checker tutorials all over other forums. This one was made by me

I found out a different method on checking the CBL because the other one was 'patched.'
Materials:
1 Label
1 Textbox
1 Button
2 Radio Buttons
1 WebBrowser
First,
Arrange all the tools in this order.
Add the following code inside Form1_Load
Code:
RadioButton1.Checked = True
WebBrowser1.ScrollBarsEnabled = False
Add the following code inside Button1_Click
Code:
If RadioButton1.Checked = True Then
Me.WebBrowser1.Navigate(("http://sig.thecbl.net/player/" & Me.TextBox1.Text & ".jpg"))
End If
If RadioButton2.Checked = True Then
Me.WebBrowser1.Navigate(("http://sig.thecbl.net/clan/" & Me.TextBox1.Text & ".jpg"))
End If