Thank you so much for taking your time to make this!

But I have a problem I dont join channels when I start up mIRC all the names are in the text file but it looks like it doesnt fire the event or maybe too early?

This code doesnt work

Code:
ON *:CONNECT: {
  var %i 1
  ; Joining all the channels that writing in the txt file
  while (%i <= $lines(JoinChannels.txt)) {
      $read(JoinChannels,%i)
      inc %i
  }
}


Oh nvm you missed the .txt here
$read(JoinChannels,%i)

:P

Last edited by TUSK3N; 14/09/16 08:42 PM.