your copy move key
. hammerfly. (edited)say "message"
on F1, if this helps you#Persistent
; Initialize a variable to track the Enter key state
enterPressed := 0
; Check if DDNet is the active window
#IfWinActive ahk_exe DDNet.exe
; First Enter key action
Enter::
if (enterPressed = 0) {
; First time Enter is pressed: Select all (Ctrl+A), Cut (Ctrl+X), then Enter
Send, ^a ; Ctrl+A
Send, ^x ; Ctrl+X
Send, {Enter}
enterPressed := 1
}
else if (enterPressed = 1) {
; Second time Enter is pressed: Press Enter, then Paste (Ctrl+V)
Send, {Enter}
Send, ^v ; Ctrl+V
enterPressed := 0 ; Reset to start the cycle again
}
return
#IfWinActive ; End of context-sensitive hotkey block
nameless tee
(1)nameless tee
(2)nameless tee
(3)nameless tee
(4)nameless tee
(5)nameless tee
(6)nameless tee
(7)nameless tee
(8)nameless tee
(9)nameless tee
(10)nameless te
(11)nameless te
(12)nameless te
(13)nameless te
(14)nameless te
(15)nameless te
(16)nameless te
(17)nameless te
(18)nameless te
(19)nameless te
(20)nameless te
(21)nameless te
(22)nameless te
(23)nameless te
(24)nameless te
(25)nameless te
(26)nameless te
Nameless tee past 26 doesn't have finishes.
Most of them played a lot in 2024-09-24, but recently here was only tees from 0 to 20, 21-26 not active nowadaysbind F11 save_replay
to bind it to F11bind x save_replay 120
to save it for 2 minutes.
that will save the replay with the timestamp
the folder can either be found under demos -> replays/:
or under %appdata%/ddnet/demos/replays#Persistent
; Initialize a variable to track the Enter key state
enterPressed := 0
; Check if DDNet is the active window
#IfWinActive ahk_exe DDNet.exe
; First Enter key action
Enter::
if (enterPressed = 0) {
; First time Enter is pressed: Select all (Ctrl+A), Cut (Ctrl+X), then Enter
Send, ^a ; Ctrl+A
Send, ^x ; Ctrl+X
Send, {Enter}
enterPressed := 1
}
else if (enterPressed = 1) {
; Second time Enter is pressed: Press Enter, then Paste (Ctrl+V)
Send, {Enter}
Send, ^v ; Ctrl+V
enterPressed := 0 ; Reset to start the cycle again
}
return
#IfWinActive ; End of context-sensitive hotkey block