Grip Text Macro | Deepwoken

Опубликовано: 28 Май 2026
на канале: Asphalt Cake
4,676
48

use autohotkey, here    • AHK is easy to use: AutoHotKey file tutorial  

paste whatever is below into the notepad (dont copy the ==== sign)
====================
setkeydelay, -1
setmousedelay, -1
setbatchlines, -1

cooldown = 2000
universaldelay = 2
senddelay = 25
text = CHANGE THIS TEXT TO WHATEVER YOU WANT

~$b::
sleep %universaldelay%
send {/ down}
sleep %universaldelay%
send {/ up}
sleep %universaldelay%
send %text%
sleep %senddelay%
send {enter down}
sleep %universaldelay%
send {enter up}
hotkey, b, off
sleep %cooldown%
hotkey, b, on
return
====================