mIRC Homepage
Posted By: Hazman Need help with script. - 03/01/17 01:44 PM
Anyone have a script that can target a user who uses a specific word in a sentence and time them out for certain amount of seconds?
on *:TEXT:word:#channel: {
msg $chan /timeout $nick 600
}
this one doesn't work when they use the key word in a sentence. frown
Posted By: OrFeAsGr Re: Need help with script. - 03/01/17 01:58 PM
If it's a certain word and not a list of words you are in the right way.. Just a minor change...
Code:
on *:TEXT:*word*:#channel: {
msg $chan /timeout $nick 600 
}

Your script would trigger when the message was single word.
Posted By: Hazman Re: Need help with script. - 03/01/17 02:02 PM
Thanks I appreciate it smile
© mIRC Discussion Forums