Ok ive got a few things i need helping with here. First of all

Code:
on *:JOIN:#mychannel: { if ($chan = #mychannel ) { 
//notice $nick Welcome to #mychannel Im the channels bot. For our latest deals type !deals.  To get me 

to idle in your channel type !idle #yourchan! } }


Why does that code work? nothing happens frown (ive obv changed the mychannel bit)

2nd question - I have a peice of code that gets my bot to idle in peoples channels.

Code:
on *:TEXT:!idle *:#: {
//msg $chan 2Im now idling in $2
//join $2


Works fine BUT when its in other peoples channels it also responds to !idle #channel. How do i get it to only accept idle commands from my channel?

3rd question

Ive got a peice of code:

Code:
on *:TEXT:!broadcast *:#:{ if ($nick isop $chan) { //amsg < $nick > $2- < #mychan > } }


How do i get the >'s right next to nick?

it appears as "< nickname >" i dont want any spaces, bur i move them next to it i nthe script, it wont show the nick, it just says <$nick> asif im asking it to display $nick>

hope some people can help, thanks smile