I want to add the ability for the !raid mod to 
/gu !raid reward 1
after 1 hour has gone by.  I thought it would be rather easy to have the bot do this command when it does:
if ($this -> announce == 10)
      {
         $this -> bot -> send_output("", "Raid is running for ##highlight##" .
         (((int)((time () - $this -> start) / 60)) + 1) . "##end## minutes now.", "both");
         $this -> announce = 0;
      }
But I keep getting an error when I add it in.  Anyone got any ideas?  I tried to have the !raid mod add points at an interval of .017 every minute but it does not seem to be doing it so I figured this would be an easy fix.
Thanks