Hazefest's Spellcasters tutorial on using AutoHotKey in Dark Age of Camelot on the Phoenix free shard server. If you have questions and for feel like you need more information please leave a comment and I will make additional videos working through some of the inquiries. Thank you for watching!
Subscribe for more playthrough like this!
Watch Hazefest Live at / hazefest
Time Stamps for this Video:
0:00 Introduction
0:22 Overview of Ministrel
2:45 Anytime styles DD Ablative on a single key
2:55 What the AHK script information means
6:00 Setting up the first /qbind and filling the Script string
8:00 Weapon doesn't change fix
9:10 Testing the DD anytime Styles ablative string
9:45 Conditional styles - What I've learned
10:37 Side and back styles
11:45 Testing Side and Back styles
13:06 Creating pet macros
19:41 Mez and Cure mez on the same key
26:10 Charm a pet macro
30:16 Use more than one consumable in a single key
30:34 Closing thoughts
33:51 Download AHK step by step
Use the resources below to get started with AHK today!
Resources:
My Twitch channel:
/ hazefest
Ethereal Legion Discord:
/ discord
Play DAoC for FREE!
https://playphoenix.online/
Phoenix Server Rules: -Important-
https://playphoenix.online/rules
Download AutoHotKey:
https://www.autohotkey.com/
AutoHotKey Help Information:
https://www.autohotkey.com/docs/AutoH...
List of AutoHotKey Script Keys for making your own script:
https://www.autohotkey.com/docs/KeyLi...
All the AutoHotKey Scripts that I have made and/or use:
https://drive.google.com/drive/folder...
EDIT: I have updated this script by removing SetKeyDelay and changed the script to 2.0 version.
EDIT2: I have added "Script suspended" toggles and chat QoL features.
Copy/Paste Raw Script Data from the end of this video: (these are my settings, feel free to change it.)
;Song class 2.0
RETURN
#UseHook
#IfWinActive, ahk_class DAoCMWC
;toggle Script(pauses and resumes script) UPDATED
+NumLock::
Suspend,toggle
ToolTip, % A_IsSuspended ? "Script Suspended" : ""
return
;DD styles, ablative song w/ stick
1:: send b{f1}{f2}{f3}{f4}{f5}{f6}{f7}
return
;side and back styles
2:: send b{f1}{f8}{f9}{f11}{f5}y
return
;Target pet demez
0:: send ^{f1}f^{f2}
return
;speed song
z:: send ^{f5}^{f6}^q
return
;Heal song
5:: send {f5}^{f5}^{f7}
return
;power song
6:: send {f5}^{f5}^{f10}
return
;single target mez and demez
3:: send nf^{f5}^{f11}^{f2}
return
;grab pet
^e:: send n{tab}{tab}!0
return
;stun into mez
8:: send yn^{f11}
return
;Suspend when typing NEW
~NumpadEnter::
~+Enter::
~Enter::
Suspend, Toggle
ToolTip, % A_IsSuspended ? "Script Suspended" : ""
Return
;Other keys that open chat /commands, console, r reply key NEW
~NumpadDiv::
~/::
~'::
~r::
Suspend, On
ToolTip, Script Suspended
Return
;Escape closes chat window NEW
~esc::
Suspend, Off
ToolTip
Return
;control v windows default paste command NEW
~^v::
Suspend, Permit
if A_IsSuspended
SendInput, % Clipboard
Return
#UseHook off