Originally Posted By: Blas
I do not have a partnered stream to test this code in, but I believe that it should work. Good luck. smile

Code:
ON *:TEXT:!addme:#: {
  IF (($msgtags(subscriber)) && (!$istok(%sub_list,$nick $+ $chr(44),32))) {
    SET %sub_list %sub_list $nick $+ $chr(44)
    MSG $chan $nick $+ , you have been added to the !list.
  }
}

ON *:TEXT:!removeme:#: {
  IF ($istok(%sub_list,$nick $+ $chr(44),32)) {
    SET %sub_list $remtok(%sub_list,$nick $+ $chr(44),0,32)
    MSG $chan $nick $+ , you have been removed from the !list.
  }
}

ON *:TEXT:!list:#: MSG $chan $left(%sub_list,-1)


This unfortunately doesn't seem to be working, I copied and pasted it in the Remote tab and tried testing it and nothing happened. smirk But thank you for trying