Cl0ne's Toolkit - 2012 Release!

Discussion in 'Programming General' started by Cl0ney, Apr 30, 2012.

Cl0ne's Toolkit - 2012 Release!
  1. Unread #1 - Apr 30, 2012 at 12:27 AM
  2. Cl0ney
    Joined:
    Apr 29, 2012
    Posts:
    7
    Referrals:
    0
    Sythe Gold:
    0

    Cl0ney Newcomer

    Cl0ne's Toolkit - 2012 Release!

    Hey everyone! My name is Cl0ne, and I have just finished making my first Visual Basic 2010 program! I have started a toolkit, mainly for Runescape users, but I hope that you all can use it in your games as well! Since this my first VB.NET program it would be greatly appreciated of you all if you could be nice and tell me what you think! Also if I could get a few pointers/perks to add to the program, that would be an added bonus... I am planning on releases more versions of my Toolkit later on, with plenty of useful items, including a screen recorder, calculator, ETC... This program is completely virus free, but if you dont believe me, I will post the VirusTotal scan results, and I also encourage to do your own scan as well! Please try and reply! Thank you all for your time! Sincerely, Cl0ne.

    ------Cl0ne's Toolkit------
    Autoclicker
    Autotyper
    More to come....

    If this program did not work for you, try downloading and installing .Net Framework 4.0 from the Microsoft website!
    http://www.microsoft.com/en-us/download/details.aspx?id=17851

    Here is the VirusTotal.com scan of my Program!
    https://www.virustotal.com/file/22e6e5654337a66523b88715ede6c0b8772baad1019b10724f3fa7c6d399dbcf/analysis/1335759044/

    Last but not least, The Executable file (.exe) is in the .rar file. use Winrar to extract the program!
    http://www.rarlab.com/download.htm

    Here is the Link to the Program download page!
    http://www.sendspace.com/file/fa5gt7


    [​IMG]


    Source Below:


    Code:
    [B]Autotyper Source:[/B]
    
    Public Class Form3
    
        Private Sub Form3_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
            Timer1.Stop()
            Timer2.Stop()
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            SendKeys.Send(TextBox1.Text)
            SendKeys.Send("{Enter}")
        End Sub
    
        Private Sub Timer2_Tick(sender As System.Object, e As System.EventArgs) Handles Timer2.Tick
            SendKeys.Send(TextBox1.Text)
            SendKeys.Send("{Enter}")
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Timer1.Interval = TextBox2.Text * 1000
            Timer1.Enabled = True
            Timer1.Start()
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Timer1.Stop()
            Timer2.Stop()
        End Sub
    
        Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
            Timer2.Interval = 100
            Timer2.Enabled = True
        End Sub
    
        Private Sub Button4_Click(sender As System.Object, e As System.EventArgs) Handles Button4.Click
            Timer1.Stop()
            Timer2.Stop()
            TextBox1.Clear()
        End Sub
    
        Private Sub Button5_Click(sender As System.Object, e As System.EventArgs) Handles Button5.Click
            Me.Close()
        End Sub
    End Class
    
    Code:
    [B]Autoclicker Source:[/B]
    
    
    Public Class Form2
        Declare Sub mouse_event Lib "user32.dll" Alias "mouse_event" (ByVal dwFlags As Integer, ByVal dx As Integer, ByVal dy As Integer, ByVal cButtons As Integer, ByVal dwExtrainfo As Integer)
    
        Private Sub MyMethod()
            Windows.Forms.Cursor.Position =
                New System.Drawing.Point(Windows.Forms.Cursor.Position)
            mouse_event(&H2, 0, 0, 0, 1)
            mouse_event(&H4, 0, 0, 0, 1)
        End Sub
    
        Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
            Timer1.Enabled = True
        End Sub
    
        Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
            Timer1.Enabled = False
        End Sub
    
        Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
                Timer1.Interval = TextBox1.Text
                MyMethod()
        End Sub
    
        Private Sub CheckBox1_CheckedChanged(sender As System.Object, e As System.EventArgs)
            TextBox1.Text = TextBox1.Text + 1
        End Sub
    
        Private Sub Button3_Click(sender As System.Object, e As System.EventArgs) Handles Button3.Click
            Me.Close()
        End Sub
    End Class
    
    ---------------------------------------------------------------------
    I was about to post an image of the starting form in my program, but for some reason it wont let me, so i'll provide a link of images to all of the forms for my programs :) ...
     
  3. Unread #2 - May 1, 2012 at 7:06 AM
  4. matt_sells
    Joined:
    Nov 28, 2011
    Posts:
    78
    Referrals:
    0
    Sythe Gold:
    0

    matt_sells Member

    Cl0ne's Toolkit - 2012 Release!

    if its your first program the codings going to be sloppy why not give out your source code as well instead of making people download a .exe file from a totally new user.
     
  5. Unread #3 - May 1, 2012 at 6:24 PM
  6. Cl0ney
    Joined:
    Apr 29, 2012
    Posts:
    7
    Referrals:
    0
    Sythe Gold:
    0

    Cl0ney Newcomer

    Cl0ne's Toolkit - 2012 Release!

    sounds good, i will add the source code.. it would be nice if everyone could download the program as well, just to test it out for me... no viruses, Guaranteed. the only thing that is "sloppy" about the program in my opinion, is the fact that there aren't any hotkeys in the autotyper or autoclicker yet... other than that I would say it is pretty decent.
     
  7. Unread #4 - May 1, 2012 at 8:51 PM
  8. Darthatron
    Joined:
    May 22, 2006
    Posts:
    1,612
    Referrals:
    3
    Sythe Gold:
    0

    Darthatron Massive Troll
    Retired Sectional Moderator Visual Basic Programmers

    Cl0ne's Toolkit - 2012 Release!

    Please use
    Code:
     tags man. Or even upload the project file. It's painful to read code combined with normal text. :\
     
  9. Unread #5 - May 1, 2012 at 8:57 PM
  10. Cl0ney
    Joined:
    Apr 29, 2012
    Posts:
    7
    Referrals:
    0
    Sythe Gold:
    0

    Cl0ney Newcomer

    Cl0ne's Toolkit - 2012 Release!

    sorry... i meant to do that
     
  11. Unread #6 - May 2, 2012 at 10:11 PM
  12. Cl0ney
    Joined:
    Apr 29, 2012
    Posts:
    7
    Referrals:
    0
    Sythe Gold:
    0

    Cl0ney Newcomer

    Cl0ne's Toolkit - 2012 Release!

    So what do all of you think of it so far?
     
  13. Unread #7 - May 5, 2012 at 6:33 PM
  14. iJava
    Joined:
    Nov 21, 2011
    Posts:
    1,184
    Referrals:
    9
    Sythe Gold:
    464
    Discord Unique ID:
    220055593568829441

    iJava .Previously known as RSGoldRush
    $200 USD Donor New

    Cl0ne's Toolkit - 2012 Release!

    Design is horrible.
     
  15. Unread #8 - May 6, 2012 at 12:46 AM
  16. Cl0ney
    Joined:
    Apr 29, 2012
    Posts:
    7
    Referrals:
    0
    Sythe Gold:
    0

    Cl0ney Newcomer

    Cl0ne's Toolkit - 2012 Release!

    seriously? you have to be that rude? I doubt its "horrible" especially for my first program...
     
  17. Unread #9 - May 6, 2012 at 5:06 AM
  18. iJava
    Joined:
    Nov 21, 2011
    Posts:
    1,184
    Referrals:
    9
    Sythe Gold:
    464
    Discord Unique ID:
    220055593568829441

    iJava .Previously known as RSGoldRush
    $200 USD Donor New

    Cl0ne's Toolkit - 2012 Release!


    I'm sorry, design needs to be worked on. It looks messy and something I would design in my first week of starting programming. Try loading the applet.
     
  19. Unread #10 - May 6, 2012 at 5:34 AM
  20. Cl0ney
    Joined:
    Apr 29, 2012
    Posts:
    7
    Referrals:
    0
    Sythe Gold:
    0

    Cl0ney Newcomer

    Cl0ne's Toolkit - 2012 Release!

    How do I load the applet? And also, yes it was my first week of coding... tell me what you would add to the design. The background took me like an hour to make in Photoshop, I did it really quick because I needed something fast, since I had a bf3 background for personal use.. It would be nice if I could get constrictive criticism instead of you putting me down for your benefit... Thanks.
     
  21. Unread #11 - May 6, 2012 at 5:39 AM
  22. iJava
    Joined:
    Nov 21, 2011
    Posts:
    1,184
    Referrals:
    9
    Sythe Gold:
    464
    Discord Unique ID:
    220055593568829441

    iJava .Previously known as RSGoldRush
    $200 USD Donor New

    Cl0ne's Toolkit - 2012 Release!

    What I'd do is.... Don't have any buttons to launch an autoclicker etc, just have that stuff as a menu item, as for loading the applet due to your knowledge of coding I'd suggest just using a web browser to load the game. For the landing screen have like Updates or something like that, but just ditch that background and the buttons.
     
  23. Unread #12 - May 7, 2012 at 3:34 PM
  24. Cl0ney
    Joined:
    Apr 29, 2012
    Posts:
    7
    Referrals:
    0
    Sythe Gold:
    0

    Cl0ney Newcomer

    Cl0ne's Toolkit - 2012 Release!

    Ok, there is something I can work with.... The only thing that I am not sure what you mean is "...I'd suggest just using a web browser to load the game." so basically you are saying that I should make this a web browser and have a button or menu item on this browser that leads to the RuneScape website? I could do that if that is what you mean.. (Kind of like SwiftKit?) Also, until I make this "Web browser" I will keep the background... Thanks for working with me, and being the first person to suggest stuff! Sincerely, Cl0ne.
     
  25. Unread #13 - May 8, 2012 at 12:21 AM
  26. iJava
    Joined:
    Nov 21, 2011
    Posts:
    1,184
    Referrals:
    9
    Sythe Gold:
    464
    Discord Unique ID:
    220055593568829441

    iJava .Previously known as RSGoldRush
    $200 USD Donor New

    Cl0ne's Toolkit - 2012 Release!

    Have a Play menu item or button and have it load the actual game like http://world1.runescape.com/ in a web browser, if you can try make it tabbed.
     
  27. Unread #14 - May 8, 2012 at 3:50 AM
  28. Cl0ney
    Joined:
    Apr 29, 2012
    Posts:
    7
    Referrals:
    0
    Sythe Gold:
    0

    Cl0ney Newcomer

    Cl0ne's Toolkit - 2012 Release!

    yea makes sense thanks. ill get on it
     
  29. Unread #15 - Aug 6, 2012 at 5:00 PM
  30. Sw1ft Kyle
    Joined:
    Aug 5, 2012
    Posts:
    90
    Referrals:
    0
    Sythe Gold:
    0

    Sw1ft Kyle Member

    Cl0ne's Toolkit - 2012 Release!

    you can do that same thing to your clicker that you did to you typer:

    Code:
     Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
    Timer1.Interval = TextBox1.Text * 1000 'so people can just type simple numbers here
    
    MyMethod()
    
    End Sub
     
  31. Unread #16 - Aug 10, 2012 at 2:05 PM
  32. Ginger.James
    Joined:
    Aug 6, 2012
    Posts:
    70
    Referrals:
    0
    Sythe Gold:
    0

    Ginger.James Member
    Banned

    Cl0ne's Toolkit - 2012 Release!

    Just a positive suggestion:

    I recommend that you should revamp the graphics on the main page which takes you to the tools. Maybe a more professional look will get more users - which could relate to more publicity. A simplistic design should work.
     
< DynaMac- Dynamic Macro Software for Java | A ghost mouse >

Users viewing this thread
1 guest


 
 
Adblock breaks this site