Ok, I've been using a script for sometime and it is no longer being coded but when I updated to the latest mIRC I am now getting an error and I'm not good with hash table at all so here I am asking for a little help. The error I am getting goes as follows:

Code:
* /hadd: no such table 'class' (line 241, caching.mrc)


line 241 is as follows:

Code:
alias -l use { hadd class $+($1,.,$2-) }


The alias code for class is as follows:

Code:
alias class {
  ; $1 = property, $?2 = param
  goto $prop
  :loaded | {
    return $class_loaded($2). [ $+ [ $1 ] ]
  }
  :stored | {
    return $class_stored($2). [ $+ [ $1 ] ]
  }
}
alias -l  class_loaded {
  goto $prop
  :at | {
    ; $1 = index
    return $objdll(class_at,$1)
  }
  :num | {
    ; !$1-
    return $objdll(class_num)
  }
}
alias -l  class_stored {
  goto $prop
  :at | {
    ; $1 = index
    return $noext($nopath($findfile(system\classes\,*.ini,$1,0)))
  }
  :num | {
    ; !$1-
    return $findfile(system\classes\,*.ini,0,0)
  }
}


Any help would be greatly appreciated and thank you all in advance for your help.

Last edited by Darkmnm; 09/10/07 06:34 AM.