AutoHotkey v2 script that automatically sends a taunt in Deadlock chat when an Infernus (can be changed to your character + voicelines) kill appears in the kill feed.
The script watches a specific pixel on your screen. When the Infernus kill feed icon color is detected, it opens chat and types a random taunt message.
- Install AutoHotkey v2
- Run
colorpicker.ahk— hover over the Infernus kill feed icon in-game to find the exact pixel coordinates and color - Update
PIXEL_X,PIXEL_Y, andTARGET_COLORininfernustext.ahkwith those values - Run
infernustext.ahk
Edit the top of infernustext.ahk:
| Variable | Default | Description |
|---|---|---|
PIXEL_X / PIXEL_Y |
343, 286 |
Screen coordinate to watch |
TARGET_COLOR |
0xE54E3A |
Infernus icon color (red-orange) |
COLOR_TOLERANCE |
0 |
How much color can vary and still match |
POLL_INTERVAL |
500 |
How often to check the pixel (ms) |
TAUNT_COOLDOWN |
5000 |
Minimum time between taunts (ms) |
- F10 — toggle the script on/off
Edit the taunts array in infernustext.ahk. Add or remove lines freely, just keep the commas.
infernustext.ahk— main scriptcolorpicker.ahk— helper to find pixel coordinates and color values