Hey

I wonder how could I remove the hashtag (#) before the channel name in the below code, its a "just 4 fun" script :P

|
v

Code:
on *:JOIN:#: {
  if ($nick == $me) {
    msg $chan { Connecting to $chan . . . }
    timer 1 5 
    msg $chan { Connected Successfully! }
  }
}


As you can see the output contains a hashtag before the channelname.Is there a way I could remove it? Thanks in advance.