Originally Posted By: GEFFO
Oh yeah - Another one to test everyones skills.


It's more about understanding what you want precisely. :P

Originally Posted By: GEFFO
Say the bot is in a private room (A) where there is only ops. A person comes into a normal chan (B) and wants an invite to another private room (C). The person types !private. At this point, how do I get my bot to send through a msg to the channel A. How do I also script the bot so that when the ops type !invite $nick, the person in channel B gets an invite and a message saying you're invited to channel C?


First, your bot needs to be on both channels #A and #B, since you want to pick up a message from #B and want to display it in #A.

Code:
on *:text:!private:#B: {
  msg #A $nick said !private in $+(#B, .)
}


Quote:
P.S. My calculator can't seem to read or process commas lol. How do I get it to do this?


In your script, you can use $chr(44) instead of a comma.


Learning something new every day.