mnet_conf.tcl 1016 B

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