├── .gitattributes ├── .gitignore ├── README.md ├── ctf ├── core.lua ├── diplomacy.lua ├── gui.lua ├── hud.lua ├── init.lua ├── mod.conf ├── teams.lua └── textures │ ├── diplo_alliance.png │ ├── diplo_peace.png │ └── diplo_war.png ├── ctf_chat ├── init.lua └── mod.conf ├── ctf_colors ├── gui.lua ├── hud.lua ├── init.lua ├── mod.conf └── textures │ ├── ctf_colors_hotbar_blue.png │ ├── ctf_colors_hotbar_red.png │ ├── ctf_colors_hotbar_selected_blue.png │ ├── ctf_colors_hotbar_selected_red.png │ ├── ctf_colors_skin_black.png │ ├── ctf_colors_skin_blue.png │ ├── ctf_colors_skin_cyan.png │ ├── ctf_colors_skin_gold.png │ ├── ctf_colors_skin_gray.png │ ├── ctf_colors_skin_green.png │ ├── ctf_colors_skin_orange.png │ ├── ctf_colors_skin_pink.png │ ├── ctf_colors_skin_purple.png │ ├── ctf_colors_skin_red.png │ ├── ctf_colors_skin_silver.png │ └── ctf_colors_skin_yellow.png ├── ctf_flag ├── api.lua ├── flag_func.lua ├── flags.lua ├── gui.lua ├── hud.lua ├── init.lua ├── mod.conf ├── sounds │ ├── trumpet_lose.ogg │ └── trumpet_win.ogg └── textures │ ├── flag_black.png │ ├── flag_black2.png │ ├── flag_blue.png │ ├── flag_blue2.png │ ├── flag_cyan.png │ ├── flag_cyan2.png │ ├── flag_gold.png │ ├── flag_gold2.png │ ├── flag_gray.png │ ├── flag_gray2.png │ ├── flag_green.png │ ├── flag_green2.png │ ├── flag_orange.png │ ├── flag_orange2.png │ ├── flag_pink.png │ ├── flag_pink2.png │ ├── flag_purple.png │ ├── flag_purple2.png │ ├── flag_red.png │ ├── flag_red2.png │ ├── flag_silver.png │ ├── flag_silver2.png │ ├── flag_yellow.png │ └── flag_yellow2.png ├── ctf_protect ├── init.lua └── mod.conf ├── doc_data.md ├── doc_project_overview.md ├── doc_settings.md ├── hudkit ├── init.lua └── mod.conf ├── lib_chatcmdbuilder ├── .gitignore ├── LICENSE ├── README.md ├── description.txt ├── init.lua └── mod.conf └── modpack.conf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/README.md -------------------------------------------------------------------------------- /ctf/core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf/core.lua -------------------------------------------------------------------------------- /ctf/diplomacy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf/diplomacy.lua -------------------------------------------------------------------------------- /ctf/gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf/gui.lua -------------------------------------------------------------------------------- /ctf/hud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf/hud.lua -------------------------------------------------------------------------------- /ctf/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf/init.lua -------------------------------------------------------------------------------- /ctf/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf/mod.conf -------------------------------------------------------------------------------- /ctf/teams.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf/teams.lua -------------------------------------------------------------------------------- /ctf/textures/diplo_alliance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf/textures/diplo_alliance.png -------------------------------------------------------------------------------- /ctf/textures/diplo_peace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf/textures/diplo_peace.png -------------------------------------------------------------------------------- /ctf/textures/diplo_war.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf/textures/diplo_war.png -------------------------------------------------------------------------------- /ctf_chat/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_chat/init.lua -------------------------------------------------------------------------------- /ctf_chat/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_chat/mod.conf -------------------------------------------------------------------------------- /ctf_colors/gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/gui.lua -------------------------------------------------------------------------------- /ctf_colors/hud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/hud.lua -------------------------------------------------------------------------------- /ctf_colors/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/init.lua -------------------------------------------------------------------------------- /ctf_colors/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/mod.conf -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_hotbar_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_hotbar_blue.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_hotbar_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_hotbar_red.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_hotbar_selected_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_hotbar_selected_blue.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_hotbar_selected_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_hotbar_selected_red.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_black.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_blue.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_cyan.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_gold.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_gray.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_green.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_orange.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_pink.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_purple.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_red.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_silver.png -------------------------------------------------------------------------------- /ctf_colors/textures/ctf_colors_skin_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_colors/textures/ctf_colors_skin_yellow.png -------------------------------------------------------------------------------- /ctf_flag/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/api.lua -------------------------------------------------------------------------------- /ctf_flag/flag_func.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/flag_func.lua -------------------------------------------------------------------------------- /ctf_flag/flags.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/flags.lua -------------------------------------------------------------------------------- /ctf_flag/gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/gui.lua -------------------------------------------------------------------------------- /ctf_flag/hud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/hud.lua -------------------------------------------------------------------------------- /ctf_flag/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/init.lua -------------------------------------------------------------------------------- /ctf_flag/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/mod.conf -------------------------------------------------------------------------------- /ctf_flag/sounds/trumpet_lose.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/sounds/trumpet_lose.ogg -------------------------------------------------------------------------------- /ctf_flag/sounds/trumpet_win.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/sounds/trumpet_win.ogg -------------------------------------------------------------------------------- /ctf_flag/textures/flag_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_black.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_black2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_black2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_blue.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_blue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_blue2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_cyan.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_cyan2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_cyan2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_gold.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_gold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_gold2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_gray.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_gray2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_gray2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_green.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_green2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_green2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_orange.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_orange2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_orange2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_pink.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_pink2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_pink2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_purple.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_purple2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_purple2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_red.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_red2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_red2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_silver.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_silver2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_silver2.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_yellow.png -------------------------------------------------------------------------------- /ctf_flag/textures/flag_yellow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_flag/textures/flag_yellow2.png -------------------------------------------------------------------------------- /ctf_protect/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_protect/init.lua -------------------------------------------------------------------------------- /ctf_protect/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/ctf_protect/mod.conf -------------------------------------------------------------------------------- /doc_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/doc_data.md -------------------------------------------------------------------------------- /doc_project_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/doc_project_overview.md -------------------------------------------------------------------------------- /doc_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/doc_settings.md -------------------------------------------------------------------------------- /hudkit/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/hudkit/init.lua -------------------------------------------------------------------------------- /hudkit/mod.conf: -------------------------------------------------------------------------------- 1 | name = hudkit 2 | -------------------------------------------------------------------------------- /lib_chatcmdbuilder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/lib_chatcmdbuilder/.gitignore -------------------------------------------------------------------------------- /lib_chatcmdbuilder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/lib_chatcmdbuilder/LICENSE -------------------------------------------------------------------------------- /lib_chatcmdbuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/lib_chatcmdbuilder/README.md -------------------------------------------------------------------------------- /lib_chatcmdbuilder/description.txt: -------------------------------------------------------------------------------- 1 | A library to make registering chat commands easier 2 | -------------------------------------------------------------------------------- /lib_chatcmdbuilder/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/lib_chatcmdbuilder/init.lua -------------------------------------------------------------------------------- /lib_chatcmdbuilder/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/ctf_pvp_engine/HEAD/lib_chatcmdbuilder/mod.conf -------------------------------------------------------------------------------- /modpack.conf: -------------------------------------------------------------------------------- 1 | name = ctf_pvp_engine 2 | --------------------------------------------------------------------------------