mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2014
Posts: 107
M
Majeye Offline OP
Vogon poet
OP Offline
Vogon poet
M
Joined: Jan 2014
Posts: 107
So trying to get this script to work.. and it sort of works.

Here is the script:

Code:
ON *:TEXT:*subscribed*:#:{
  if ($nick == twitchnotify) { msg # /me $nick has subscribed, thank you for supporting the stream and enjoy the new emotes! }
}


This is what it posts to the channel:

Quote:
MajeyeBot twitchnotify has subscribed, thank you for supporting the stream and enjoy the new emotes!


How do I get it to switch where it says "twitchnotify" to the persons name that subscribed?

Joined: Sep 2014
Posts: 52
Babel fish
Offline
Babel fish
Joined: Sep 2014
Posts: 52
Code:
ON *:TEXT:*subscribed*:#:{
  if ($nick == twitchnotify) { msg # /me $1 has subscribed, thank you for supporting the stream and enjoy the new emotes! }
}

Joined: Jan 2014
Posts: 107
M
Majeye Offline OP
Vogon poet
OP Offline
Vogon poet
M
Joined: Jan 2014
Posts: 107
Thank you so very much! <3


Link Copied to Clipboard