sorry about that, but now I see how to use the scripts you suggested, thank you!

One more question:
I know that I can implement this code to scan channel A for a key word and give a response
Code:
on *:TEXT:*Keyword1*:#ChannelA:{
  /msg $chan response1
}


How can I have the script scan channel A for Keyword1 and give response1 AND also scan channel A for Keyword2 and give response 2?

I've tried this, but when I do this it only returns response1 regardless if it is keyword 1 or 2.
Code:
on *:TEXT:*Keyword1*:#ChannelA:{
  /msg $chan response1
}
on *:TEXT:*Keyword2*:#ChannelA:{
  /msg $chan response2
}