This is just a few random things.
I was bored.
All of these go into blank remotes.
Note: I am still learning this is only my 2nd post on Hawkee or any site for that matter. Helpful comments would be nice.
--------- Join Kicker----------------------------------------------
on *:Join:#: { kick $nick }
----------Auto Pvt-------------------------------------------------
on *:JOIN:#: { notice $nick (message) }
----------Join P2P Message-----------------------------------------
on *:JOIN:#: { query $nick (Message) }
-----------Join Notify All rooms----------------------------------
on *:JOIN:#: { msg $chan $nick has joined our convo }
------------Single room join Notify-------------------------------
on *:JOIN:#: { msg #roomname $nick has joined our convo }
--------------Auto +v notifier-------------------------------------
on *:JOIN:#: { mode +v $nick | msg #roomname I gave $nick Voice }
when making comments, put a ; at the beginning of the line
-----------Join Notify All rooms----------------------------------
on *:JOIN:#: { msg $chan $nick has joined our convo }
umm thats would only notify one room, try
on *:join:#:{
var %x = 1
while $comchan($nick,%x) {
msg $v1 $nick has joined our conversation
inc %x
}
}
:P