Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    Jim's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Summoner's Rift
    Posts
    4,250
    Reputation
    860
    Thanks
    1,556
    My Mood
    Psychedelic

    Botting For Dummies

    Botting For Dummies



    Since a lot of the other releases in this section are limited and lack adequate information, I've decided to create a new one.

    To bot you will need two programs:

    1. AutoHotKey - https://www.autohotkey.com/

    2. PMeter - https://www.pegtop.net/pmeter/

    AHK is a scripting program and PMeter is a pixel measuring program, both are necessary for programming your own bot.

    Run PMeter103, install and then open the program. Spread the ruler across the entire screen horizontal and landscape, double click the ruler to switch between the two.

    Go to your Notepad and enter this script as a basis.

    1v1
    Loop, 10000000000
    {
    Click (pixel),(pixel) ;1v1 Button
    Sleep, 10000
    Click (pixel),(pixel) ;Attack Button
    Sleep, 500
    Click, (pixel),(pixel) ;You Got An Item Button
    Sleep, 500
    click (pixel),(pixel) ;Exit From Battle Button
    Sleep, 500
    }
    Esc::ExitApp

    This may look pretty weird to those who are unfamiliar with scripting, don't worry I'll explain in detail.

    Loop, 1000000000 means how many times the script will repeat.
    { - Start script
    } - Finish sript
    Click (pixel),(pixel) means where on your screen the script will click for you, the order is landscape,horizontal e.g 1366x768
    ;(description) is just a reminder of what's being clicked
    Sleep means the time between clicks
    Esc::ExitApp means that the escape button will be used as the hotkey to exit the script

    Now, this is a basic script anyone could work on, all you need to know is the Pixel locations of the buttons.

    Open your regular web browser and get in-game, once you're in look for the pixel locations with PMeter, remember it's Landscape , Horizontal

    If you've grasped the AHK and PMeter concept you'll find it extremely easy to create in-depth scripts that will be able to level up, and train, all the way to level 30. Then you can adjust your script for 30+ leveling.

    If you have any issues simply quote me and I'll get back to you asap.
    Need a friend? Private Message
    Need a Middleman? Add me on Skype: HERE or Copy & Search >> 'aussie_sniperx'
    ---------------








    Ex-sections:
    DayZ
    OFPS
    OMMORPG
    M.A.T
    OSPFPS
    Battleon

  2. #2
    amm2100's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    Can you make video for it

  3. #3
    Jim's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Summoner's Rift
    Posts
    4,250
    Reputation
    860
    Thanks
    1,556
    My Mood
    Psychedelic
    Quote Originally Posted by amm2100 View Post
    Can you make video for it
    What are you stuck on?
    Need a friend? Private Message
    Need a Middleman? Add me on Skype: HERE or Copy & Search >> 'aussie_sniperx'
    ---------------








    Ex-sections:
    DayZ
    OFPS
    OMMORPG
    M.A.T
    OSPFPS
    Battleon

  4. #4
    astold48's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    0
    Can you use same script on mac with textedit and "save as application" method? If not, could you give me some advice on this?

    Thanks much bro!

  5. #5
    astold48's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    0
    I think I figured it out but your thoughts would be great!

  6. #6
    astold48's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    0
    using applescript editor^

  7. #7
    Smasherx74's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    67
    Reputation
    10
    Thanks
    36
    Loop, 10000000000
    {
    Click x,y ;1v1 button
    Sleep, 6000
    Click x,y ;1v1 button Repeat
    Sleep, 100
    Click x,y ;skill button
    sleep, 300
    Click x,y; Skill Slot
    sleep,150
    Click x,y ;attack button
    sleep, 300
    click x,y ;achievement
    sleep, 150
    click x,y ;exit from battle
    sleep, 500
    click x,y ;Level up button
    sleep, 500
    click x,y ;Choose Skill
    sleep, 10
    click x,y ;Choose Stat
    sleep, 10
    click x,y ;Choose Stat
    sleep, 10
    click x,y ;Choose Stat
    sleep, 10
    click x,y ;Choose Stat
    sleep, 10
    click x,y ;Level Up Confirmed
    sleep, 500
    }
    Esc::ExitApp


    This script accounts for everything for 1v1.

    Also with AutoHotKey there is a Get Pixel Color code that you use along with calling a specific program to use it on. You can pretty much bot without having to use your Cursor, but you will need to know how to use the Get Pixel Color thing or whatever it' called.
    Last edited by Smasherx74; 07-21-2014 at 07:05 AM.

  8. #8
    Jim's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Summoner's Rift
    Posts
    4,250
    Reputation
    860
    Thanks
    1,556
    My Mood
    Psychedelic
    Quote Originally Posted by Smasherx74 View Post
    Loop, 10000000000
    {
    Click x,y ;1v1 button
    Sleep, 6000
    Click x,y ;1v1 button Repeat
    Sleep, 100
    Click x,y ;skill button
    sleep, 300
    Click x,y; Skill Slot
    sleep,150
    Click x,y ;attack button
    sleep, 300
    click x,y ;achievement
    sleep, 150
    click x,y ;exit from battle
    sleep, 500
    click x,y ;Level up button
    sleep, 500
    click x,y ;Choose Skill
    sleep, 10
    click x,y ;Choose Stat
    sleep, 10
    click x,y ;Choose Stat
    sleep, 10
    click x,y ;Choose Stat
    sleep, 10
    click x,y ;Choose Stat
    sleep, 10
    click x,y ;Level Up Confirmed
    sleep, 500
    }
    Esc::ExitApp


    This script accounts for everything for 1v1.

    Also with AutoHotKey there is a Get Pixel Color code that you use along with calling a specific program to use it on. You can pretty much bot without having to use your Cursor, but you will need to know how to use the Get Pixel Color thing or whatever it' called.
    Can you give me some links? I'll do some research.
    Need a friend? Private Message
    Need a Middleman? Add me on Skype: HERE or Copy & Search >> 'aussie_sniperx'
    ---------------








    Ex-sections:
    DayZ
    OFPS
    OMMORPG
    M.A.T
    OSPFPS
    Battleon

  9. #9
    Smasherx74's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    67
    Reputation
    10
    Thanks
    36
    Quote Originally Posted by Vertice View Post

    Can you give me some links? I'll do some research.
    Some guy from one of my ED bot videos mentioned it.

    Use pixelgetcolor and ControlClick, x y, EpicDuel - PvP MMORPG Play Now - Google Chrome,,,, NA - W/e Browser youre using. This will allow you to use your mouse while it bots.

  10. #10
    ThreadOP's Avatar
    Join Date
    Jul 2014
    Gender
    female
    Posts
    23
    Reputation
    10
    Thanks
    91
    PixelSearch, X;;Y (coordinates), + ColorID <----- searches for a pixel of the specified color
    If Found
    Click X;;Y (target coordinates) <------ This to select the target
    Sleep, 2000 < sleep 2 seconds
    Click X;;Y(attack button cordinates) <------- this is to click the attack button

    Just thought this would be useful if anyone intends on using AHK.

  11. #11
    Jim's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Summoner's Rift
    Posts
    4,250
    Reputation
    860
    Thanks
    1,556
    My Mood
    Psychedelic
    Quote Originally Posted by ThreadOP View Post
    PixelSearch, X;;Y (coordinates), + ColorID <----- searches for a pixel of the specified color
    If Found
    Click X;;Y (target coordinates) <------ This to select the target
    Sleep, 2000 < sleep 2 seconds
    Click X;;Y(attack button cordinates) <------- this is to click the attack button

    Just thought this would be useful if anyone intends on using AHK.
    Is that the F1 script in your bot?
    Need a friend? Private Message
    Need a Middleman? Add me on Skype: HERE or Copy & Search >> 'aussie_sniperx'
    ---------------








    Ex-sections:
    DayZ
    OFPS
    OMMORPG
    M.A.T
    OSPFPS
    Battleon

  12. #12
    ThreadOP's Avatar
    Join Date
    Jul 2014
    Gender
    female
    Posts
    23
    Reputation
    10
    Thanks
    91
    Quote Originally Posted by Vertice View Post

    Is that the F1 script in your bot?
    >.>* my program doesn't use AHK,

    If (GetAsyncKeyState(Keys.F1)) Then
    ListBox1.Items.Add(Cursor.Position.X & "," & Cursor.Position.Y)
    End If
    Last edited by ThreadOP; 08-03-2014 at 04:54 PM.

  13. #13
    yogesh kumar's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    0
    i downloaded pmeter but its not running plz give me another link to download it.

  14. #14
    melvyn1's Avatar
    Join Date
    Oct 2014
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0
    how do you mkae this work?

  15. #15
    hermeticlock's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    7
    My Mood
    Amused
    Something worth saying:
    You put your code into notepad and save it as a .ahk, then you need to open your auto hot key folder, and hit the compiler folder, then select the application that says ahk2.exe

    Open your .ahk file into that program and then hit convert. You are then good to go, you can use your new bot.

    Something else that should be noted, if you ever want to know how to make the bot do different things, like for example, send messages, then you can go back to your auto hot key folder, then click the auto script writer folder. Open up the auto script writer in that folder (it has a top hat icon).

    Then hit the play button on that program, and then in your browser, do whatever it is you want the bot to do, it'll record your pixel locations, and all of your clicks and convert that into code.

    Just copy and paste that into a notepad file, don't forget to make it loop, and dont forget to make sure you can stop it at anytime by pressing the escape button. Additionally, you may want to change the amount of time your mouse "sleeps."

    The default code that the OP posted will make your mouse sleep for .5 seconds. Because 500 converts to 1/2 of a second, 1,000 would be 1 second, 10,000 would be 10 seconds, 60,000 a minute, and so on.

    You will go afk in Epic Duel after 15 minutes, so if you want a bot to just keep you in a room and prevent you from going afk, you would want it do be 840,000. Make sure you don't include the commas in these numbers, 800,000 needs to be:

    sleep, 800000

    If anyone has any further questions I would be more than happy to help you out. I have been using these types of bots since early 2010 in this game.

Page 1 of 2 12 LastLast

Similar Threads

  1. Phishing for Dummies.
    By HazedUp in forum Programming Tutorials
    Replies: 8
    Last Post: 09-15-2015, 03:05 AM
  2. Hacking for dummys?
    By one44 in forum Combat Arms Hacks & Cheats
    Replies: 15
    Last Post: 12-27-2008, 07:45 PM
  3. aim bot for CA
    By nighthawk3 in forum Combat Arms Hacks & Cheats
    Replies: 14
    Last Post: 08-23-2008, 10:14 AM
  4. Bots for RF-Online
    By poncho007 in forum Hack Requests
    Replies: 0
    Last Post: 12-25-2007, 10:19 AM
  5. Need a intelligent bot for Archlord
    By Elmo in forum Hack Requests
    Replies: 1
    Last Post: 11-06-2007, 02:57 PM