Through this tutorial, you'll learn how to create a simple macro that you can use during guild boss to spam your skills unlimited times until you press a key to stop it.
I don't have much knowledge in scripting so if you are interested in creating an advance one, I suggest that you do more research.
Installing Autohotkey. (https://autohotkey.com/)
1. Download a clean copy of AHK (autohotkey). Click HERE
2. Run the installer > Express Installation. (It's pretty simple to install)
3. Close it.
Creating a macro.
1. In your desktop right click > New > AutoHotkey Script
- if there is no autohotkey script in the choices, you can use notepad instead but make sure to save it with .ahk as extension. Example. Skillspam.ahk or guildboss.ahk
3. Right click it and choose edit script. A notepad or your default text editor should open.
4. Delete everything written on it.
Example scripts for action mode:
- You can copy paste this in your notepad to test. (do not copy the red line)
===============================
$F1::
Loop{
sleep 50
MouseClick, Right
if GetKeyState("Delete","p")
break
sleep 50
MouseClick, Left
if GetKeyState("Delete","p")
break
sleep 50
if GetKeyState("Delete","p")
break
send {F1}
sleep 50
if GetKeyState("Delete","p")
break
send 1
sleep 50
if GetKeyState("Delete","p")
break
send 2
}
return
==============================
Script Explanation:
To execute the script you need to press F1 key. Once you press the F1 key it will spam right and left clicks and 1 and 2 keys, unlimited times until you press the DELETE key in your keyboard.

- Follow Me on Twitter!
- "Join Me on Facebook!
- RSS
Contact