simple question, i guess, but I'm fairly new to this, so maybe you can help me. I made a bot for a chat, which i want to share with people. So, my first thought was: i'll add a command (!join), which then will let the bot join the specific channel. For some reason (i guess its due the operators), my join won't work.
Here is the snippet:
on *:TEXT:!join:#: {
var %name = $nick
;/msg $chan joining channel %name
/join #%nick
}
But it just won't connect. Any ideas?
If i just use /kick $nick (or %name), it works, so i guess this # is messing things up.
Thanks in advance