Sorry, it must look like I meant the -nick had to be there
if the bot's name is radiobot then the line is
if ($nick == radiobot) {
the ! does belong in that $!network so that the $network identifier
isnt parsed in the first alias, but is in the second one (botecho)
so if the following were the channels and Network name (not server, network)
Source channel: #MusicAppreciaton
Bot Name: radiobot
Network to Send to: RedSkiesAtNight
Channel to Send to: #BigBrother
on *:text:*:#MusicAppreciaton: {
if ($nick == radiobot) {
scon -a botecho $!network RadioBot: $$1-
}
}
alias botecho {
if ($1 == RedSkiesAtNight) { msg #BigBrother $2- }
}