I am trying to make a jokes script that will say jokes in the chat every 10 minutes. I got the timer going but it just says the same joke (i had joke1, joke2, and joke3)
Code:
on *:TEXT:!jokes:#:{
  { msg $chan jokes will now play every 10 minutes. To stop say !jokes off }
  { .timerJokess 0 600 msg $chan $read(jokes.txt) }
}
on *:TEXT:!jokes off:#:{
  { msg $chan jokes are no longer playing }
  { .timerJokess off }
}

Please help.