JOIN/PART changes, temporary and future

You can set it as a perform action for the server in the option as stated above.

If you want to implement it into your script you’d need to use what SReject wrote above your script.

on *:LOGON:*:{  
  raw CAP REQ :twitch.tv/membership
  raw CAP REQ :twitch.tv/commands
}

This will trigger before it joins a channel in any case. membership is required for JOIN/PART messages that also include OP status. I happen to need to use the commands capability to get the NOTICE messages from the server since they switched from JTV to those.

‘raw CAP REQ :twitch.tv/tags’ would not be advisable for you I suppose since it would turn everything into raw messages and you would need to rewrite your script completely for it to utilize them.

1 Like