├── .coveralls.yml ├── .crowdin.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── admin_patches ├── admin_patches.py ├── checksums.py ├── icon.ico ├── patches │ ├── current_rules.inc.patch │ ├── gamesummary.inc.patch │ └── header_base.inc.patch ├── setup.cfg ├── setup.py └── utils │ ├── __init__.py │ ├── patch.py │ └── patcher.py ├── docker_startup.sh ├── docs └── steam_guide.txt ├── locale ├── admin_patches.pot ├── cs_CZ │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── da_DK │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── de_DE │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── el_GR │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── en_GB │ └── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po ├── es_ES │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── fi_FI │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── fr_FR │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── hi_IN │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── hu_HU │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── it_IT │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── ja_JP │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── ko_KR │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── magicked_admin.pot ├── nl_NL │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── no_NO │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── pl_PL │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── pt_BR │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── pt_PT │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── ro_RO │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── ru_RU │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── sv_SE │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── uk_UA │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt ├── vi_VN │ ├── LC_MESSAGES │ │ ├── admin_patches.po │ │ └── magicked_admin.po │ └── docs │ │ └── steam_guide.txt └── zh_CN │ ├── LC_MESSAGES │ ├── admin_patches.po │ └── magicked_admin.po │ └── docs │ └── steam_guide.txt ├── magicked_admin ├── chatbot │ ├── __init__.py │ ├── chatbot.py │ ├── command_scheduler.py │ ├── commands │ │ ├── __init__.py │ │ ├── argument_parser.py │ │ ├── command.py │ │ ├── command_map.py │ │ ├── event_commands.py │ │ ├── info_commands.py │ │ ├── player_commands.py │ │ └── server_commands.py │ └── motd_updater.py ├── conf │ ├── marquee │ │ └── example │ └── scripts │ │ ├── example │ │ └── greeter ├── database │ ├── __init__.py │ ├── database.py │ └── schema.sql ├── icon.ico ├── lua_bridge │ ├── __init__.py │ ├── init.lua │ └── lua_bridge.py ├── magicked_admin.py ├── server │ ├── __init__.py │ ├── game.py │ ├── game_tracker.py │ ├── player.py │ └── server.py ├── settings.py ├── setup.cfg ├── setup.py ├── tests │ ├── __init__.py │ ├── test_data │ │ └── conf │ │ │ ├── broken.conf │ │ │ └── magicked_admin.conf │ ├── test_settings.py │ ├── utils │ │ ├── __init__.py │ │ ├── test_net.py │ │ ├── test_text.py │ │ ├── test_time.py │ │ └── test_utils.py │ └── web_admin │ │ ├── __init__.py │ │ ├── mock_session.py │ │ ├── mock_web_interface.py │ │ ├── test_web_admin.py │ │ └── test_web_interface.py ├── utils │ ├── __init__.py │ ├── lua.py │ ├── net.py │ ├── text.py │ └── time.py └── web_admin │ ├── __init__.py │ ├── chat.py │ ├── constants.py │ ├── web_admin.py │ └── web_interface.py ├── makefile └── requirements.txt /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/.crowdin.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/README.md -------------------------------------------------------------------------------- /admin_patches/admin_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/admin_patches.py -------------------------------------------------------------------------------- /admin_patches/checksums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/checksums.py -------------------------------------------------------------------------------- /admin_patches/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/icon.ico -------------------------------------------------------------------------------- /admin_patches/patches/current_rules.inc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/patches/current_rules.inc.patch -------------------------------------------------------------------------------- /admin_patches/patches/gamesummary.inc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/patches/gamesummary.inc.patch -------------------------------------------------------------------------------- /admin_patches/patches/header_base.inc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/patches/header_base.inc.patch -------------------------------------------------------------------------------- /admin_patches/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/setup.cfg -------------------------------------------------------------------------------- /admin_patches/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/setup.py -------------------------------------------------------------------------------- /admin_patches/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/utils/__init__.py -------------------------------------------------------------------------------- /admin_patches/utils/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/utils/patch.py -------------------------------------------------------------------------------- /admin_patches/utils/patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/admin_patches/utils/patcher.py -------------------------------------------------------------------------------- /docker_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/docker_startup.sh -------------------------------------------------------------------------------- /docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/admin_patches.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/admin_patches.pot -------------------------------------------------------------------------------- /locale/cs_CZ/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/cs_CZ/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/cs_CZ/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/cs_CZ/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/cs_CZ/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/cs_CZ/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/da_DK/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/da_DK/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/da_DK/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/da_DK/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/da_DK/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/da_DK/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/de_DE/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/de_DE/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/de_DE/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/de_DE/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/de_DE/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/de_DE/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/el_GR/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/el_GR/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/el_GR/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/el_GR/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/el_GR/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/el_GR/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/en_GB/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/en_GB/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/en_GB/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/en_GB/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/es_ES/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/es_ES/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/es_ES/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/es_ES/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/es_ES/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/es_ES/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/fi_FI/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/fi_FI/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/fi_FI/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/fi_FI/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/fi_FI/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/fi_FI/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/fr_FR/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/fr_FR/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/fr_FR/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/fr_FR/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/fr_FR/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/fr_FR/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/hi_IN/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/hi_IN/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/hi_IN/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/hi_IN/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/hi_IN/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/hi_IN/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/hu_HU/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/hu_HU/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/hu_HU/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/hu_HU/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/hu_HU/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/hu_HU/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/it_IT/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/it_IT/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/it_IT/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/it_IT/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/it_IT/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/it_IT/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/ja_JP/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ja_JP/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/ja_JP/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ja_JP/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/ja_JP/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ja_JP/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/ko_KR/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ko_KR/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/ko_KR/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ko_KR/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/ko_KR/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ko_KR/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/magicked_admin.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/magicked_admin.pot -------------------------------------------------------------------------------- /locale/nl_NL/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/nl_NL/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/nl_NL/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/nl_NL/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/nl_NL/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/nl_NL/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/no_NO/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/no_NO/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/no_NO/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/no_NO/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/no_NO/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/no_NO/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/pl_PL/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/pl_PL/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/pl_PL/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/pl_PL/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/pl_PL/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/pl_PL/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/pt_BR/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/pt_BR/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/pt_BR/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/pt_BR/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/pt_PT/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/pt_PT/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/pt_PT/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/pt_PT/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/pt_PT/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/pt_PT/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/ro_RO/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ro_RO/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/ro_RO/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ro_RO/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/ro_RO/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ro_RO/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/ru_RU/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ru_RU/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/ru_RU/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ru_RU/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/ru_RU/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/ru_RU/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/sv_SE/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/sv_SE/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/sv_SE/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/sv_SE/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/sv_SE/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/sv_SE/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/uk_UA/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/uk_UA/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/uk_UA/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/uk_UA/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/uk_UA/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/uk_UA/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/vi_VN/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/vi_VN/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/vi_VN/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/vi_VN/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/vi_VN/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/vi_VN/docs/steam_guide.txt -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/admin_patches.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/zh_CN/LC_MESSAGES/admin_patches.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/magicked_admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/zh_CN/LC_MESSAGES/magicked_admin.po -------------------------------------------------------------------------------- /locale/zh_CN/docs/steam_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/locale/zh_CN/docs/steam_guide.txt -------------------------------------------------------------------------------- /magicked_admin/chatbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/__init__.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/chatbot.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/command_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/command_scheduler.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/commands/__init__.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/commands/argument_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/commands/argument_parser.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/commands/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/commands/command.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/commands/command_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/commands/command_map.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/commands/event_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/commands/event_commands.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/commands/info_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/commands/info_commands.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/commands/player_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/commands/player_commands.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/commands/server_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/commands/server_commands.py -------------------------------------------------------------------------------- /magicked_admin/chatbot/motd_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/chatbot/motd_updater.py -------------------------------------------------------------------------------- /magicked_admin/conf/marquee/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/conf/marquee/example -------------------------------------------------------------------------------- /magicked_admin/conf/scripts/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/conf/scripts/example -------------------------------------------------------------------------------- /magicked_admin/conf/scripts/greeter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/conf/scripts/greeter -------------------------------------------------------------------------------- /magicked_admin/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magicked_admin/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/database/database.py -------------------------------------------------------------------------------- /magicked_admin/database/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/database/schema.sql -------------------------------------------------------------------------------- /magicked_admin/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/icon.ico -------------------------------------------------------------------------------- /magicked_admin/lua_bridge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magicked_admin/lua_bridge/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/lua_bridge/init.lua -------------------------------------------------------------------------------- /magicked_admin/lua_bridge/lua_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/lua_bridge/lua_bridge.py -------------------------------------------------------------------------------- /magicked_admin/magicked_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/magicked_admin.py -------------------------------------------------------------------------------- /magicked_admin/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magicked_admin/server/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/server/game.py -------------------------------------------------------------------------------- /magicked_admin/server/game_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/server/game_tracker.py -------------------------------------------------------------------------------- /magicked_admin/server/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/server/player.py -------------------------------------------------------------------------------- /magicked_admin/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/server/server.py -------------------------------------------------------------------------------- /magicked_admin/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/settings.py -------------------------------------------------------------------------------- /magicked_admin/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/setup.cfg -------------------------------------------------------------------------------- /magicked_admin/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/setup.py -------------------------------------------------------------------------------- /magicked_admin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magicked_admin/tests/test_data/conf/broken.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/test_data/conf/broken.conf -------------------------------------------------------------------------------- /magicked_admin/tests/test_data/conf/magicked_admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/test_data/conf/magicked_admin.conf -------------------------------------------------------------------------------- /magicked_admin/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/test_settings.py -------------------------------------------------------------------------------- /magicked_admin/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magicked_admin/tests/utils/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/utils/test_net.py -------------------------------------------------------------------------------- /magicked_admin/tests/utils/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/utils/test_text.py -------------------------------------------------------------------------------- /magicked_admin/tests/utils/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/utils/test_time.py -------------------------------------------------------------------------------- /magicked_admin/tests/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/utils/test_utils.py -------------------------------------------------------------------------------- /magicked_admin/tests/web_admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magicked_admin/tests/web_admin/mock_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/web_admin/mock_session.py -------------------------------------------------------------------------------- /magicked_admin/tests/web_admin/mock_web_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/web_admin/mock_web_interface.py -------------------------------------------------------------------------------- /magicked_admin/tests/web_admin/test_web_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/web_admin/test_web_admin.py -------------------------------------------------------------------------------- /magicked_admin/tests/web_admin/test_web_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/tests/web_admin/test_web_interface.py -------------------------------------------------------------------------------- /magicked_admin/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/utils/__init__.py -------------------------------------------------------------------------------- /magicked_admin/utils/lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/utils/lua.py -------------------------------------------------------------------------------- /magicked_admin/utils/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/utils/net.py -------------------------------------------------------------------------------- /magicked_admin/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/utils/text.py -------------------------------------------------------------------------------- /magicked_admin/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/utils/time.py -------------------------------------------------------------------------------- /magicked_admin/web_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/web_admin/__init__.py -------------------------------------------------------------------------------- /magicked_admin/web_admin/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/web_admin/chat.py -------------------------------------------------------------------------------- /magicked_admin/web_admin/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/web_admin/constants.py -------------------------------------------------------------------------------- /magicked_admin/web_admin/web_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/web_admin/web_admin.py -------------------------------------------------------------------------------- /magicked_admin/web_admin/web_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/magicked_admin/web_admin/web_interface.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/makefile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z3ath/kf2-magicked-admin/HEAD/requirements.txt --------------------------------------------------------------------------------