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?