Wednesday, December 3, 2008

Age of Conan Guide: Combo Macro tool

While so many people that bot and macro are totally bad, not only the developers that are against it, bots still can be useful for some people. Now Age of Conan bot, macro, and guides are widely shared on thousands of community sites, one of the well known ones is Strategy Freaks. not ony AoC is there, but also other 20 MMORPGs, such as the well-known WoW.

Here's part of the AoC guide from the AoC macro article on Squidoo and Strategy Freaks forums...

Age of Conan Guide: Combo Macro tool

This example the default arrow on 1,2 and 3 have been removed, and uses the arrow on the extra bars by using the ALT key to bring up the menu.
What this key does is: When you press 1 on your keyboard, The hotkey tool sends Key 1, Alt-3.

This combo can be at any lenght.

To explain the code:
The number of the key hotkey waits on before running this combo. In this case key 1. Remember, this have nothing to do with what key is binded in AOC. Because this software read keypress before AOC, and if that key is hotkey is does not send this key to AOC.
Meaning, i can press 1 on keyboard and hotkey makes that key 4 in AOC.

Tells hotkey on what window to send the keys to. Default AOC window is Age of Conan.

Decide of the combo is sendt to only local pc or remote pc also. Yes is supports multiple computers.

The first key in combo. (sends key 1 to aoc)

Then waits 500 ms befor sending next key

This does first press down the ALT key (ofc not pysicly on ur keyboard ) Then waits for 100ms before pressing the 3 key (up/right arrow) then again waits 100ms before releasing the ALT key.

This tells hotkey how longe before sending next key combo you select (if you spam the keys). This should be about the lenght of the combo animation.

Now, on ex my barbarian char i whant to spam the arrow keys without holding down ALT. So on this char i doesn replace the default 1,2 and 3 keys.

For example. I have combo xx on key 4 on my game bar, and that xx combo require Up/left arrow, Up/right arrow then Up arrow. Default is 1,3,2 ingame.

That code would look like this:

Read more...

AoC Macros: Ready to Use G15 Auto Combo Script

Hi there,

If you are looking for AoC macros and bots, there are so many community sites that allow people to share macros and bots for free, Strategy Freaks is one of those sites. If you are not sure which one to choose, you can read the review at AoC Macro articles

I was looking to make a G15 like functional macros using autohotkey, and had an idea to automate combo's regardless of what is there.

Requirements:
AutoHotkey (http://www.autohotkey.com)
Windowed Mode
Rose (Can be turned on in interface options under Hud)
1,2, and 3 must still be bound to the combat swings.

How it works:
It scans the pixels in a box that you define. If it see's the color specified (and it searches within a range since the color can be highlighted at times) it will activate that direction. Since combo's light up the direction on the rose, its easily detectable.

Setup:
First thing to do is to is rename the file extension to .ahk

Then we must setup the detection areas.
To do so...start off by opening the game, then run the script. It will tell you your mouse position (relative to current selected window) and color that is under the mouse (not just on selected window, but whatever is visible under mouse)

There is a section in the script that looks like this.

You guys can find more bots on Strategy Freaks, MMORPG bots, macro, exploits, hacks, tricks, and guides are openly shared there.
Read more...

Age of Conan Guide: Combo Macro tool

Hi guys!

Strategy Freaks is the community forum site that offers plenty of macro, bot, exploit, hacks, tricks, and guide for MMORPGs, and especially Age of Conan! Here's a quick glance of the AOC bot.

Age of Conan Guide: Combo Macro tool

Since i dont have any G15 keyboard i can't run key combos from keyboard.

So to all with none G15 keyb (or even with one )

Use this lovely and fully leagel software Hotkey! Because this program does not read screen pixels or memory locations. So u can't get banned from using this.

This is a easy and very basic tool.
What it does; Grab every selected keys from keyboard and sends a combination of keys back to a selected prog/game.

Grab it from here www.hotkeynet.com

How i use it:
Make a txt file and put in your key combos.
Here is a example of 1 key combo:
Code:






This example the default arrow on 1,2 and 3 have been removed, and uses the arrow on the extra bars by using the ALT key to bring up the menu.
What this key does is: When you press 1 on your keyboard, The hotkey tool sends Key 1, Alt-3.

This combo can be at any lenght.

Read more...

To explain the code:
The number of the key hotkey waits on before running this combo. In this case key 1. Remember, this have nothing to do with what key is binded in AOC. Because this software read keypress before AOC, and if that key is hotkey is does not send this key to AOC.
Meaning, i can press 1 on keyboard and hotkey makes that key 4 in AOC.

Tells hotkey on what window to send the keys to. Default AOC window is Age of Conan.

Decide of the combo is sendt to only local pc or remote pc also. Yes is supports multiple computers.

The first key in combo. (sends key 1 to aoc)

Then waits 500 ms befor sending next key

This does first press down the ALT key (ofc not pysicly on ur keyboard ) Then waits for 100ms before pressing the 3 key (up/right arrow) then again waits 100ms before releasing the ALT key.

This tells hotkey how longe before sending next key combo you select (if you spam the keys). This should be about the lenght of the combo animation.

Now, on ex my barbarian char i whant to spam the arrow keys without holding down ALT. So on this char i doesn replace the default 1,2 and 3 keys.

For example. I have combo xx on key 4 on my game bar, and that xx combo require Up/left arrow, Up/right arrow then Up arrow. Default is 1,3,2 ingame.

That code would look like this:

Read more...