cims_conf.tcl 1.1 KB

123456789101112131415161718192021222324
  1. namespace eval ::cims {
  2. ############# CONFIG SECTION ##############
  3. ### the real config section is here...
  4. # for xml parsing you need the tclxml package.. and for the tclxml package you need the tcllib for
  5. # uri parsing :)
  6. # BE SURE TO NOT DEFINE TWO NETS OVERLAPPING THEMSELVES (<mnet sig="xxx"> must be unique!)
  7. # mnet_http_config(x) works like this:
  8. # HOST DIRECTORY PORT
  9. #lappend mnet_http_config "quadaver.mine.nu" "/qw-serveme/qwnet.cfg" "80"
  10. #lappend mnet_http_config "quad.netdome.biz" "/aq2/aq2net.cfg" "80"
  11. lappend mnet_http_config "quad.netdome.biz" "/aq2/devnet.cfg" "80"
  12. #lappend mnet_http_config "quad.netdome.biz" "/aq2/quadnet.cfg" "80"
  13. # mnet_local_config(y) just points to a local file (the basepath is the eggdrop-binary-path)
  14. #lappend mnet_local_config "./scripts/mnet/anothernet.cfg"
  15. # at which interval should it re-check for a changed config? 300 recommended (5 hours)
  16. # must be at least 90 or 0 for off.
  17. set mnet_cfg_reload_interval 300
  18. ########## END OF CONFIG SECTION ##############
  19. }