Browsing as a guest
Hello! You are currently browsing this thread as a guest, If you would like to reply to this thread, please
or Register


Blue
Small Showcase - A automated bot [VB2010]
#1
[Image: af45224b18757e5cd06cacdf6a268c95.png]
This is a program I am working on for the online-game Roblox. It scans groups and outputs ones with money and no-owners to a list so that you can go in and claim the rewards for yourself. It also has a HWID checker system and is encrypted, so when I give it to my friends, they can't release it to others. This is REALLY easy to make and anyone can do it, so I will give the main chunk of my code below, however, not all of it since there are some parts that make my checker unique.
Code:
       If Label3.Text = "One" Then
           Dim x As Integer
           x = 0
           Do Until Form2.CheckBox1.Checked = True
               Dim rndnumber As Random
               Dim number As Integer
               rndnumber = New Random
               number = rndnumber.Next(0, 1000000)
               Dim group
               group = "https://www.roblox.com/groups/group.aspx?gid=" & number.ToString()
               Form2.TextBox1.Text = number.ToString
               Form2.TextBox2.Text = group
               Form2.WebBrowser1.Navigate(group)
               Delay(3)
               If Form2.WebBrowser1.DocumentText.Contains("No One!") Then
                   Form2.ListBox1.Items.Add(Form2.WebBrowser1.Url)
               End If
               If Form2.WebBrowser1.DocumentText.Contains("No One!") And Form2.WebBrowser1.DocumentText.Contains("Funds:") Then
                   ListBox1.Items.Add(Form2.WebBrowser1.Url)
                   If RadioButton1.Checked = True Then

                   Else

                   End If
               End If
               x = x + 1
               Label5.Text = x
               Delay(1)
           Loop

Reply
#2
Feel free to hmu with the program :)
Reply
#3
(12-06-2016, 01:13 AM)Cyber Wrote: Feel free to hmu with the program :)

Sent you a PM, with the program so I can get your HWID to white-list you.
Reply
#4
Looks really nice I guess! I mean I can see some flaws in the bit of code you released that I'd fix but other than that amazing!
Reply
Browsing as a guest
Hello! You are currently browsing this thread as a guest, If you would like to reply to this thread, please
or Register