mIRC Home    About    Download    Register    News    Help

Print Thread
#244910 05/04/14 01:44 AM
Joined: Mar 2014
Posts: 215
J
Fjord artisan
OP Offline
Fjord artisan
J
Joined: Mar 2014
Posts: 215
I am trying to make it a sub-only command to do /me (which will just read a list of subs, don't talk about this part)
and i cannot seem to get mIRC to find the /me command. I've tried on notice, action, and text but cannot find it. Anyone know what command this would be?


#imAbeginner
i made a chat bot for mark_paintball! http://twitch.tv/mark_paintball
judge2020 #244912 05/04/14 03:13 AM
Joined: Dec 2013
Posts: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
/me can not be restricted.


Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net
Nillen #244918 05/04/14 06:17 PM
Joined: Mar 2014
Posts: 215
J
Fjord artisan
OP Offline
Fjord artisan
J
Joined: Mar 2014
Posts: 215
in twitch's case if you timeout a user it also removes the /me command, so it would timeout the person for 1 second, deleting the /me command unless they're on my subscriber list.

EDIT: it removes the message of /me

Last edited by judge2020; 05/04/14 06:17 PM.

#imAbeginner
i made a chat bot for mark_paintball! http://twitch.tv/mark_paintball
judge2020 #244922 05/04/14 06:51 PM
Joined: Dec 2013
Posts: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
So, essentially what you're saying is that you want to timeout any user who uses /me unless the $nick is part of a textfile of yours.
Code:
on *:ACTION:*:#:{
  if ($read(textfile.txt,nw,$nick)) return
  msg # /timeout $nick 1
}


Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net
Nillen #244925 05/04/14 10:58 PM
Joined: Mar 2014
Posts: 215
J
Fjord artisan
OP Offline
Fjord artisan
J
Joined: Mar 2014
Posts: 215
yes that works smile


#imAbeginner
i made a chat bot for mark_paintball! http://twitch.tv/mark_paintball

Link Copied to Clipboard