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: [ Ссылка ]
Eden Google Drive: [ Ссылка ]
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
Ещё видео!