mIRC Home    About    Download    Register    News    Help

Print Thread
#254496 14/08/15 02:22 AM
Joined: Jul 2015
Posts: 26
O
obee Offline OP
Ameglian cow
OP Offline
Ameglian cow
O
Joined: Jul 2015
Posts: 26
mIRC constantly shows that users leave and join the channel every 5-20 mins or so, and jtv sets mode: +o is just spamming all the time.

It didnt do this before, anyone know how to fix?

Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
You can hide that information by going to Options > IRC > Events (button) and disabling join/part/modes

Joined: Jul 2015
Posts: 26
O
obee Offline OP
Ameglian cow
OP Offline
Ameglian cow
O
Joined: Jul 2015
Posts: 26
Well i need to know when people join the channel. The problem is that it keeps repeating the messages even though no one has left or joined.

Example:
Code:
nn
* @nightbot (nightbot@nightbot.tmi.twitch.tv) has left #obeewnn
* jtv sets mode: +o obeewnn
* jtv sets mode: -o obeesak
* jtv sets mode: -o nightbot
* nightbot (nightbot@nightbot.tmi.twitch.tv) has joined #obeewnn
* jtv sets mode: +o nightbot
* jtv sets mode: +o obeesak
* @obeewnn (obeewnn@obeewnn.tmi.twitch.tv) has left #obeewnn
* jtv sets mode: -o obeewnn
* obeewnn (obeewnn@obeewnn.tmi.twitch.tv) has joined #obeewnn
* jtv sets mode: +o obeewnn
* @obeewnn (obeewnn@obeewnn.tmi.twitch.tv) has left #obeewnn
* jtv sets mode: -o obeewnn
* obeewnn (obeewnn@obeewnn.tmi.twitch.tv) has joined #obeewnn
* jtv sets mode: +o obeewnn
* jtv sets mode: -o nightbot
* jtv sets mode: -o obeesak
* jtv sets mode: -o obeewnn
* jtv sets mode: +o nightbot
* jtv sets mode: +o obeewnn
* jtv sets mode: +o obeesak
* @obeewnn (obeewnn@obeewnn.tmi.twitch.tv) has left #obeewnn
* jtv sets mode: -o obeewnn
* obeewnn (obeewnn@obeewnn.tmi.twitch.tv) has joined #obeewnn
* jtv sets mode: +o obeewnn

Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
mIRC isn't just making stuff up, those messages are received from the server. There's nothing to fix. Twitch has terrible IRC support.

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
You can use rawmode to hide it.
Code:
on ^*:rawmode:#: {
  haltdef
  if ($nick == $server) { return }
  else { echo -mt $chan $nick sets mode: $1 $2- }
}

or you can use raw, but i dont remember what one go where. Look it up on google..

This is untested.


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Jul 2015
Posts: 26
O
obee Offline OP
Ameglian cow
OP Offline
Ameglian cow
O
Joined: Jul 2015
Posts: 26
Originally Posted By: Loki12583
mIRC isn't just making stuff up, those messages are received from the server. There's nothing to fix. Twitch has terrible IRC support.

I find it hard to believe that in the past week something changed in twitch and is duplicating hundreds of thousands of join/leave messages every second.
Could this have anything to do with the fact that i upgrade to windows 10? Last week this was not happening on windows 7.

Joined: Jul 2015
Posts: 26
O
obee Offline OP
Ameglian cow
OP Offline
Ameglian cow
O
Joined: Jul 2015
Posts: 26
Originally Posted By: sparta
You can use rawmode to hide it.
Code:
on ^*:rawmode:#: {
  haltdef
  if ($nick == $server) { return }
  else { echo -mt $chan $nick sets mode: $1 $2- }
}

or you can use raw, but i dont remember what one go where. Look it up on google..

This is untested.


I need to see the join/leave messages, and don't want to hide it. Will this just hide the duplicate join/leave messages? or will it hide all join/leave messages?

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
This will hide the messages from the server, but you will see all op's and so on done by a person, test it and see how it work, if not, then just remove it.

Put the code in remote "ALT + R" in your mirc, close and you are done.


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
Users don't set modes, only the server.

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
As i wrote, untested. Dont know it it work or if it hides all the modes set in the channel.


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }

Link Copied to Clipboard