Easy tutorial on own bot making vb 6.0 menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    Justei's Avatar Member
    Reputation
    20
    Join Date
    Mar 2008
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Easy tutorial on own bot making vb 6.0

    Hello, i decided to make a easy tutorial on some Visual Basic 6.0
    This is kind of basic, also im pretty sure there will be some people whining about vb sucking and Auto-it being better.

    Well its like this, i do not know Auto-it becouse its not what i am goint to learn further on when i got to college, i will prolly learn C, C#, C++. I learned VB a long time ago and i think it can be really handy sometimes. So that is a explanation to why i am doing this in VB. So please if you have some comment like "This would be so much easier in Auto-It." Or similar then please do not post it, keep it to yourself. I know this language and i am going to make the best i can to make people enjoy themselves and have fun.


    Now, you will need:

    Visual basic 6.0 (you can find this in Visual Studio)



    Lets get started!

    First off we will make a New project:






    Then we go on and edit the window (form) we will use today:






    Now make a textbox, you can find it on the menu to the left:







    Go on and make a Timer, also to be found to the left :
    (note: Leave all names to default!)






    And finally Add a Button! Also to be found to the left:










    Lets get to the code!




    First off, Select the Timer and give the interval the ammount you wish. The time is in MS = miliseconds, meaning 0.001sec, 1000 of those = 1 sec. We will be using 2000 today so fill in 2000 in the Interval box on the timer. Then also make the timer FALSE


    Then we go on to the code, please click the button twice and a coding window should appear. It should look something like this:

    Code:
    Private Sub Command1_Click()
    
    End Sub


    Now insert this code in there:
    Timer1.enabled = true

    It should look like this:

    Code:
    Private Sub Command1_Click()
    Timer1.enabled = true
    End Sub
    Now, lets go to the timers code, klick the timer so that you get to the code of it, and then insert this:

    SendKeys Text1.Text


    So it should look like this:

    Code:
    Private Sub Timer1_Timer()
    SendKeys Text1.Text
    End Sub

    What does this do?

    Well, basicly when you press the button, the timer starts, the timer will send the key that you have entered in the textbox each 2 seconds (2000ms).




    Please do experiment with this! This DOES work on WoW you can send keys etc, just make sure you dont use a too fast interval on the timer, becouse you could screw up bigtime ^^ imagine your pc trying to send information 1000/times a sec... not a good idea, so use something like 500ms (0.5 sec) OFC when you are doing commands such as WASD in wow, well then you can do them rly fast cos you are walking, not such a big deal. Just be careful!



    Anyway, if you want to make a .exe out of this go to :

    File->Make project1.exe
    (file is in the top left corner ^^)


    // Your sincerely Justei



    Have fun! and i hope this helped someone!



    Sample project to download:
    http://freeftp.mine.nu/new/filer/ano...tTuTSource.zip

    Easy tutorial on own bot making vb 6.0
  2. #2
    The Maffyx's Avatar Contributor

    Reputation
    249
    Join Date
    Feb 2007
    Posts
    1,186
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No offense or anything and I know this is probably the language you know best but I would suggest learning the newer updated VB as it is a lot easier.


  3. #3
    Justei's Avatar Member
    Reputation
    20
    Join Date
    Mar 2008
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by The Maffyx View Post
    No offense or anything and I know this is probably the language you know best but I would suggest learning the newer updated VB as it is a lot easier.
    Yea i know ^^ but since im going to college in a couple of months where im goin to learn c based languages prolly, im learning c++ atm ^^ wanna make my studies easier later on so i can put more time on the math, since thats my weak side xD
    but thanks for the tip!

  4. #4
    The Maffyx's Avatar Contributor

    Reputation
    249
    Join Date
    Feb 2007
    Posts
    1,186
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Justei View Post
    Yea i know ^^ but since im going to college in a couple of months where im goin to learn c based languages prolly, im learning c++ atm ^^ wanna make my studies easier later on so i can put more time on the math, since thats my weak side xD
    but thanks for the tip!
    Aye, gotcha


  5. #5
    Liteness's Avatar Member
    Reputation
    7
    Join Date
    Mar 2008
    Posts
    240
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good tut, should be in guides section

    But yea i dl'ed the newer VB, 6.0 is for new coders.

  6. #6
    Kn1v3s37's Avatar Member
    Reputation
    6
    Join Date
    Jan 2007
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just a tip-

    For the Command1_Click method, change
    Code:
    Timer1.Enabled = True
    to
    Code:
    Timer1.Enabled = Not Timer1.Enabled
    Simply put, Not will change a boolean value. So if it is enabled, it will turn to disabled, etc.

    Thanks for the idea, though.

    edit: Tab your lines of code! Makes it nicer to look at >.>
    Last edited by Kn1v3s37; 04-25-2008 at 06:32 PM.

  7. #7
    tehdead4428's Avatar Member
    Reputation
    2
    Join Date
    Aug 2007
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice common sense to VB6 users but alot of ppl wouldnt no i guess GJ

    sidnote: VB.net is FTL full of backward refernceing and its API control is a joke might as well just code with Notepad.

  8. #8
    The Maffyx's Avatar Contributor

    Reputation
    249
    Join Date
    Feb 2007
    Posts
    1,186
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tehdead4428 View Post
    Nice common sense to VB6 users but alot of ppl wouldnt no i guess GJ

    sidnote: VB.net is FTL full of backward refernceing and its API control is a joke might as well just code with Notepad.
    I have no problem controlling my keyboard/mouse w/ VB.net, I'm actually writing up a bot right now that uses the keyboard, but i'm not exactly going to say what it does until it's released.


  9. #9
    TuFF's Avatar Contributor
    Reputation
    120
    Join Date
    Aug 2007
    Posts
    352
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wrong Section

    Should be in Programming Section

    Nice Contrib Tho

  10. #10
    Justei's Avatar Member
    Reputation
    20
    Join Date
    Mar 2008
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    okay, sorry if its the wrong selection :P i looked around and found like the bot and programming selection, and was like, hmm shouldnt there be a programmin or guide selection? but didnt find em xD (noob on site ftl) and well i took it here xD

  11. #11
    Antix's Avatar Member
    Reputation
    4
    Join Date
    Mar 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tehdead4428 View Post
    Nice common sense to VB6 users but alot of ppl wouldnt no i guess GJ

    sidnote: VB.net is FTL full of backward refernceing and its API control is a joke might as well just code with Notepad.
    As a programmer who's been working with VB6 for 4+ years now, I agree.

    There is no downside to using VB6 instead of VB.NET.

    (and nothing you can do on VB.NET that you can't on VB6)

  12. #12
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Antix View Post
    As a programmer who's been working with VB6 for 4+ years now, I agree.

    There is no downside to using VB6 instead of VB.NET.

    (and nothing you can do on VB.NET that you can't on VB6)
    Except for the generic classes which don't box/unbox for arrays. All the libraries included in .NET. Oh and don't forget the better efficiency. Yea, there's no difference.

  13. #13
    Yfazo's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How detectable is this by warden?

  14. #14
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice little tutorial for learning

  15. #15
    ^Xayo's Avatar Contributor
    Reputation
    214
    Join Date
    Sep 2007
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Yfazo View Post
    How detectable is this by warden?
    Wanted to ask the same question ^^
    Is it easy for warden to recognize what the exe is doing ?

Page 1 of 2 12 LastLast

Similar Threads

  1. Anti afk bot + make your own
    By EvilSparx in forum World of Warcraft Bots and Programs
    Replies: 10
    Last Post: 08-21-2008, 11:57 AM
  2. Making my own bot.
    By Erlingi in forum World of Warcraft General
    Replies: 2
    Last Post: 03-16-2008, 06:11 PM
  3. WoWRemote make ya own bot
    By r00tman in forum World of Warcraft Bots and Programs
    Replies: 21
    Last Post: 12-03-2007, 12:16 PM
  4. F making your own bot path
    By Cherry Got Wowed in forum World of Warcraft Guides
    Replies: 7
    Last Post: 10-22-2007, 01:46 PM
  5. Make your own Bots for Wow/EQ2
    By HunterHero in forum World of Warcraft Bots and Programs
    Replies: 0
    Last Post: 10-19-2006, 10:05 AM
All times are GMT -5. The time now is 03:27 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search