With mIRC's current scripting language, I think supporting other languages would be redudant, especially considering you can use COMs to run most .js/.php/.vbs/etc scripts


/noop $jsrun(<file>,<arg1>,<arg2>,<arg3>,....)
Code:
alias jsrun {
  var %c = $ticks, %n = 2, %args
  while ($com(js: $+ %c)) inc %c
  %c = js: $+ %c

  while (%n <= $0) {
    %args = %args $qt($(,$ $+ %n))
    inc %n
  }

  .comopen %c WScript.shell
  .comclose %c $com(%c, Run, 1, bstr, $qt($$1) %args, bool, true)
}


Last edited by FroggieDaFrog; 30/06/11 07:21 PM.