Oh, you mean the timezone list?

Yes, perhaps it would be good to put that in an 'init' alias and call the init alias from on load/start.

You might also then have to test for the hash table being there and hfree'ing it:

Code:
alias timezones.init { 
  if ($hget(timezones)) { hfree timezones }
  hmake timezones
  hadd timezones ...
  ... 
}

on *:start:{
  timezones.init
}


Then you could call /timezones.init from the commandline without having to reload the script/restart mIRC. (I think I should have used on start instead of on load before, too...)

Last edited by Sais; 03/01/07 09:37 AM.

Sais