This script isn't being recognized for some reason...

My whole goal is to give everyone 1 point every 30 minutes.

http://puu.sh/bt58V/b20d975339.png

How do I fix this?

Here is what I have in

Alias:
Code:
alias awardpoints {
  var %chan = $$1, %table = coins. $+ %chan, %file = coins.ini

  if (!$hget(%table)) {
    hmake %table
    if ($ini(%file,%chan)) hload -i %table %file %chan
  }

  var %i = 1, %n = $nick(%chan,0)
  while (%i <= %n) {
    hinc %table $nick(%chan,%i)
    inc %i
  }

  hdel %table nightbot
  hdel %table tylerb0t
  hdel %table tylersgaming

  hsave -i %table %file %chan
}


Remote:
Code:
on *:connect: {
  if ($me != tylersgaming) && ($right($server,18) == .speedrunslive.com) {
    ns ghost tylersgaming xxx
    nick tylersgaming
    ns identify xxx
  }
  if ( $me == tylersgaming ) && ($right($server,18) == .speedrunslive.com) {
    ns identify xxx
  }
}


on *:TEXT:!on*:#:{
  if ($nick == tylersgaming) {
    if ($read(botstatus.txt,t,1) == on) {

    }
    if ( $read(botstatus.txt,t,1) == off) {
      /write -c botstatus.txt
      /timerAward 0 1800 /awardPoints $chan
      write botstatus.txt on
      msg $chan Points will now be awarded.
    }
  }
}

on *:TEXT:!off*:#:{
  if ($nick == tylersgaming) {
    if ($read(botstatus.txt,t,1) == off) {

    }
    if ( $read(botstatus.txt,t,1) == on) {
      /write -c botstatus.txt
      write botstatus.txt off
      /timerAward off
      msg $chan Points will no longer be awarded.
    }
  }
}