AHK 2 — Paste In Chat
What?
#SuspendExempt
$^v::
{
if A_IsSuspended
{
SendText A_Clipboard
}
}
Why?
This snippets will allow you to use Ctrl-V
to paste text into DAoC's chat window, a sorely missing function in the game.
How?
-
# SuspendExepmt
makes sure that this snippet runs even if the script is suspended. This is necessary if you're using these snippets to make sure the script is suspended while typing! -
A_IsSuspended
reads as true if the script is suspended. This makes sure that AHK isn't trying to copy text into the game while you're in the middle of combat, which could have... weird effects. -
A_Clipboard
is the current value of your clipboard, what you have copied elsewhere on your computer. If it's not text, it (probably) won't do anything.