AHK 2 — Header for DAoC

What?

#Requires AutoHotkey v2.0
#UseHook
#SingleInstance Force
#HotIf WinActive("ahk_class DAoCMWC")
#MaxThreadsPerHotkey 5
SendMode "Event"
A_MaxHotkeysPerInterval := 200

Why?

This snippets should be present at the very top of each of your scripts. It sets global values and settings for the entire script


How?