I'm trying to make a FAQ script for when someone joins the channel and types !FAQ they get a notice with a list of Q&A's.Is there a better/cleaner way of writing this and also how would I make it display the notice to them slower? The FAQ will end up being pretty large and i dont want to flood them/me out with it.


Code:
On *:Text:*:#MYCHAN:{
  if (!FAQ isin $1-) { 
.notice $nick Q. Question 1 here
.notice $nick A. Answer goes here

.notice $nick Q. Question 2 here
.notice $nick A. Answer goes here

.notice $nick Q. Question 3 here
.notice $nick A. Answer goes here
  }
}


Any pointers would be great ,TIA