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 like this!
Watch Hazefest Live at / hazefest
Time Stamps for this Video:
0:00 Introduction
0:36 Download AutoHotKey
1:40 Offensive/Defensive on a single key
2:48 Setting up /qbinds
4:38 How to check if the AHK script is running
4:55 Offensive/Defensive showcase
5:15 Adding /face macro to the Off/Def string
5:56 Testing /face in Off/Def script
6:08 /face Quickcasting crowd control script
8:12 QuickCast CC showcase
8:49 Debuffing concepts
12:49 Overwhelming Debuff showcase 1
15:16 Overwhelming Debuff showcase 2
15:53 Manipulating your pets with scripts
19:06 Spells with pet commands showcase
20:07 Double Offensive spells concepts
21:41 Double Offensive spells showcase
23:42 Closing remarks/Thanks for watching!
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...
Here is an image of my /qbinds at the end of this video.
https://ibb.co/zSFyPTC
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:
;Sorc 2.0
RETURN
#UseHook
#IfWinActive, ahk_class DAoCMWC
;toggle Script(pauses and resumes script) UPDATED
+NumLock::
Suspend,toggle
ToolTip, % A_IsSuspended ? "Script Suspended" : ""
return
;Mez and demez
3:: send f^{f2}{f9}{f11}
return
;Face Quickcast AOE CC
0:: send f{f1}{f5}^{f3}^
return
;Quad STR/Con/dex/quick/Heat/Matter/Cold debuff
6:: send f{F6}{F7}{F8}^{F10}
return
;dex/quick/Heat/Matter/Cold debuff
7:: send f{F2}{F3}^{F10}
return
;dex/quick/Heat/Matter/Cold debuff
1:: send f^{F5}^{F6}
return
;Amnesia spam
2:: send f^{f8}^{f2}^{f8}
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