This way works fine. What I would like is for the timer's to use the commands.ini file to find the right line and repeat it. Rather than having the { msg # LINEHERE }

I have tried things like this, with no success. More than likely for obvious reasons but I can't see them...
Code:
on *:text:!start:#: {
  if ($nick isop #) { msg # /me AutoCom: ON }
  { timerTwitter 0 600 ($readini(commands.ini,n,commands,$regml(1))) msg # $v1  }
  { timerDonate 0 900 ($readini(commands.ini,n,commands,$regml(1))) msg # $v1 }
  { timerGT 0 300 ($readini(commands.ini,n,commands,$regml(1))) msg # $v1 }  
  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. }
}



If that wasn't clear, I'm sorry. If it's not possible the way I'm doing it now will work I suppose.

Thank you for your reply smile

Last edited by Bramzee; 01/05/14 03:55 PM.