q2a_mm.lua 964 B

123456789101112131415161718192021222324252627282930
  1. --
  2. -- Q2Admin example configuration
  3. --
  4. -- rename to "config.lua" and place this to quake 2 root
  5. --
  6. -- "--" are commented lines
  7. --
  8. plugins = {
  9. lrcon = {
  10. quit_on_empty = true,
  11. cvars = {
  12. -- server
  13. 'password', 'maxclients', 'timelimit', 'dmflags', 'sv_gravity', 'sv_iplimit', 'fraglimit',
  14. 'sv_anticheat_required',
  15. -- mod
  16. 'teamplay', 'ctf', 'matchmode', 'roundtimelimit', 'tgren', 'limchasecam', 'forcedteamtalk',
  17. 'mm_forceteamtalk', 'ir', 'wp_flags', 'itm_flags', 'hc_single', 'use_punch', 'darkmatch',
  18. 'allitem', 'allweapon', 'use_3teams'
  19. }
  20. },
  21. mvd = {
  22. --mvd_webby = 'http://mvd2.quadaver.org',
  23. --exec_script_on_system_after_recording = '/home/gameservers/quake2/plugins/mvd_transfer.sh',
  24. --exec_script_cvars_as_parameters = {"q2a_mvd_file", "game", "hostname"},
  25. --needs_cvar_q2a_mvd_autorecord = false
  26. }
  27. }