Hello,

So I've been trying to figure out a while, how to remove a part of a script in my mIRC Remote.

What I want it to do, is to remove this part:
Code:
alias todate {
  var %month = 10
  var %day = 06
  var %year = 2015

  var %todate = $calc($ctime($+(%day,-,%month,-,%year) 14:00:00) - $ctime)
  if (%todate < 0) {
    inc %year
    %todate = $calc($ctime($+(%day,-,%month,-,%year) 14:00:00) - $ctime)
  }
  return %todate
}
on 1:text:*stream*:#artiiz:{
  if ((%floodage) || ($($+(%,floodage.,$nick),2))) { return }
  set -u0 %floodage On
  set -u0 %floodage. $+ $nick On
  msg $chan @ $+ $nick Next stream starts in $replace($duration($todate($2,$3),2),hrs,h,hr,h,mins,m) $+
}


When I type like !unload !stream, in the Twitch chat.
Is this possible?