cims_conf.tcl 1.1 KB

12345678910111213141516171819202122232425
  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 "qwnet-admin.quadaver.org" "/network/show" "80"
  13. #lappend mnet_http_config "quad.netdome.biz" "/aq2/quadnet.cfg" "80"
  14. # mnet_local_config(y) just points to a local file (the basepath is the eggdrop-binary-path)
  15. lappend mnet_local_config "./scripts/cims/qwnet-cfg.xml"
  16. # at which interval should it re-check for a changed config? 300 recommended (5 hours)
  17. # must be at least 90 or 0 for off.
  18. set mnet_cfg_reload_interval 300
  19. ########## END OF CONFIG SECTION ##############
  20. }