Eden - AutoHotKey Basic Tutorial (2023)
Hazefest goes over some very basic information about AutoHotKey for DAoC. This video is best used for the Eden Freeshard Server.
The link below will guide you through AHK installation, Full AHK Key list, and has Hazefest AHK strings you can pick to copy from directly into your scripts.
AutoHotKey Eden Written Guide: https://docs.google.com/document/d/1AzkcJZFh29vJ4sT3Mg6-psj_Do2p1QXPoBmdcQtjmQQ/edit?usp=share_link
Eden Google Drive: https://drive.google.com/drive/u/1/folders/1eUEK97JcZMf_AOhztPS-5vTTITPHq9Kb
I will make additional videos for class/archetype specific scripts as I have the time.
If you want to share AHK knowledge ping me on Discord - Hazefest#1135
If you want to copy the basic script below and begin creating your own AHK strings feel free to do so.
;New Script (Rename)
RETURN
#UseHook
#IfWinActive, ahk_class DAoCMWC
#MaxThreadsPerHotkey 5
#MaxHotKeysPerInterval 400
#NoEnv
;Information about this string goes here.
$3::
{
Send {Shift down}{f1}{Shift up}
Send {Ins}
Send {Home}
Send p
}
return
;Suspend when typing
~NumpadEnter::
~+Enter::
~Enter::
Suspend, Toggle
ToolTip, % A_IsSuspended ? "Script Suspended" : ""
Return
;Other keys that open chat /commands, console, r reply key
~NumpadDiv::
~/::
~'::
~r::
Suspend, On
ToolTip, Script Suspended
Return
;Escape closes chat window and resumes AHK script
~esc::
Suspend, Off
ToolTip
Return
;control v windows default paste command in DAoC chat
$^v::
Suspend, Permit
if A_IsSuspended
SendInput, % Clipboard
Return
#UseHook off
Other Videos By Hazefest
Other Statistics
Dark Age of Camelot Statistics For Hazefest
Hazefest currently has 62,010 views spread across 54 videos for Dark Age of Camelot. About 16 hours worth of Dark Age of Camelot videos were uploaded to his channel, or 6.01% of the total watchable video on Hazefest's YouTube channel.