I'm pretty new as well but this might help you out for the time being. All the !checkin command does is have the bot add a timer for everyone in the channel at the time the command is run. This is a rather crude method and I hope someone can provide you with something better.

Code:
on *:TEXT:!checkin:#: {
  if ($nick isop #) {
    var %n = $nick(#,0)
    var %i = 1
    var %nick = $nick(#,%i)
    if (%i < %n) {
      :doagain
      $iif(%nick != $null,goto add,goto end)
      :add
      $+(.timerpoints.,#,.,%nick) 0 600 add.pts $+(#,.,%nick)
      %i = %i + 1
      %nick = $nick(#,%i)
      goto doagain
      :end
      return
    }
  }
}


As for the raffle system. I'm still working on something like that. Still learning lol

Last edited by Ergonyx; 13/08/13 01:13 PM.