You can use AutoHotKey to execute your Streamer.bot Actions in realtime via the UDP Server
Whipstickgostop/streamerbot-ahk
View source on GitHub or direct .zip download
Auto Start and then start the UDP Serverstreamerbot-ahk zip to any location.example-do-action.ahk in any text editor.StreamerbotUDP connection details to match your configuration.; Update Streamer.bot Host IP and port as needed
sb := StreamerbotUDP("127.0.0.1", 4242)
Copy Action IDsb.DoAction("<action-id>") lines to use your selected action ID; Set to your desired keybind or key combination
F11::
{
; Set to your desired Action ID
sb.DoAction("94754342-3397-4dbc-8b16-123906b34015")
}
example-do-action.ahk scriptlib/streamerbot.ahk file from any new .ahk script!