Alright I'm working on a script that will relay a command or message every few minutes (for now 5, 10, 15, minutes) I know there HAS to be a way to get this working with my current commands.ini file, which is where I keep the same commands/messages I'm trying to run on a timer. However, I can't get for the life of me figure it out.


What I have now:


Code:
on *:text:!start:#: {
  if ($nick isop #) { msg # /me AutoCom: ON }
  { timerTwitter 0 600 msg # Twitter Link!  }
  { timerDonate 0 900 msg # Donate Link }
  { timerGT 0 300 msg # Gamertag Link }  
  else { msg # /me $nick -> You are not allowed to use this command. }
}

on *:text:!stop:#: {
  if ($nick isop #) { msg # /me AutoCom: OFF }
  { timerTwitter off } { timerDonate off } { timerGT off } 
  else { msg # /me $nick -> You are not allowed to use this command. }
}