[IRC-DEV] Addon para el mIRC para transformar logs de chanlog

Ruben Cardenal rubenc at arrakis.es
Fri Jul 25 16:24:07 CEST 2003


Hola,

  hPm ha hecho un pequeño addon para transformar los logs de chanlog
en algo "legible":

;#########################################
;# Cambia formato de los logs de chanlog a algo mas leible
;#########################################

alias chanlog {
  if ($0 < 1) { echo -ta Sintaxis: /chanlog <ficherodechanlog>
<ficherodesalida> | echo -a Ej. /chanlog #ayuda-irc-20030722.log
#ayuda.irc.log }
  else { 
    if (!$exists($1)) { echo -ta Error, fichero $1 no encontrado }
    else { 
      var %file = $2
      window @chanlog
      loadbuf $lines($1) @chanlog log.txt
      write -c %file
      while ($line(@chanlog,1)) {
        var %temp = $ifmatch
        tokenize 32 $ifmatch
        if ($3 == ACTION) { write %file  $+ $color(action)
$asctime($1,(HH:nn:ss)) * $2 $left($4-,-1) }
        else { write %file $asctime($1,(HH:nn:ss)) $+(<,$2,>) $3- }
        dline @chanlog  1
      }
      clear @chanlog
      loadbuf $lines(%file) @chanlog %file
      sline @chanlog 15
      echo -ts Log traducido y grabado en %file
    }
  }
}


  Saludos,

NiKoLaS





More information about the IRC-Dev mailing list