Hey Ragsta9.
Ok, I read through your PM, and as I explained, I am unable to get in game at the moment, which means the macro is untested, but sound in Theory.
The only thing I am not sure about, is the pause function that I tried setting to '
I am not sure if AHK uses some special format for that sign or if its just enough to press the button, but try it out, and if it doesn't work, think of another button to use to pause the macro.
Other then that, a quick description:
The macro, when E is pressed, will shift to Hotbar2 (using F2) and equipping your sword, and then your shield, and then it will parry for 1 second before it switches back to Hotbar 1.
Remember to have your game setup as you described it to me in the PM, and send me feedback on the macro and I will fine tune it for you.
Copy the Quoted text into a notepad and save as yournamehere.ahk
Run the script by double clicking the .ahk file. It will Not be active until the current active window is Darkfall.
;
;Custom Macro for Premium Member Ragsta9
;
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: Lunkan
;
;the DELETE closes the macro down
;completely.
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
^:
IfWinActive, Darkfall Online
{
Send {Alt down}
Sleep, 50
Send 2
Sleep, 20
Send {Alt up}
Sleep 200
Send 1
Sleep, 700
Send 2
Sleep, 700
Send {v down}
Sleep, 1000
Send {v up}
Sleep, 200
Send {Alt down}
Sleep, 50
Send 1
Sleep, 50
Send {Alt up}
Sleep, 200
}
return
Delete::ExitApp
Edit: Had it tested and edited it to work more smoothly. The pause button didnt work, so it was changed to ALT+E to activate the macro, otherwise it would be impossible to type the letter E in game since that would start the macro (even if it is paused). It also removed the need for a pause button.