mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Mar 2025
Posts: 3
D
Dusty Offline OP
Self-satisfied door
OP Offline
Self-satisfied door
D
Joined: Mar 2025
Posts: 3
i cant figure out why my irc bot wont respond to messages in twitch chats (specifically mine) when i type a trigger word. any advice? here's my code: [Linked Image from snipboard.io]

Joined: Jan 2012
Posts: 342
Pan-dimensional mouse
Offline
Pan-dimensional mouse
Joined: Jan 2012
Posts: 342


🌐 https://forum.epicnet.ru 📜 irc.epicnet.ru 6667 #Code | mIRC scripts, help, discuss, examples
Joined: May 2022
Posts: 107
F
Vogon poet
Offline
Vogon poet
F
Joined: May 2022
Posts: 107
I'm not an expert, but I'm not sure about the second :
Try with
Code
on #yourchannel:PRIVMSG:!time: /msg #yourchannel <message here>

P.S.: If You use code, is more easy to quote and reply

Last edited by Fernet; 13/03/25 08:04 PM.
Joined: Mar 2025
Posts: 3
D
Dusty Offline OP
Self-satisfied door
OP Offline
Self-satisfied door
D
Joined: Mar 2025
Posts: 3
thank you for this, im still having problems making it respond, any more ideas?

Joined: Feb 2011
Posts: 478
K
Pan-dimensional mouse
Offline
Pan-dimensional mouse
K
Joined: Feb 2011
Posts: 478
Replace the #channel with the actual channel name.


; Syntax: !hello bob
; Output: Hello bob!
on *:text:!hello *:#channel:{ msg $chan Hello, $1 $+ ! }



; Syntax: !time
; $time returns the hours:minutes:seconds in 24 hour clock format.
; Output: The current time is 18:10:53
on *:text:!time:#channel:{ msg $chan The current time is $time }


Link Copied to Clipboard