ok, here is what i got, it echo's me, but i want it to message the current channel.

Code:
 menu channel {
  :sysinfo1
  Record Uptime {
    if ( $calc($ticks / 1000) > %uptimer ) {  set %uptimer $calc($ticks / 1000)  }
    else { goto sysinfo2 }
    :sysinfo2
    if (%sys.mode = a) { goto end } 
    else {
      %sys.mode [ $+ $dll(moo.dll,osinfo,_) $+ ] $+ . Record Uptime:4: $+ $duration(%uptimer)
    }
  }
  :end
}