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.