├── .editorconfig ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── luacheck.yml ├── .gitignore ├── .gitmodules ├── .luacheckrc ├── CONTRIBUTING.md ├── README.md ├── docs ├── accurate_statbar.patch └── ctf-api.md ├── game.conf ├── menu ├── background.png ├── header.png └── icon.png ├── minetest.conf ├── mods ├── apis │ ├── ctf_gui │ │ ├── api.md │ │ ├── dev.lua │ │ ├── init.lua │ │ └── mod.conf │ ├── ctf_settings │ │ ├── global_settings.lua │ │ ├── init.lua │ │ ├── locale │ │ │ ├── ctf_settings.fr.tr │ │ │ └── template.txt │ │ └── mod.conf │ ├── hud_events │ │ ├── init.lua │ │ └── mod.conf │ ├── modpack.conf │ └── physics │ │ ├── init.lua │ │ └── mod.conf ├── ctf │ ├── ctf_api │ │ ├── init.lua │ │ └── mod.conf │ ├── ctf_beds │ │ ├── README.txt │ │ ├── defripper.json │ │ ├── exported.lua │ │ ├── init.lua │ │ ├── license.txt │ │ ├── mediasource.json │ │ ├── mod.conf │ │ └── textures │ │ │ ├── beds_bed.png │ │ │ ├── beds_bed_fancy.png │ │ │ ├── beds_bed_foot.png │ │ │ ├── beds_bed_head.png │ │ │ ├── beds_bed_side1.png │ │ │ ├── beds_bed_side2.png │ │ │ ├── beds_bed_side_bottom.png │ │ │ ├── beds_bed_side_bottom_r.png │ │ │ ├── beds_bed_side_top.png │ │ │ ├── beds_bed_side_top_r.png │ │ │ ├── beds_bed_top1.png │ │ │ ├── beds_bed_top2.png │ │ │ ├── beds_bed_top_bottom.png │ │ │ ├── beds_bed_top_top.png │ │ │ └── beds_bed_under.png │ ├── ctf_chat │ │ ├── init.lua │ │ ├── locale │ │ │ ├── ctf_chat.fr.tr │ │ │ └── template.txt │ │ └── mod.conf │ ├── ctf_combat │ │ ├── ctf_combat_mode │ │ │ ├── init.lua │ │ │ └── mod.conf │ │ ├── ctf_grenades │ │ │ ├── init.lua │ │ │ ├── license │ │ │ ├── mod.conf │ │ │ ├── readme.md │ │ │ ├── sounds │ │ │ │ ├── grenades_explode.ogg │ │ │ │ ├── grenades_glasslike_break.ogg │ │ │ │ ├── grenades_hiss.ogg │ │ │ │ └── license.txt │ │ │ └── textures │ │ │ │ ├── grenades_boom.png │ │ │ │ ├── grenades_flashbang.png │ │ │ │ ├── grenades_frag.png │ │ │ │ ├── grenades_gun_powder.png │ │ │ │ ├── grenades_smoke.png │ │ │ │ ├── grenades_smoke_grenade.png │ │ │ │ ├── grenades_smoke_mask.png │ │ │ │ └── license │ │ ├── ctf_healing │ │ │ ├── bandage.lua │ │ │ ├── init.lua │ │ │ ├── locale │ │ │ │ ├── ctf_healing.fr.tr │ │ │ │ └── template.txt │ │ │ ├── medkit.lua │ │ │ ├── mod.conf │ │ │ └── textures │ │ │ │ ├── ctf_healing_bandage.png │ │ │ │ └── ctf_healing_medkit.png │ │ ├── ctf_kill_list │ │ │ ├── init.lua │ │ │ ├── mod.conf │ │ │ └── textures │ │ │ │ └── ctf_kill_list_punch.png │ │ ├── ctf_melee │ │ │ ├── init.lua │ │ │ └── mod.conf │ │ ├── ctf_ranged │ │ │ ├── init.lua │ │ │ ├── locale │ │ │ │ ├── ctf_ranged.fr.tr │ │ │ │ └── template.txt │ │ │ ├── mod.conf │ │ │ ├── sounds │ │ │ │ ├── ctf_ranged_click.ogg │ │ │ │ ├── ctf_ranged_explode.ogg │ │ │ │ ├── ctf_ranged_hit.ogg │ │ │ │ ├── ctf_ranged_pistol.ogg │ │ │ │ ├── ctf_ranged_reload.ogg │ │ │ │ ├── ctf_ranged_ricochet.ogg │ │ │ │ ├── ctf_ranged_rifle.ogg │ │ │ │ ├── ctf_ranged_rocket_fire.ogg │ │ │ │ ├── ctf_ranged_shotgun.ogg │ │ │ │ ├── ctf_ranged_sniper.ogg │ │ │ │ ├── ctf_ranged_throw.ogg │ │ │ │ └── license.txt │ │ │ └── textures │ │ │ │ ├── ctf_ranged_ammo.png │ │ │ │ ├── ctf_ranged_bullet.png │ │ │ │ ├── ctf_ranged_bullethole.png │ │ │ │ ├── ctf_ranged_pistol.png │ │ │ │ ├── ctf_ranged_rifle.png │ │ │ │ ├── ctf_ranged_rifle_crosshair.png │ │ │ │ ├── ctf_ranged_shotgun.png │ │ │ │ ├── ctf_ranged_smgun.png │ │ │ │ ├── ctf_ranged_sniper_rifle.png │ │ │ │ ├── ctf_ranged_sniper_rifle_magnum.png │ │ │ │ └── license.txt │ │ └── modpack.conf │ ├── ctf_core │ │ ├── cooldowns.lua │ │ ├── helpers.lua │ │ ├── init.lua │ │ ├── mod.conf │ │ ├── player_meta.lua │ │ └── privileges.lua │ ├── ctf_cosmetics │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── ctf_cosmetics_eyes.png │ │ │ ├── ctf_cosmetics_hair.png │ │ │ ├── ctf_cosmetics_pants.png │ │ │ └── ctf_cosmetics_shirt.png │ ├── ctf_landmine │ │ ├── init.lua │ │ ├── locale │ │ │ ├── ctf_landmine.fr.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ └── ctf_landmine_landmine.png │ ├── ctf_map │ │ ├── README.md │ │ ├── ctf_traps.lua │ │ ├── editor_functions.lua │ │ ├── emerge.lua │ │ ├── init.lua │ │ ├── locale │ │ │ ├── ctf_map.fr.tr │ │ │ └── template.txt │ │ ├── map_functions.lua │ │ ├── map_meta.lua │ │ ├── mapedit_gui.lua │ │ ├── mod.conf │ │ ├── nodes.lua │ │ └── textures │ │ │ ├── ctf_map_damage_cobble.png │ │ │ ├── ctf_map_glass_red.png │ │ │ ├── ctf_map_ind_lava.png │ │ │ ├── ctf_map_ind_overlay.png │ │ │ ├── ctf_map_ind_poison_water.png │ │ │ ├── ctf_map_ind_river_water.png │ │ │ ├── ctf_map_ind_water.png │ │ │ ├── ctf_map_killnode.png │ │ │ ├── ctf_map_pro_section.png │ │ │ ├── ctf_map_reinforced_cobble.png │ │ │ ├── ctf_map_spike.png │ │ │ └── ctf_map_stone_red.png │ ├── ctf_modebase │ │ ├── bounties.lua │ │ ├── bounty_algo.lua │ │ ├── build_timer.lua │ │ ├── crafting.lua │ │ ├── features.lua │ │ ├── flags │ │ │ ├── huds.lua │ │ │ ├── nodes.lua │ │ │ └── taking.lua │ │ ├── hpregen.lua │ │ ├── immunity.lua │ │ ├── init.lua │ │ ├── locale │ │ │ ├── ctf_modebase.fr.tr │ │ │ └── template.txt │ │ ├── map_catalog.lua │ │ ├── map_catalog_show.lua │ │ ├── markers.lua │ │ ├── match.lua │ │ ├── mod.conf │ │ ├── mode_vote.lua │ │ ├── player.lua │ │ ├── ranking_commands.lua │ │ ├── recent_rankings.lua │ │ ├── register.lua │ │ ├── respawn_delay.lua │ │ ├── skip_vote.lua │ │ ├── sounds │ │ │ ├── ctf_modebase_build_time_over.ogg │ │ │ ├── ctf_modebase_drop_flag_negative.ogg │ │ │ ├── ctf_modebase_drop_flag_positive.ogg │ │ │ ├── ctf_modebase_notification.ogg │ │ │ ├── ctf_modebase_trumpet_negative.ogg │ │ │ └── ctf_modebase_trumpet_positive.ogg │ │ ├── summary.lua │ │ ├── textures │ │ │ ├── ctf_modebase_group.png │ │ │ ├── ctf_modebase_immune.png │ │ │ ├── ctf_modebase_skull.png │ │ │ └── ctf_modebase_special_item.png │ │ ├── treasure.lua │ │ └── update_wear.lua │ ├── ctf_modes │ │ ├── ctf_mode_classes │ │ │ ├── classes.lua │ │ │ ├── init.lua │ │ │ ├── locale │ │ │ │ ├── ctf_mode_classes.fr.tr │ │ │ │ └── template.txt │ │ │ ├── mod.conf │ │ │ ├── paxel.lua │ │ │ └── textures │ │ │ │ ├── ctf_mode_classes_knight_overlay.png │ │ │ │ ├── ctf_mode_classes_ranged_overlay.png │ │ │ │ ├── ctf_mode_classes_ranged_rifle.png │ │ │ │ └── ctf_mode_classes_support_overlay.png │ │ ├── ctf_mode_classic │ │ │ ├── init.lua │ │ │ └── mod.conf │ │ ├── ctf_mode_nade_fight │ │ │ ├── init.lua │ │ │ ├── locale │ │ │ │ ├── ctf_mode_nade_fight.fr.tr │ │ │ │ └── template.txt │ │ │ ├── mod.conf │ │ │ ├── textures │ │ │ │ ├── ctf_mode_nade_fight_black_hole_grenade.png │ │ │ │ ├── ctf_mode_nade_fight_firecracker_grenade.png │ │ │ │ └── ctf_mode_nade_fight_knockback_grenade.png │ │ │ └── tool.lua │ │ └── modpack.conf │ ├── ctf_player │ │ ├── LICENSE.txt │ │ ├── init.lua │ │ ├── mod.conf │ │ └── models │ │ │ ├── character.b3d │ │ │ └── character.blend │ ├── ctf_rankings │ │ ├── default.lua │ │ ├── dummy.lua │ │ ├── init.lua │ │ ├── leagues.lua │ │ ├── mod.conf │ │ ├── ranking_reset.lua │ │ ├── ranking_reset_default.lua │ │ ├── redis.lua │ │ ├── textures │ │ │ ├── ctf_rankings_league_bronze.png │ │ │ ├── ctf_rankings_league_diamond.png │ │ │ ├── ctf_rankings_league_gold.png │ │ │ ├── ctf_rankings_league_mese.png │ │ │ ├── ctf_rankings_league_steel.png │ │ │ ├── ctf_rankings_league_stone.png │ │ │ └── ctf_rankings_league_wood.png │ │ └── top.lua │ ├── ctf_report │ │ ├── init.lua │ │ ├── locale │ │ │ ├── ctf_report.es.tr │ │ │ ├── ctf_report.fr.tr │ │ │ ├── ctf_report.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── sounds │ │ │ └── ctf_report_bell.ogg │ ├── ctf_teams │ │ ├── commands.lua │ │ ├── functions.lua │ │ ├── init.lua │ │ ├── locale │ │ │ ├── ctf_teams.fr.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ ├── parties.lua │ │ ├── register.lua │ │ ├── team_chest.lua │ │ ├── team_door.lua │ │ └── textures │ │ │ ├── ctf_teams_chest_side_mask.png │ │ │ ├── ctf_teams_chest_top_mask.png │ │ │ ├── ctf_teams_door_steel.png │ │ │ ├── ctf_teams_door_steel_mask.png │ │ │ ├── ctf_teams_lock.png │ │ │ └── license.txt │ └── modpack.conf ├── mtg │ ├── ctf_changes │ │ ├── init.lua │ │ └── mod.conf │ ├── modpack.conf │ ├── more_ore │ │ ├── init.lua │ │ └── mod.conf │ ├── mtg_binoculars │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── binoculars.de.tr │ │ │ ├── binoculars.eo.tr │ │ │ ├── binoculars.es.tr │ │ │ ├── binoculars.fr.tr │ │ │ ├── binoculars.id.tr │ │ │ ├── binoculars.it.tr │ │ │ ├── binoculars.ja.tr │ │ │ ├── binoculars.jbo.tr │ │ │ ├── binoculars.lv.tr │ │ │ ├── binoculars.ms.tr │ │ │ ├── binoculars.pl.tr │ │ │ ├── binoculars.pt_BR.tr │ │ │ ├── binoculars.ru.tr │ │ │ ├── binoculars.sk.tr │ │ │ ├── binoculars.sv.tr │ │ │ ├── binoculars.uk.tr │ │ │ ├── binoculars.zh_CN.tr │ │ │ ├── binoculars.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ └── binoculars_binoculars.png │ ├── mtg_bucket │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── bucket.de.tr │ │ │ ├── bucket.eo.tr │ │ │ ├── bucket.es.tr │ │ │ ├── bucket.fr.tr │ │ │ ├── bucket.id.tr │ │ │ ├── bucket.it.tr │ │ │ ├── bucket.ja.tr │ │ │ ├── bucket.jbo.tr │ │ │ ├── bucket.lv.tr │ │ │ ├── bucket.ms.tr │ │ │ ├── bucket.pl.tr │ │ │ ├── bucket.pt_BR.tr │ │ │ ├── bucket.ru.tr │ │ │ ├── bucket.sk.tr │ │ │ ├── bucket.sv.tr │ │ │ ├── bucket.uk.tr │ │ │ ├── bucket.zh_CN.tr │ │ │ ├── bucket.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ ├── bucket.png │ │ │ ├── bucket_lava.png │ │ │ ├── bucket_river_water.png │ │ │ └── bucket_water.png │ ├── mtg_butterflies │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── butterflies.de.tr │ │ │ ├── butterflies.eo.tr │ │ │ ├── butterflies.es.tr │ │ │ ├── butterflies.fr.tr │ │ │ ├── butterflies.id.tr │ │ │ ├── butterflies.it.tr │ │ │ ├── butterflies.ja.tr │ │ │ ├── butterflies.jbo.tr │ │ │ ├── butterflies.lv.tr │ │ │ ├── butterflies.ms.tr │ │ │ ├── butterflies.pl.tr │ │ │ ├── butterflies.pt_BR.tr │ │ │ ├── butterflies.ru.tr │ │ │ ├── butterflies.sk.tr │ │ │ ├── butterflies.sv.tr │ │ │ ├── butterflies.uk.tr │ │ │ ├── butterflies.zh_CN.tr │ │ │ ├── butterflies.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ ├── butterflies_butterfly_red.png │ │ │ ├── butterflies_butterfly_red_animated.png │ │ │ ├── butterflies_butterfly_violet.png │ │ │ ├── butterflies_butterfly_violet_animated.png │ │ │ ├── butterflies_butterfly_white.png │ │ │ └── butterflies_butterfly_white_animated.png │ ├── mtg_creative │ │ ├── README.txt │ │ ├── init.lua │ │ ├── inventory.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── creative.de.tr │ │ │ ├── creative.eo.tr │ │ │ ├── creative.es.tr │ │ │ ├── creative.fr.tr │ │ │ ├── creative.id.tr │ │ │ ├── creative.it.tr │ │ │ ├── creative.ja.tr │ │ │ ├── creative.jbo.tr │ │ │ ├── creative.lv.tr │ │ │ ├── creative.ms.tr │ │ │ ├── creative.pl.tr │ │ │ ├── creative.pt_BR.tr │ │ │ ├── creative.ru.tr │ │ │ ├── creative.sk.tr │ │ │ ├── creative.sv.tr │ │ │ ├── creative.uk.tr │ │ │ ├── creative.zh_CN.tr │ │ │ ├── creative.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ ├── creative_clear_icon.png │ │ │ ├── creative_next_icon.png │ │ │ ├── creative_prev_icon.png │ │ │ ├── creative_search_icon.png │ │ │ └── creative_trash_icon.png │ ├── mtg_default │ │ ├── README.txt │ │ ├── aliases.lua │ │ ├── chests.lua │ │ ├── crafting.lua │ │ ├── craftitems.lua │ │ ├── functions.lua │ │ ├── furnace.lua │ │ ├── init.lua │ │ ├── item_entity.lua │ │ ├── legacy.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── default.de.tr │ │ │ ├── default.eo.tr │ │ │ ├── default.es.tr │ │ │ ├── default.fr.tr │ │ │ ├── default.id.tr │ │ │ ├── default.it.tr │ │ │ ├── default.ja.tr │ │ │ ├── default.jbo.tr │ │ │ ├── default.lv.tr │ │ │ ├── default.ms.tr │ │ │ ├── default.pl.tr │ │ │ ├── default.pt.tr │ │ │ ├── default.pt_BR.tr │ │ │ ├── default.ru.tr │ │ │ ├── default.sk.tr │ │ │ ├── default.sv.tr │ │ │ ├── default.uk.tr │ │ │ ├── default.zh_CN.tr │ │ │ ├── default.zh_TW.tr │ │ │ └── template.txt │ │ ├── mapgen.lua │ │ ├── mod.conf │ │ ├── models │ │ │ ├── chest_open.obj │ │ │ ├── torch_ceiling.obj │ │ │ ├── torch_floor.obj │ │ │ └── torch_wall.obj │ │ ├── nodes.lua │ │ ├── schematics │ │ │ ├── acacia_bush.mts │ │ │ ├── acacia_log.mts │ │ │ ├── acacia_tree.mts │ │ │ ├── acacia_tree_from_sapling.mts │ │ │ ├── apple_log.mts │ │ │ ├── apple_tree.mts │ │ │ ├── apple_tree_from_sapling.mts │ │ │ ├── aspen_log.mts │ │ │ ├── aspen_tree.mts │ │ │ ├── aspen_tree_from_sapling.mts │ │ │ ├── blueberry_bush.mts │ │ │ ├── bush.mts │ │ │ ├── emergent_jungle_tree.mts │ │ │ ├── emergent_jungle_tree_from_sapling.mts │ │ │ ├── jungle_log.mts │ │ │ ├── jungle_tree.mts │ │ │ ├── jungle_tree_from_sapling.mts │ │ │ ├── large_cactus.mts │ │ │ ├── papyrus_on_dirt.mts │ │ │ ├── papyrus_on_dry_dirt.mts │ │ │ ├── pine_bush.mts │ │ │ ├── pine_log.mts │ │ │ ├── pine_tree.mts │ │ │ ├── pine_tree_from_sapling.mts │ │ │ ├── small_pine_tree.mts │ │ │ ├── small_pine_tree_from_sapling.mts │ │ │ ├── snowy_pine_tree_from_sapling.mts │ │ │ └── snowy_small_pine_tree_from_sapling.mts │ │ ├── sounds │ │ │ ├── default_break_glass.1.ogg │ │ │ ├── default_break_glass.2.ogg │ │ │ ├── default_break_glass.3.ogg │ │ │ ├── default_chest_close.ogg │ │ │ ├── default_chest_open.ogg │ │ │ ├── default_cool_lava.1.ogg │ │ │ ├── default_cool_lava.2.ogg │ │ │ ├── default_cool_lava.3.ogg │ │ │ ├── default_dig_choppy.1.ogg │ │ │ ├── default_dig_choppy.2.ogg │ │ │ ├── default_dig_choppy.3.ogg │ │ │ ├── default_dig_cracky.1.ogg │ │ │ ├── default_dig_cracky.2.ogg │ │ │ ├── default_dig_cracky.3.ogg │ │ │ ├── default_dig_crumbly.ogg │ │ │ ├── default_dig_dig_immediate.ogg │ │ │ ├── default_dig_metal.ogg │ │ │ ├── default_dig_oddly_breakable_by_hand.ogg │ │ │ ├── default_dig_snappy.ogg │ │ │ ├── default_dirt_footstep.1.ogg │ │ │ ├── default_dirt_footstep.2.ogg │ │ │ ├── default_dug_metal.1.ogg │ │ │ ├── default_dug_metal.2.ogg │ │ │ ├── default_dug_node.1.ogg │ │ │ ├── default_dug_node.2.ogg │ │ │ ├── default_furnace_active.ogg │ │ │ ├── default_glass_footstep.ogg │ │ │ ├── default_grass_footstep.1.ogg │ │ │ ├── default_grass_footstep.2.ogg │ │ │ ├── default_grass_footstep.3.ogg │ │ │ ├── default_gravel_dig.1.ogg │ │ │ ├── default_gravel_dig.2.ogg │ │ │ ├── default_gravel_dug.1.ogg │ │ │ ├── default_gravel_dug.2.ogg │ │ │ ├── default_gravel_dug.3.ogg │ │ │ ├── default_gravel_footstep.1.ogg │ │ │ ├── default_gravel_footstep.2.ogg │ │ │ ├── default_gravel_footstep.3.ogg │ │ │ ├── default_gravel_footstep.4.ogg │ │ │ ├── default_hard_footstep.1.ogg │ │ │ ├── default_hard_footstep.2.ogg │ │ │ ├── default_hard_footstep.3.ogg │ │ │ ├── default_ice_dig.1.ogg │ │ │ ├── default_ice_dig.2.ogg │ │ │ ├── default_ice_dig.3.ogg │ │ │ ├── default_ice_dug.ogg │ │ │ ├── default_ice_footstep.1.ogg │ │ │ ├── default_ice_footstep.2.ogg │ │ │ ├── default_ice_footstep.3.ogg │ │ │ ├── default_item_smoke.ogg │ │ │ ├── default_metal_footstep.1.ogg │ │ │ ├── default_metal_footstep.2.ogg │ │ │ ├── default_metal_footstep.3.ogg │ │ │ ├── default_place_node.1.ogg │ │ │ ├── default_place_node.2.ogg │ │ │ ├── default_place_node.3.ogg │ │ │ ├── default_place_node_hard.1.ogg │ │ │ ├── default_place_node_hard.2.ogg │ │ │ ├── default_place_node_metal.1.ogg │ │ │ ├── default_place_node_metal.2.ogg │ │ │ ├── default_sand_footstep.1.ogg │ │ │ ├── default_sand_footstep.2.ogg │ │ │ ├── default_sand_footstep.3.ogg │ │ │ ├── default_snow_footstep.1.ogg │ │ │ ├── default_snow_footstep.2.ogg │ │ │ ├── default_snow_footstep.3.ogg │ │ │ ├── default_snow_footstep.4.ogg │ │ │ ├── default_snow_footstep.5.ogg │ │ │ ├── default_tool_breaks.1.ogg │ │ │ ├── default_tool_breaks.2.ogg │ │ │ ├── default_tool_breaks.3.ogg │ │ │ ├── default_water_footstep.1.ogg │ │ │ ├── default_water_footstep.2.ogg │ │ │ ├── default_water_footstep.3.ogg │ │ │ ├── default_wood_footstep.1.ogg │ │ │ ├── default_wood_footstep.2.ogg │ │ │ └── player_damage.ogg │ │ ├── textures │ │ │ ├── bubble.png │ │ │ ├── crack_anylength.png │ │ │ ├── default_acacia_bush_sapling.png │ │ │ ├── default_acacia_bush_stem.png │ │ │ ├── default_acacia_leaves.png │ │ │ ├── default_acacia_leaves_simple.png │ │ │ ├── default_acacia_sapling.png │ │ │ ├── default_acacia_tree.png │ │ │ ├── default_acacia_tree_top.png │ │ │ ├── default_acacia_wood.png │ │ │ ├── default_apple.png │ │ │ ├── default_aspen_leaves.png │ │ │ ├── default_aspen_sapling.png │ │ │ ├── default_aspen_tree.png │ │ │ ├── default_aspen_tree_top.png │ │ │ ├── default_aspen_wood.png │ │ │ ├── default_blueberries.png │ │ │ ├── default_blueberry_bush_leaves.png │ │ │ ├── default_blueberry_bush_sapling.png │ │ │ ├── default_blueberry_overlay.png │ │ │ ├── default_book.png │ │ │ ├── default_book_written.png │ │ │ ├── default_bookshelf.png │ │ │ ├── default_bookshelf_slot.png │ │ │ ├── default_brick.png │ │ │ ├── default_bronze_block.png │ │ │ ├── default_bronze_ingot.png │ │ │ ├── default_bush_sapling.png │ │ │ ├── default_bush_stem.png │ │ │ ├── default_cactus_side.png │ │ │ ├── default_cactus_top.png │ │ │ ├── default_chest_front.png │ │ │ ├── default_chest_inside.png │ │ │ ├── default_chest_lock.png │ │ │ ├── default_chest_side.png │ │ │ ├── default_chest_top.png │ │ │ ├── default_clay.png │ │ │ ├── default_clay_brick.png │ │ │ ├── default_clay_lump.png │ │ │ ├── default_cloud.png │ │ │ ├── default_coal_block.png │ │ │ ├── default_coal_lump.png │ │ │ ├── default_cobble.png │ │ │ ├── default_coniferous_litter.png │ │ │ ├── default_coniferous_litter_side.png │ │ │ ├── default_copper_block.png │ │ │ ├── default_copper_ingot.png │ │ │ ├── default_copper_lump.png │ │ │ ├── default_coral_brown.png │ │ │ ├── default_coral_cyan.png │ │ │ ├── default_coral_green.png │ │ │ ├── default_coral_orange.png │ │ │ ├── default_coral_pink.png │ │ │ ├── default_coral_skeleton.png │ │ │ ├── default_desert_cobble.png │ │ │ ├── default_desert_sand.png │ │ │ ├── default_desert_sandstone.png │ │ │ ├── default_desert_sandstone_block.png │ │ │ ├── default_desert_sandstone_brick.png │ │ │ ├── default_desert_stone.png │ │ │ ├── default_desert_stone_block.png │ │ │ ├── default_desert_stone_brick.png │ │ │ ├── default_diamond.png │ │ │ ├── default_diamond_block.png │ │ │ ├── default_dirt.png │ │ │ ├── default_dry_dirt.png │ │ │ ├── default_dry_grass.png │ │ │ ├── default_dry_grass_1.png │ │ │ ├── default_dry_grass_2.png │ │ │ ├── default_dry_grass_3.png │ │ │ ├── default_dry_grass_4.png │ │ │ ├── default_dry_grass_5.png │ │ │ ├── default_dry_grass_side.png │ │ │ ├── default_dry_shrub.png │ │ │ ├── default_emergent_jungle_sapling.png │ │ │ ├── default_fence_acacia_wood.png │ │ │ ├── default_fence_aspen_wood.png │ │ │ ├── default_fence_junglewood.png │ │ │ ├── default_fence_overlay.png │ │ │ ├── default_fence_pine_wood.png │ │ │ ├── default_fence_rail_acacia_wood.png │ │ │ ├── default_fence_rail_aspen_wood.png │ │ │ ├── default_fence_rail_junglewood.png │ │ │ ├── default_fence_rail_overlay.png │ │ │ ├── default_fence_rail_pine_wood.png │ │ │ ├── default_fence_rail_wood.png │ │ │ ├── default_fence_wood.png │ │ │ ├── default_fern_1.png │ │ │ ├── default_fern_2.png │ │ │ ├── default_fern_3.png │ │ │ ├── default_flint.png │ │ │ ├── default_footprint.png │ │ │ ├── default_furnace_bottom.png │ │ │ ├── default_furnace_fire_bg.png │ │ │ ├── default_furnace_fire_fg.png │ │ │ ├── default_furnace_front.png │ │ │ ├── default_furnace_front_active.png │ │ │ ├── default_furnace_side.png │ │ │ ├── default_furnace_top.png │ │ │ ├── default_glass.png │ │ │ ├── default_glass_detail.png │ │ │ ├── default_gold_block.png │ │ │ ├── default_gold_ingot.png │ │ │ ├── default_gold_lump.png │ │ │ ├── default_grass.png │ │ │ ├── default_grass_1.png │ │ │ ├── default_grass_2.png │ │ │ ├── default_grass_3.png │ │ │ ├── default_grass_4.png │ │ │ ├── default_grass_5.png │ │ │ ├── default_grass_side.png │ │ │ ├── default_gravel.png │ │ │ ├── default_ice.png │ │ │ ├── default_invisible_node_overlay.png │ │ │ ├── default_iron_lump.png │ │ │ ├── default_item_smoke.png │ │ │ ├── default_junglegrass.png │ │ │ ├── default_jungleleaves.png │ │ │ ├── default_jungleleaves_simple.png │ │ │ ├── default_junglesapling.png │ │ │ ├── default_jungletree.png │ │ │ ├── default_jungletree_top.png │ │ │ ├── default_junglewood.png │ │ │ ├── default_kelp.png │ │ │ ├── default_ladder_steel.png │ │ │ ├── default_ladder_wood.png │ │ │ ├── default_large_cactus_seedling.png │ │ │ ├── default_lava.png │ │ │ ├── default_lava_flowing_animated.png │ │ │ ├── default_lava_source_animated.png │ │ │ ├── default_leaves.png │ │ │ ├── default_leaves_simple.png │ │ │ ├── default_marram_grass_1.png │ │ │ ├── default_marram_grass_2.png │ │ │ ├── default_marram_grass_3.png │ │ │ ├── default_mese_block.png │ │ │ ├── default_mese_crystal.png │ │ │ ├── default_mese_crystal_fragment.png │ │ │ ├── default_mese_post_light_side.png │ │ │ ├── default_mese_post_light_side_dark.png │ │ │ ├── default_meselamp.png │ │ │ ├── default_mineral_coal.png │ │ │ ├── default_mineral_copper.png │ │ │ ├── default_mineral_diamond.png │ │ │ ├── default_mineral_gold.png │ │ │ ├── default_mineral_iron.png │ │ │ ├── default_mineral_mese.png │ │ │ ├── default_mineral_tin.png │ │ │ ├── default_moss.png │ │ │ ├── default_moss_side.png │ │ │ ├── default_mossycobble.png │ │ │ ├── default_obsidian.png │ │ │ ├── default_obsidian_block.png │ │ │ ├── default_obsidian_brick.png │ │ │ ├── default_obsidian_glass.png │ │ │ ├── default_obsidian_glass_detail.png │ │ │ ├── default_obsidian_shard.png │ │ │ ├── default_paper.png │ │ │ ├── default_papyrus.png │ │ │ ├── default_permafrost.png │ │ │ ├── default_pine_bush_sapling.png │ │ │ ├── default_pine_bush_stem.png │ │ │ ├── default_pine_needles.png │ │ │ ├── default_pine_sapling.png │ │ │ ├── default_pine_tree.png │ │ │ ├── default_pine_tree_top.png │ │ │ ├── default_pine_wood.png │ │ │ ├── default_rainforest_litter.png │ │ │ ├── default_rainforest_litter_side.png │ │ │ ├── default_river_water.png │ │ │ ├── default_river_water_flowing_animated.png │ │ │ ├── default_river_water_source_animated.png │ │ │ ├── default_sand.png │ │ │ ├── default_sandstone.png │ │ │ ├── default_sandstone_block.png │ │ │ ├── default_sandstone_brick.png │ │ │ ├── default_sapling.png │ │ │ ├── default_sign_steel.png │ │ │ ├── default_sign_wall_steel.png │ │ │ ├── default_sign_wall_wood.png │ │ │ ├── default_sign_wood.png │ │ │ ├── default_silver_sand.png │ │ │ ├── default_silver_sandstone.png │ │ │ ├── default_silver_sandstone_block.png │ │ │ ├── default_silver_sandstone_brick.png │ │ │ ├── default_snow.png │ │ │ ├── default_snow_side.png │ │ │ ├── default_snowball.png │ │ │ ├── default_steel_block.png │ │ │ ├── default_steel_ingot.png │ │ │ ├── default_stick.png │ │ │ ├── default_stone.png │ │ │ ├── default_stone_block.png │ │ │ ├── default_stone_brick.png │ │ │ ├── default_stones.png │ │ │ ├── default_stones_side.png │ │ │ ├── default_tin_block.png │ │ │ ├── default_tin_ingot.png │ │ │ ├── default_tin_lump.png │ │ │ ├── default_tool_bronzeaxe.png │ │ │ ├── default_tool_bronzepick.png │ │ │ ├── default_tool_bronzeshovel.png │ │ │ ├── default_tool_bronzesword.png │ │ │ ├── default_tool_diamondaxe.png │ │ │ ├── default_tool_diamondpick.png │ │ │ ├── default_tool_diamondshovel.png │ │ │ ├── default_tool_diamondsword.png │ │ │ ├── default_tool_meseaxe.png │ │ │ ├── default_tool_mesepick.png │ │ │ ├── default_tool_meseshovel.png │ │ │ ├── default_tool_mesesword.png │ │ │ ├── default_tool_steelaxe.png │ │ │ ├── default_tool_steelpick.png │ │ │ ├── default_tool_steelshovel.png │ │ │ ├── default_tool_steelsword.png │ │ │ ├── default_tool_stoneaxe.png │ │ │ ├── default_tool_stonepick.png │ │ │ ├── default_tool_stoneshovel.png │ │ │ ├── default_tool_stonesword.png │ │ │ ├── default_tool_woodaxe.png │ │ │ ├── default_tool_woodpick.png │ │ │ ├── default_tool_woodshovel.png │ │ │ ├── default_tool_woodsword.png │ │ │ ├── default_torch_animated.png │ │ │ ├── default_torch_on_ceiling_animated.png │ │ │ ├── default_torch_on_floor.png │ │ │ ├── default_torch_on_floor_animated.png │ │ │ ├── default_tree.png │ │ │ ├── default_tree_top.png │ │ │ ├── default_water.png │ │ │ ├── default_water_flowing_animated.png │ │ │ ├── default_water_source_animated.png │ │ │ ├── default_wood.png │ │ │ ├── gui_formbg.png │ │ │ ├── gui_furnace_arrow_bg.png │ │ │ ├── gui_furnace_arrow_fg.png │ │ │ ├── gui_hb_bg.png │ │ │ ├── gui_hotbar.png │ │ │ ├── gui_hotbar_selected.png │ │ │ ├── heart.png │ │ │ └── wieldhand.png │ │ ├── tools.lua │ │ ├── torch.lua │ │ └── trees.lua │ ├── mtg_doors │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── doors.de.tr │ │ │ ├── doors.eo.tr │ │ │ ├── doors.es.tr │ │ │ ├── doors.fr.tr │ │ │ ├── doors.id.tr │ │ │ ├── doors.it.tr │ │ │ ├── doors.ja.tr │ │ │ ├── doors.jbo.tr │ │ │ ├── doors.lv.tr │ │ │ ├── doors.ms.tr │ │ │ ├── doors.pl.tr │ │ │ ├── doors.pt_BR.tr │ │ │ ├── doors.ru.tr │ │ │ ├── doors.sk.tr │ │ │ ├── doors.sv.tr │ │ │ ├── doors.uk.tr │ │ │ ├── doors.zh_CN.tr │ │ │ ├── doors.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ ├── models │ │ │ ├── door.blend │ │ │ ├── door_a.b3d │ │ │ ├── door_b.b3d │ │ │ ├── doors_fencegate_closed.obj │ │ │ └── doors_fencegate_open.obj │ │ ├── sounds │ │ │ ├── doors_door_close.ogg │ │ │ ├── doors_door_open.ogg │ │ │ ├── doors_fencegate_close.ogg │ │ │ ├── doors_fencegate_open.ogg │ │ │ ├── doors_glass_door_close.ogg │ │ │ ├── doors_glass_door_open.ogg │ │ │ ├── doors_steel_door_close.ogg │ │ │ └── doors_steel_door_open.ogg │ │ └── textures │ │ │ ├── doors_door_glass.png │ │ │ ├── doors_door_obsidian_glass.png │ │ │ ├── doors_door_steel.png │ │ │ ├── doors_door_wood.png │ │ │ ├── doors_hidden_segment.png │ │ │ ├── doors_item_glass.png │ │ │ ├── doors_item_obsidian_glass.png │ │ │ ├── doors_item_steel.png │ │ │ ├── doors_item_wood.png │ │ │ ├── doors_trapdoor.png │ │ │ ├── doors_trapdoor_side.png │ │ │ ├── doors_trapdoor_steel.png │ │ │ └── doors_trapdoor_steel_side.png │ ├── mtg_dye │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── dye.de.tr │ │ │ ├── dye.eo.tr │ │ │ ├── dye.es.tr │ │ │ ├── dye.fr.tr │ │ │ ├── dye.id.tr │ │ │ ├── dye.it.tr │ │ │ ├── dye.ja.tr │ │ │ ├── dye.jbo.tr │ │ │ ├── dye.lv.tr │ │ │ ├── dye.ms.tr │ │ │ ├── dye.pl.tr │ │ │ ├── dye.pt_BR.tr │ │ │ ├── dye.ru.tr │ │ │ ├── dye.sk.tr │ │ │ ├── dye.sv.tr │ │ │ ├── dye.uk.tr │ │ │ ├── dye.zh_CN.tr │ │ │ ├── dye.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ ├── dye_black.png │ │ │ ├── dye_blue.png │ │ │ ├── dye_brown.png │ │ │ ├── dye_cyan.png │ │ │ ├── dye_dark_green.png │ │ │ ├── dye_dark_grey.png │ │ │ ├── dye_green.png │ │ │ ├── dye_grey.png │ │ │ ├── dye_magenta.png │ │ │ ├── dye_orange.png │ │ │ ├── dye_pink.png │ │ │ ├── dye_red.png │ │ │ ├── dye_violet.png │ │ │ ├── dye_white.png │ │ │ └── dye_yellow.png │ ├── mtg_fire │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── fire.de.tr │ │ │ ├── fire.eo.tr │ │ │ ├── fire.es.tr │ │ │ ├── fire.fr.tr │ │ │ ├── fire.id.tr │ │ │ ├── fire.it.tr │ │ │ ├── fire.ja.tr │ │ │ ├── fire.jbo.tr │ │ │ ├── fire.lv.tr │ │ │ ├── fire.ms.tr │ │ │ ├── fire.pl.tr │ │ │ ├── fire.pt.tr │ │ │ ├── fire.pt_BR.tr │ │ │ ├── fire.ru.tr │ │ │ ├── fire.sk.tr │ │ │ ├── fire.sv.tr │ │ │ ├── fire.uk.tr │ │ │ ├── fire.zh_CN.tr │ │ │ ├── fire.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ ├── sounds │ │ │ ├── fire_extinguish_flame.1.ogg │ │ │ ├── fire_extinguish_flame.2.ogg │ │ │ ├── fire_extinguish_flame.3.ogg │ │ │ ├── fire_fire.1.ogg │ │ │ ├── fire_fire.2.ogg │ │ │ ├── fire_fire.3.ogg │ │ │ ├── fire_flint_and_steel.ogg │ │ │ ├── fire_large.ogg │ │ │ └── fire_small.ogg │ │ └── textures │ │ │ ├── fire_basic_flame.png │ │ │ ├── fire_basic_flame_animated.png │ │ │ └── fire_flint_steel.png │ ├── mtg_fireflies │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── fireflies.de.tr │ │ │ ├── fireflies.eo.tr │ │ │ ├── fireflies.es.tr │ │ │ ├── fireflies.fr.tr │ │ │ ├── fireflies.id.tr │ │ │ ├── fireflies.it.tr │ │ │ ├── fireflies.ja.tr │ │ │ ├── fireflies.jbo.tr │ │ │ ├── fireflies.lv.tr │ │ │ ├── fireflies.ms.tr │ │ │ ├── fireflies.pl.tr │ │ │ ├── fireflies.pt_BR.tr │ │ │ ├── fireflies.ru.tr │ │ │ ├── fireflies.sk.tr │ │ │ ├── fireflies.sv.tr │ │ │ ├── fireflies.uk.tr │ │ │ ├── fireflies.zh_CN.tr │ │ │ ├── fireflies.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ ├── fireflies_bottle.png │ │ │ ├── fireflies_bottle_animated.png │ │ │ ├── fireflies_bugnet.png │ │ │ ├── fireflies_firefly.png │ │ │ └── fireflies_firefly_animated.png │ ├── mtg_flowers │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── flowers.de.tr │ │ │ ├── flowers.eo.tr │ │ │ ├── flowers.es.tr │ │ │ ├── flowers.fr.tr │ │ │ ├── flowers.id.tr │ │ │ ├── flowers.it.tr │ │ │ ├── flowers.ja.tr │ │ │ ├── flowers.jbo.tr │ │ │ ├── flowers.lv.tr │ │ │ ├── flowers.ms.tr │ │ │ ├── flowers.pl.tr │ │ │ ├── flowers.pt_BR.tr │ │ │ ├── flowers.ru.tr │ │ │ ├── flowers.sk.tr │ │ │ ├── flowers.sv.tr │ │ │ ├── flowers.uk.tr │ │ │ ├── flowers.zh_CN.tr │ │ │ ├── flowers.zh_TW.tr │ │ │ └── template.txt │ │ ├── mapgen.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── flowers_chrysanthemum_green.png │ │ │ ├── flowers_dandelion_white.png │ │ │ ├── flowers_dandelion_yellow.png │ │ │ ├── flowers_geranium.png │ │ │ ├── flowers_mushroom_brown.png │ │ │ ├── flowers_mushroom_red.png │ │ │ ├── flowers_rose.png │ │ │ ├── flowers_tulip.png │ │ │ ├── flowers_tulip_black.png │ │ │ ├── flowers_viola.png │ │ │ ├── flowers_waterlily.png │ │ │ └── flowers_waterlily_bottom.png │ ├── mtg_map │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── map.de.tr │ │ │ ├── map.eo.tr │ │ │ ├── map.es.tr │ │ │ ├── map.fr.tr │ │ │ ├── map.id.tr │ │ │ ├── map.it.tr │ │ │ ├── map.ja.tr │ │ │ ├── map.jbo.tr │ │ │ ├── map.lv.tr │ │ │ ├── map.ms.tr │ │ │ ├── map.pl.tr │ │ │ ├── map.pt_BR.tr │ │ │ ├── map.ru.tr │ │ │ ├── map.sk.tr │ │ │ ├── map.sv.tr │ │ │ ├── map.uk.tr │ │ │ ├── map.zh_CN.tr │ │ │ ├── map.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ └── map_mapping_kit.png │ ├── mtg_player_api │ │ ├── README.txt │ │ ├── api.lua │ │ ├── init.lua │ │ ├── license.txt │ │ ├── mod.conf │ │ ├── models │ │ │ ├── character.b3d │ │ │ ├── character.blend │ │ │ └── character.png │ │ └── textures │ │ │ ├── player.png │ │ │ └── player_back.png │ ├── mtg_screwdriver │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── screwdriver.de.tr │ │ │ ├── screwdriver.eo.tr │ │ │ ├── screwdriver.es.tr │ │ │ ├── screwdriver.fr.tr │ │ │ ├── screwdriver.id.tr │ │ │ ├── screwdriver.it.tr │ │ │ ├── screwdriver.ja.tr │ │ │ ├── screwdriver.jbo.tr │ │ │ ├── screwdriver.lv.tr │ │ │ ├── screwdriver.ms.tr │ │ │ ├── screwdriver.pl.tr │ │ │ ├── screwdriver.pt_BR.tr │ │ │ ├── screwdriver.ru.tr │ │ │ ├── screwdriver.sk.tr │ │ │ ├── screwdriver.sv.tr │ │ │ ├── screwdriver.uk.tr │ │ │ ├── screwdriver.zh_CN.tr │ │ │ ├── screwdriver.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ └── screwdriver.png │ ├── mtg_sfinv │ │ ├── README.txt │ │ ├── api.lua │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── sfinv.de.tr │ │ │ ├── sfinv.eo.tr │ │ │ ├── sfinv.es.tr │ │ │ ├── sfinv.fr.tr │ │ │ ├── sfinv.id.tr │ │ │ ├── sfinv.it.tr │ │ │ ├── sfinv.ja.tr │ │ │ ├── sfinv.jbo.tr │ │ │ ├── sfinv.lv.tr │ │ │ ├── sfinv.ms.tr │ │ │ ├── sfinv.pl.tr │ │ │ ├── sfinv.pt_BR.tr │ │ │ ├── sfinv.ru.tr │ │ │ ├── sfinv.sk.tr │ │ │ ├── sfinv.sv.tr │ │ │ ├── sfinv.uk.tr │ │ │ ├── sfinv.zh_CN.tr │ │ │ ├── sfinv.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ └── sfinv_crafting_arrow.png │ ├── mtg_stairs │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── stairs.de.tr │ │ │ ├── stairs.eo.tr │ │ │ ├── stairs.es.tr │ │ │ ├── stairs.fr.tr │ │ │ ├── stairs.id.tr │ │ │ ├── stairs.it.tr │ │ │ ├── stairs.ja.tr │ │ │ ├── stairs.jbo.tr │ │ │ ├── stairs.lv.tr │ │ │ ├── stairs.ms.tr │ │ │ ├── stairs.pl.tr │ │ │ ├── stairs.pt_BR.tr │ │ │ ├── stairs.ru.tr │ │ │ ├── stairs.sk.tr │ │ │ ├── stairs.sv.tr │ │ │ ├── stairs.uk.tr │ │ │ ├── stairs.zh_CN.tr │ │ │ ├── stairs.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ ├── stairs_glass_outer_stairside.png │ │ │ ├── stairs_glass_split.png │ │ │ ├── stairs_glass_stairside.png │ │ │ ├── stairs_obsidian_glass_outer_stairside.png │ │ │ ├── stairs_obsidian_glass_split.png │ │ │ └── stairs_obsidian_glass_stairside.png │ ├── mtg_tnt │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── template.txt │ │ │ ├── tnt.de.tr │ │ │ ├── tnt.eo.tr │ │ │ ├── tnt.es.tr │ │ │ ├── tnt.fr.tr │ │ │ ├── tnt.id.tr │ │ │ ├── tnt.it.tr │ │ │ ├── tnt.ja.tr │ │ │ ├── tnt.jbo.tr │ │ │ ├── tnt.lv.tr │ │ │ ├── tnt.ms.tr │ │ │ ├── tnt.pl.tr │ │ │ ├── tnt.pt_BR.tr │ │ │ ├── tnt.ru.tr │ │ │ ├── tnt.sk.tr │ │ │ ├── tnt.sv.tr │ │ │ ├── tnt.uk.tr │ │ │ ├── tnt.zh_CN.tr │ │ │ └── tnt.zh_TW.tr │ │ ├── mod.conf │ │ ├── sounds │ │ │ ├── tnt_explode.ogg │ │ │ ├── tnt_gunpowder_burning.ogg │ │ │ └── tnt_ignite.ogg │ │ └── textures │ │ │ ├── tnt_blast.png │ │ │ ├── tnt_boom.png │ │ │ ├── tnt_bottom.png │ │ │ ├── tnt_gunpowder_burning_crossing_animated.png │ │ │ ├── tnt_gunpowder_burning_curved_animated.png │ │ │ ├── tnt_gunpowder_burning_straight_animated.png │ │ │ ├── tnt_gunpowder_burning_t_junction_animated.png │ │ │ ├── tnt_gunpowder_crossing.png │ │ │ ├── tnt_gunpowder_curved.png │ │ │ ├── tnt_gunpowder_inventory.png │ │ │ ├── tnt_gunpowder_straight.png │ │ │ ├── tnt_gunpowder_t_junction.png │ │ │ ├── tnt_side.png │ │ │ ├── tnt_smoke.png │ │ │ ├── tnt_tnt_stick.png │ │ │ ├── tnt_top.png │ │ │ ├── tnt_top_burning.png │ │ │ └── tnt_top_burning_animated.png │ ├── mtg_vessels │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── template.txt │ │ │ ├── vessels.de.tr │ │ │ ├── vessels.eo.tr │ │ │ ├── vessels.es.tr │ │ │ ├── vessels.fr.tr │ │ │ ├── vessels.id.tr │ │ │ ├── vessels.it.tr │ │ │ ├── vessels.ja.tr │ │ │ ├── vessels.jbo.tr │ │ │ ├── vessels.lv.tr │ │ │ ├── vessels.ms.tr │ │ │ ├── vessels.pl.tr │ │ │ ├── vessels.pt_BR.tr │ │ │ ├── vessels.ru.tr │ │ │ ├── vessels.sk.tr │ │ │ ├── vessels.sv.tr │ │ │ ├── vessels.uk.tr │ │ │ ├── vessels.zh_CN.tr │ │ │ └── vessels.zh_TW.tr │ │ ├── mod.conf │ │ └── textures │ │ │ ├── vessels_drinking_glass.png │ │ │ ├── vessels_drinking_glass_inv.png │ │ │ ├── vessels_glass_bottle.png │ │ │ ├── vessels_glass_fragments.png │ │ │ ├── vessels_shelf.png │ │ │ ├── vessels_shelf_slot.png │ │ │ └── vessels_steel_bottle.png │ ├── mtg_walls │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── template.txt │ │ │ ├── walls.de.tr │ │ │ ├── walls.eo.tr │ │ │ ├── walls.es.tr │ │ │ ├── walls.fr.tr │ │ │ ├── walls.id.tr │ │ │ ├── walls.it.tr │ │ │ ├── walls.ja.tr │ │ │ ├── walls.jbo.tr │ │ │ ├── walls.lv.tr │ │ │ ├── walls.ms.tr │ │ │ ├── walls.pl.tr │ │ │ ├── walls.pt_BR.tr │ │ │ ├── walls.ru.tr │ │ │ ├── walls.sk.tr │ │ │ ├── walls.sv.tr │ │ │ ├── walls.uk.tr │ │ │ ├── walls.zh_CN.tr │ │ │ └── walls.zh_TW.tr │ │ └── mod.conf │ ├── mtg_wool │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── template.txt │ │ │ ├── wool.de.tr │ │ │ ├── wool.eo.tr │ │ │ ├── wool.es.tr │ │ │ ├── wool.fr.tr │ │ │ ├── wool.id.tr │ │ │ ├── wool.it.tr │ │ │ ├── wool.ja.tr │ │ │ ├── wool.jbo.tr │ │ │ ├── wool.lv.tr │ │ │ ├── wool.ms.tr │ │ │ ├── wool.pl.tr │ │ │ ├── wool.pt.tr │ │ │ ├── wool.pt_BR.tr │ │ │ ├── wool.ru.tr │ │ │ ├── wool.sk.tr │ │ │ ├── wool.sv.tr │ │ │ ├── wool.uk.tr │ │ │ ├── wool.zh_CN.tr │ │ │ └── wool.zh_TW.tr │ │ ├── mod.conf │ │ └── textures │ │ │ ├── wool_black.png │ │ │ ├── wool_blue.png │ │ │ ├── wool_brown.png │ │ │ ├── wool_cyan.png │ │ │ ├── wool_dark_green.png │ │ │ ├── wool_dark_grey.png │ │ │ ├── wool_green.png │ │ │ ├── wool_grey.png │ │ │ ├── wool_magenta.png │ │ │ ├── wool_orange.png │ │ │ ├── wool_pink.png │ │ │ ├── wool_red.png │ │ │ ├── wool_violet.png │ │ │ ├── wool_white.png │ │ │ └── wool_yellow.png │ ├── mtg_xpanes │ │ ├── README.txt │ │ ├── init.lua │ │ ├── license.txt │ │ ├── locale │ │ │ ├── template.txt │ │ │ ├── xpanes.de.tr │ │ │ ├── xpanes.eo.tr │ │ │ ├── xpanes.es.tr │ │ │ ├── xpanes.fr.tr │ │ │ ├── xpanes.id.tr │ │ │ ├── xpanes.it.tr │ │ │ ├── xpanes.ja.tr │ │ │ ├── xpanes.jbo.tr │ │ │ ├── xpanes.lv.tr │ │ │ ├── xpanes.ms.tr │ │ │ ├── xpanes.pl.tr │ │ │ ├── xpanes.pt_BR.tr │ │ │ ├── xpanes.ru.tr │ │ │ ├── xpanes.sk.tr │ │ │ ├── xpanes.sv.tr │ │ │ ├── xpanes.uk.tr │ │ │ ├── xpanes.zh_CN.tr │ │ │ └── xpanes.zh_TW.tr │ │ ├── mod.conf │ │ ├── sounds │ │ │ ├── xpanes_steel_bar_door_close.ogg │ │ │ └── xpanes_steel_bar_door_open.ogg │ │ └── textures │ │ │ ├── xpanes_bar.png │ │ │ ├── xpanes_bar_top.png │ │ │ ├── xpanes_door_steel_bar.png │ │ │ ├── xpanes_edge.png │ │ │ ├── xpanes_edge_obsidian.png │ │ │ ├── xpanes_item_steel_bar.png │ │ │ ├── xpanes_trapdoor_steel_bar.png │ │ │ └── xpanes_trapdoor_steel_bar_side.png │ └── redef │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── init.lua │ │ ├── mod.conf │ │ ├── redefinitions │ │ ├── 3d_ladders.lua │ │ ├── aligned_textures.lua │ │ ├── grass_box_height.lua │ │ ├── maximum_stack_size.lua │ │ ├── proper_rotation.lua │ │ └── show_steps.lua │ │ ├── screenshot.png │ │ ├── screenshots │ │ ├── redef_3d_ladders.png │ │ ├── redef_aligned_textures.png │ │ ├── redef_grass_box_height.png │ │ ├── redef_proper_rotation.png │ │ ├── redef_show_steps.png │ │ └── redef_stack_max.png │ │ ├── settingtypes.txt │ │ └── sources │ │ ├── comparison_screenshot_template.xcf │ │ ├── ladder.nbe │ │ └── screenshot.xcf ├── other │ ├── afkkick │ │ ├── COPYING │ │ ├── README.md │ │ ├── init.lua │ │ ├── locale │ │ │ ├── afkkick.es.tr │ │ │ ├── afkkick.fr.tr │ │ │ ├── afkkick.zh_TW.tr │ │ │ └── template.txt │ │ └── mod.conf │ ├── chat_bg │ │ ├── init.lua │ │ ├── locale │ │ │ ├── chat_bg.fr.tr │ │ │ └── template.txt │ │ └── mod.conf │ ├── crafting │ │ ├── README.md │ │ ├── api.lua │ │ ├── gui.lua │ │ ├── init.lua │ │ ├── mod.conf │ │ ├── sounds │ │ │ └── crafting_save_sound.ogg │ │ └── textures │ │ │ ├── crafting_next_icon.png │ │ │ ├── crafting_prev_icon.png │ │ │ ├── crafting_save_icon.png │ │ │ ├── crafting_search_icon.png │ │ │ ├── crafting_slot_craftable.png │ │ │ ├── crafting_slot_empty.png │ │ │ ├── crafting_slot_uncraftable.png │ │ │ └── crafting_trash_icon.png │ ├── darkness_nerf │ │ ├── init.lua │ │ └── mod.conf │ ├── email │ │ ├── README.md │ │ ├── hud.lua │ │ ├── hudkit.lua │ │ ├── init.lua │ │ ├── locale │ │ │ ├── email.es.tr │ │ │ ├── email.fr.tr │ │ │ ├── email.pt_BR.tr │ │ │ ├── email.ru.tr │ │ │ ├── email.zh_TW.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── textures │ │ │ └── email_mail.png │ ├── hpbar │ │ ├── README.md │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── hpbar_hp_1.png │ │ │ ├── hpbar_hp_10.png │ │ │ ├── hpbar_hp_11.png │ │ │ ├── hpbar_hp_12.png │ │ │ ├── hpbar_hp_13.png │ │ │ ├── hpbar_hp_14.png │ │ │ ├── hpbar_hp_15.png │ │ │ ├── hpbar_hp_16.png │ │ │ ├── hpbar_hp_17.png │ │ │ ├── hpbar_hp_18.png │ │ │ ├── hpbar_hp_19.png │ │ │ ├── hpbar_hp_2.png │ │ │ ├── hpbar_hp_20.png │ │ │ ├── hpbar_hp_3.png │ │ │ ├── hpbar_hp_4.png │ │ │ ├── hpbar_hp_5.png │ │ │ ├── hpbar_hp_6.png │ │ │ ├── hpbar_hp_7.png │ │ │ ├── hpbar_hp_8.png │ │ │ └── hpbar_hp_9.png │ ├── hpbar_hud │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ └── heart_gone.png │ ├── minetest_hudbars │ │ ├── .mailmap │ │ ├── API.md │ │ ├── README.md │ │ ├── default_settings.lua │ │ ├── init.lua │ │ ├── locale │ │ │ ├── hudbars.de.tr │ │ │ ├── hudbars.es.tr │ │ │ ├── hudbars.it.tr │ │ │ ├── hudbars.ms.tr │ │ │ ├── hudbars.nl.tr │ │ │ ├── hudbars.pt.tr │ │ │ ├── hudbars.ru.tr │ │ │ ├── hudbars.tr.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ ├── screenshot.png │ │ ├── settingtypes.txt │ │ └── textures │ │ │ ├── hudbars_bar_background.png │ │ │ ├── hudbars_bar_breath.png │ │ │ ├── hudbars_bar_health.png │ │ │ ├── hudbars_bgicon_breath.png │ │ │ ├── hudbars_bgicon_health.png │ │ │ ├── hudbars_icon_breath.png │ │ │ └── hudbars_icon_health.png │ ├── modpack.conf │ ├── playertag │ │ ├── README.md │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── W_-.png │ │ │ ├── W_0.png │ │ │ ├── W_1.png │ │ │ ├── W_2.png │ │ │ ├── W_3.png │ │ │ ├── W_4.png │ │ │ ├── W_5.png │ │ │ ├── W_6.png │ │ │ ├── W_7.png │ │ │ ├── W_8.png │ │ │ ├── W_9.png │ │ │ ├── W_UA.png │ │ │ ├── W_UB.png │ │ │ ├── W_UC.png │ │ │ ├── W_UD.png │ │ │ ├── W_UE.png │ │ │ ├── W_UF.png │ │ │ ├── W_UG.png │ │ │ ├── W_UH.png │ │ │ ├── W_UI.png │ │ │ ├── W_UJ.png │ │ │ ├── W_UK.png │ │ │ ├── W_UL.png │ │ │ ├── W_UM.png │ │ │ ├── W_UN.png │ │ │ ├── W_UO.png │ │ │ ├── W_UP.png │ │ │ ├── W_UQ.png │ │ │ ├── W_UR.png │ │ │ ├── W_US.png │ │ │ ├── W_UT.png │ │ │ ├── W_UU.png │ │ │ ├── W_UV.png │ │ │ ├── W_UW.png │ │ │ ├── W_UX.png │ │ │ ├── W_UY.png │ │ │ ├── W_UZ.png │ │ │ ├── W__.png │ │ │ ├── W_a.png │ │ │ ├── W_b.png │ │ │ ├── W_c.png │ │ │ ├── W_d.png │ │ │ ├── W_e.png │ │ │ ├── W_f.png │ │ │ ├── W_g.png │ │ │ ├── W_h.png │ │ │ ├── W_i.png │ │ │ ├── W_j.png │ │ │ ├── W_k.png │ │ │ ├── W_l.png │ │ │ ├── W_m.png │ │ │ ├── W_n.png │ │ │ ├── W_o.png │ │ │ ├── W_p.png │ │ │ ├── W_q.png │ │ │ ├── W_r.png │ │ │ ├── W_s.png │ │ │ ├── W_t.png │ │ │ ├── W_u.png │ │ │ ├── W_v.png │ │ │ ├── W_w.png │ │ │ ├── W_x.png │ │ │ ├── W_y.png │ │ │ ├── W_z.png │ │ │ └── npcf_tag_bg.png │ ├── poison_water │ │ ├── README.txt │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ └── bucket_poision_water.png │ ├── random_messages │ │ ├── README.txt │ │ ├── init.lua │ │ ├── locale │ │ │ ├── random_messages.de.tr │ │ │ ├── random_messages.es.tr │ │ │ ├── random_messages.fr.tr │ │ │ ├── random_messages.ru.tr │ │ │ └── template.txt │ │ └── mod.conf │ ├── real_suffocation │ │ ├── README.md │ │ ├── init.lua │ │ ├── mod.conf │ │ └── settingtypes.txt │ ├── select_item │ │ ├── API.md │ │ ├── README.md │ │ ├── init.lua │ │ ├── locale │ │ │ ├── select_item.de.tr │ │ │ ├── select_item.es.tr │ │ │ ├── select_item.fr.tr │ │ │ └── template.txt │ │ ├── mod.conf │ │ └── screenshot.png │ ├── sprint │ │ ├── README.md │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── sprint_stamina_bar.png │ │ │ ├── sprint_stamina_icon.png │ │ │ └── sprint_stamina_icon_gone.png │ └── throwable_snow │ │ ├── init.lua │ │ ├── locale │ │ ├── template.txt │ │ ├── throwable_snow.es.tr │ │ ├── throwable_snow.fr.tr │ │ └── throwable_snow.zh_TW.tr │ │ └── mod.conf └── pvp │ ├── dropondie │ ├── LICENSE │ ├── README.md │ ├── init.lua │ └── mod.conf │ └── modpack.conf ├── screenshot.png ├── scripts ├── setup_maps.sh ├── update.sh └── update_mtg.sh ├── settingtypes.txt └── textures ├── gui_formbg.png ├── license.txt └── settings_info.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | - [ ] This PR has been tested locally 4 | -------------------------------------------------------------------------------- /.github/workflows/luacheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/.github/workflows/luacheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/.gitmodules -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/.luacheckrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/README.md -------------------------------------------------------------------------------- /docs/accurate_statbar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/docs/accurate_statbar.patch -------------------------------------------------------------------------------- /docs/ctf-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/docs/ctf-api.md -------------------------------------------------------------------------------- /game.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/game.conf -------------------------------------------------------------------------------- /menu/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/menu/background.png -------------------------------------------------------------------------------- /menu/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/menu/header.png -------------------------------------------------------------------------------- /menu/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/menu/icon.png -------------------------------------------------------------------------------- /minetest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/minetest.conf -------------------------------------------------------------------------------- /mods/apis/ctf_gui/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/ctf_gui/api.md -------------------------------------------------------------------------------- /mods/apis/ctf_gui/dev.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/ctf_gui/dev.lua -------------------------------------------------------------------------------- /mods/apis/ctf_gui/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/ctf_gui/init.lua -------------------------------------------------------------------------------- /mods/apis/ctf_gui/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/ctf_gui/mod.conf -------------------------------------------------------------------------------- /mods/apis/ctf_settings/global_settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/ctf_settings/global_settings.lua -------------------------------------------------------------------------------- /mods/apis/ctf_settings/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/ctf_settings/init.lua -------------------------------------------------------------------------------- /mods/apis/ctf_settings/locale/ctf_settings.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/ctf_settings/locale/ctf_settings.fr.tr -------------------------------------------------------------------------------- /mods/apis/ctf_settings/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/ctf_settings/locale/template.txt -------------------------------------------------------------------------------- /mods/apis/ctf_settings/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/ctf_settings/mod.conf -------------------------------------------------------------------------------- /mods/apis/hud_events/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/hud_events/init.lua -------------------------------------------------------------------------------- /mods/apis/hud_events/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/hud_events/mod.conf -------------------------------------------------------------------------------- /mods/apis/modpack.conf: -------------------------------------------------------------------------------- 1 | name = apis 2 | -------------------------------------------------------------------------------- /mods/apis/physics/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/physics/init.lua -------------------------------------------------------------------------------- /mods/apis/physics/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/apis/physics/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_api/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_api/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_api/mod.conf: -------------------------------------------------------------------------------- 1 | name = ctf_api 2 | -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/README.txt -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/defripper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/defripper.json -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/exported.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/exported.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/license.txt -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/mediasource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/mediasource.json -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/mod.conf: -------------------------------------------------------------------------------- 1 | name = ctf_beds 2 | depends = default -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed.png -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed_fancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed_fancy.png -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed_foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed_foot.png -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed_head.png -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed_side1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed_side1.png -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed_side2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed_side2.png -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed_side_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed_side_top.png -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed_top1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed_top1.png -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed_top2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed_top2.png -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed_top_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed_top_top.png -------------------------------------------------------------------------------- /mods/ctf/ctf_beds/textures/beds_bed_under.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_beds/textures/beds_bed_under.png -------------------------------------------------------------------------------- /mods/ctf/ctf_chat/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_chat/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_chat/locale/ctf_chat.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_chat/locale/ctf_chat.fr.tr -------------------------------------------------------------------------------- /mods/ctf/ctf_chat/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_chat/locale/template.txt -------------------------------------------------------------------------------- /mods/ctf/ctf_chat/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_chat/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_combat_mode/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_combat_mode/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_combat_mode/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_combat_mode/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_grenades/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_grenades/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_grenades/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_grenades/license -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_grenades/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_grenades/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_grenades/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_grenades/readme.md -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_healing/bandage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_healing/bandage.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_healing/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_healing/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_healing/medkit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_healing/medkit.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_healing/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_healing/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_kill_list/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_kill_list/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_kill_list/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_kill_list/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_melee/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_melee/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_melee/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_melee/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_ranged/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_ranged/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/ctf_ranged/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_combat/ctf_ranged/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_combat/modpack.conf: -------------------------------------------------------------------------------- 1 | name = ctf_combat 2 | -------------------------------------------------------------------------------- /mods/ctf/ctf_core/cooldowns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_core/cooldowns.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_core/helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_core/helpers.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_core/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_core/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_core/mod.conf: -------------------------------------------------------------------------------- 1 | name = ctf_core 2 | -------------------------------------------------------------------------------- /mods/ctf/ctf_core/player_meta.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_core/player_meta.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_core/privileges.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_core/privileges.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_cosmetics/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_cosmetics/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_cosmetics/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_cosmetics/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_landmine/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_landmine/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_landmine/locale/ctf_landmine.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_landmine/locale/ctf_landmine.fr.tr -------------------------------------------------------------------------------- /mods/ctf/ctf_landmine/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_landmine/locale/template.txt -------------------------------------------------------------------------------- /mods/ctf/ctf_landmine/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_landmine/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/README.md -------------------------------------------------------------------------------- /mods/ctf/ctf_map/ctf_traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/ctf_traps.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_map/editor_functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/editor_functions.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_map/emerge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/emerge.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_map/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_map/locale/ctf_map.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/locale/ctf_map.fr.tr -------------------------------------------------------------------------------- /mods/ctf/ctf_map/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/locale/template.txt -------------------------------------------------------------------------------- /mods/ctf/ctf_map/map_functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/map_functions.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_map/map_meta.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/map_meta.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_map/mapedit_gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/mapedit_gui.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_map/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_map/nodes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/nodes.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_map/textures/ctf_map_glass_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/textures/ctf_map_glass_red.png -------------------------------------------------------------------------------- /mods/ctf/ctf_map/textures/ctf_map_ind_lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/textures/ctf_map_ind_lava.png -------------------------------------------------------------------------------- /mods/ctf/ctf_map/textures/ctf_map_ind_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/textures/ctf_map_ind_water.png -------------------------------------------------------------------------------- /mods/ctf/ctf_map/textures/ctf_map_killnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/textures/ctf_map_killnode.png -------------------------------------------------------------------------------- /mods/ctf/ctf_map/textures/ctf_map_spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/textures/ctf_map_spike.png -------------------------------------------------------------------------------- /mods/ctf/ctf_map/textures/ctf_map_stone_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_map/textures/ctf_map_stone_red.png -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/bounties.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/bounties.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/bounty_algo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/bounty_algo.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/build_timer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/build_timer.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/crafting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/crafting.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/features.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/features.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/flags/huds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/flags/huds.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/flags/nodes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/flags/nodes.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/flags/taking.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/flags/taking.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/hpregen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/hpregen.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/immunity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/immunity.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/locale/ctf_modebase.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/locale/ctf_modebase.fr.tr -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/locale/template.txt -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/map_catalog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/map_catalog.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/map_catalog_show.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/map_catalog_show.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/markers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/markers.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/match.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/match.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/mode_vote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/mode_vote.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/player.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/ranking_commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/ranking_commands.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/recent_rankings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/recent_rankings.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/register.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/register.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/respawn_delay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/respawn_delay.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/skip_vote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/skip_vote.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/summary.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/summary.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/treasure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/treasure.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modebase/update_wear.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modebase/update_wear.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modes/ctf_mode_classes/classes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modes/ctf_mode_classes/classes.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modes/ctf_mode_classes/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modes/ctf_mode_classes/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modes/ctf_mode_classes/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modes/ctf_mode_classes/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_modes/ctf_mode_classes/paxel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modes/ctf_mode_classes/paxel.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modes/ctf_mode_classic/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modes/ctf_mode_classic/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modes/ctf_mode_classic/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modes/ctf_mode_classic/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_modes/ctf_mode_nade_fight/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modes/ctf_mode_nade_fight/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modes/ctf_mode_nade_fight/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modes/ctf_mode_nade_fight/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_modes/ctf_mode_nade_fight/tool.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_modes/ctf_mode_nade_fight/tool.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_modes/modpack.conf: -------------------------------------------------------------------------------- 1 | name = ctf_modes 2 | -------------------------------------------------------------------------------- /mods/ctf/ctf_player/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_player/LICENSE.txt -------------------------------------------------------------------------------- /mods/ctf/ctf_player/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_player/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_player/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_player/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_player/models/character.b3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_player/models/character.b3d -------------------------------------------------------------------------------- /mods/ctf/ctf_player/models/character.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_player/models/character.blend -------------------------------------------------------------------------------- /mods/ctf/ctf_rankings/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_rankings/default.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_rankings/dummy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_rankings/dummy.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_rankings/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_rankings/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_rankings/leagues.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_rankings/leagues.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_rankings/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_rankings/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_rankings/ranking_reset.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_rankings/ranking_reset.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_rankings/ranking_reset_default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_rankings/ranking_reset_default.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_rankings/redis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_rankings/redis.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_rankings/top.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_rankings/top.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_report/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_report/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_report/locale/ctf_report.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_report/locale/ctf_report.es.tr -------------------------------------------------------------------------------- /mods/ctf/ctf_report/locale/ctf_report.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_report/locale/ctf_report.fr.tr -------------------------------------------------------------------------------- /mods/ctf/ctf_report/locale/ctf_report.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_report/locale/ctf_report.zh_TW.tr -------------------------------------------------------------------------------- /mods/ctf/ctf_report/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_report/locale/template.txt -------------------------------------------------------------------------------- /mods/ctf/ctf_report/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_report/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_report/sounds/ctf_report_bell.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_report/sounds/ctf_report_bell.ogg -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/commands.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/functions.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/init.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/locale/ctf_teams.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/locale/ctf_teams.fr.tr -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/locale/template.txt -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/mod.conf -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/parties.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/parties.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/register.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/register.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/team_chest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/team_chest.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/team_door.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/team_door.lua -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/textures/ctf_teams_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/textures/ctf_teams_lock.png -------------------------------------------------------------------------------- /mods/ctf/ctf_teams/textures/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/ctf/ctf_teams/textures/license.txt -------------------------------------------------------------------------------- /mods/ctf/modpack.conf: -------------------------------------------------------------------------------- 1 | name = ctf 2 | -------------------------------------------------------------------------------- /mods/mtg/ctf_changes/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/ctf_changes/init.lua -------------------------------------------------------------------------------- /mods/mtg/ctf_changes/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/ctf_changes/mod.conf -------------------------------------------------------------------------------- /mods/mtg/modpack.conf: -------------------------------------------------------------------------------- 1 | name = mtg 2 | -------------------------------------------------------------------------------- /mods/mtg/more_ore/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/more_ore/init.lua -------------------------------------------------------------------------------- /mods/mtg/more_ore/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/more_ore/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_binoculars/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_binoculars/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_binoculars/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_binoculars/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_binoculars/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_binoculars/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_binoculars/locale/binoculars.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_binoculars/locale/binoculars.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_binoculars/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_binoculars/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_binoculars/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_binoculars/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/bucket.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/bucket.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/textures/bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/textures/bucket.png -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/textures/bucket_lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/textures/bucket_lava.png -------------------------------------------------------------------------------- /mods/mtg/mtg_bucket/textures/bucket_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_bucket/textures/bucket_water.png -------------------------------------------------------------------------------- /mods/mtg/mtg_butterflies/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_butterflies/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_butterflies/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_butterflies/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_butterflies/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_butterflies/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_butterflies/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_butterflies/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_butterflies/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_butterflies/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/inventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/inventory.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/creative.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/creative.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_creative/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_creative/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_default/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_default/aliases.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/aliases.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/chests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/chests.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/crafting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/crafting.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/craftitems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/craftitems.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/functions.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/furnace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/furnace.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/item_entity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/item_entity.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/legacy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/legacy.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.pt.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/default.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/default.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_default/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_default/mapgen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/mapgen.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_default/models/chest_open.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/models/chest_open.obj -------------------------------------------------------------------------------- /mods/mtg/mtg_default/models/torch_ceiling.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/models/torch_ceiling.obj -------------------------------------------------------------------------------- /mods/mtg/mtg_default/models/torch_floor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/models/torch_floor.obj -------------------------------------------------------------------------------- /mods/mtg/mtg_default/models/torch_wall.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/models/torch_wall.obj -------------------------------------------------------------------------------- /mods/mtg/mtg_default/nodes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/nodes.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/schematics/apple_log.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/schematics/apple_log.mts -------------------------------------------------------------------------------- /mods/mtg/mtg_default/schematics/aspen_log.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/schematics/aspen_log.mts -------------------------------------------------------------------------------- /mods/mtg/mtg_default/schematics/bush.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/schematics/bush.mts -------------------------------------------------------------------------------- /mods/mtg/mtg_default/schematics/pine_bush.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/schematics/pine_bush.mts -------------------------------------------------------------------------------- /mods/mtg/mtg_default/schematics/pine_log.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/schematics/pine_log.mts -------------------------------------------------------------------------------- /mods/mtg/mtg_default/schematics/pine_tree.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/schematics/pine_tree.mts -------------------------------------------------------------------------------- /mods/mtg/mtg_default/sounds/player_damage.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/sounds/player_damage.ogg -------------------------------------------------------------------------------- /mods/mtg/mtg_default/textures/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/textures/bubble.png -------------------------------------------------------------------------------- /mods/mtg/mtg_default/textures/default_ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/textures/default_ice.png -------------------------------------------------------------------------------- /mods/mtg/mtg_default/textures/gui_formbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/textures/gui_formbg.png -------------------------------------------------------------------------------- /mods/mtg/mtg_default/textures/gui_hb_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/textures/gui_hb_bg.png -------------------------------------------------------------------------------- /mods/mtg/mtg_default/textures/gui_hotbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/textures/gui_hotbar.png -------------------------------------------------------------------------------- /mods/mtg/mtg_default/textures/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/textures/heart.png -------------------------------------------------------------------------------- /mods/mtg/mtg_default/textures/wieldhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/textures/wieldhand.png -------------------------------------------------------------------------------- /mods/mtg/mtg_default/tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/tools.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/torch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/torch.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_default/trees.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_default/trees.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/doors.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/doors.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/models/door.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/models/door.blend -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/models/door_a.b3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/models/door_a.b3d -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/models/door_b.b3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/models/door_b.b3d -------------------------------------------------------------------------------- /mods/mtg/mtg_doors/sounds/doors_door_open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_doors/sounds/doors_door_open.ogg -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/dye.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/dye.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_black.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_blue.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_brown.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_cyan.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_dark_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_dark_green.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_dark_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_dark_grey.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_green.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_grey.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_magenta.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_orange.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_pink.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_red.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_violet.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_white.png -------------------------------------------------------------------------------- /mods/mtg/mtg_dye/textures/dye_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_dye/textures/dye_yellow.png -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.pt.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/fire.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/fire.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/sounds/fire_fire.1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/sounds/fire_fire.1.ogg -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/sounds/fire_fire.2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/sounds/fire_fire.2.ogg -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/sounds/fire_fire.3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/sounds/fire_fire.3.ogg -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/sounds/fire_large.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/sounds/fire_large.ogg -------------------------------------------------------------------------------- /mods/mtg/mtg_fire/sounds/fire_small.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fire/sounds/fire_small.ogg -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/fireflies.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/fireflies.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_fireflies/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_fireflies/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/flowers.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/flowers.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/mapgen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/mapgen.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_flowers/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_flowers/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_map/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_map/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_map/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/locale/map.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.zh_CN.tr: -------------------------------------------------------------------------------- 1 | # textdomain: map 2 | Mapping Kit=地图绘制工具包 3 | Use with 'Minimap' key=与“迷你地图”键一起使用 4 | -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/map.zh_TW.tr: -------------------------------------------------------------------------------- 1 | # textdomain: map 2 | Mapping Kit=地圖繪製工具包 3 | Use with 'Minimap' key=與“迷你地圖”鍵一起使用 4 | -------------------------------------------------------------------------------- /mods/mtg/mtg_map/locale/template.txt: -------------------------------------------------------------------------------- 1 | # textdomain: map 2 | Mapping Kit= 3 | Use with 'Minimap' key= 4 | -------------------------------------------------------------------------------- /mods/mtg/mtg_map/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_map/textures/map_mapping_kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_map/textures/map_mapping_kit.png -------------------------------------------------------------------------------- /mods/mtg/mtg_player_api/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_player_api/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_player_api/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_player_api/api.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_player_api/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_player_api/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_player_api/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_player_api/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_player_api/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_player_api/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_player_api/models/character.b3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_player_api/models/character.b3d -------------------------------------------------------------------------------- /mods/mtg/mtg_player_api/models/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_player_api/models/character.png -------------------------------------------------------------------------------- /mods/mtg/mtg_player_api/textures/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_player_api/textures/player.png -------------------------------------------------------------------------------- /mods/mtg/mtg_screwdriver/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_screwdriver/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_screwdriver/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_screwdriver/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_screwdriver/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_screwdriver/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_screwdriver/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_screwdriver/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_screwdriver/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_screwdriver/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_sfinv/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_sfinv/api.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_sfinv/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_sfinv/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.de.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Fertigung 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.eo.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Konstruado 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.es.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Creación 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.fr.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Artisanat 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.id.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Kerajinan 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.it.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Assemblaggio 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.ja.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=クラフト 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.jbo.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=nu zbasu 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.lv.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Taisīšana 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.ms.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Pertukangan 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.pl.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Konstruowanie 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.pt_BR.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Construir 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.ru.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Крафтинг 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.sk.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Vytváranie 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.sv.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Tillverkning 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.uk.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=Майстрування 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.zh_CN.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=合成 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/sfinv.zh_TW.tr: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting=合成 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/locale/template.txt: -------------------------------------------------------------------------------- 1 | # textdomain: sfinv 2 | Crafting= 3 | -------------------------------------------------------------------------------- /mods/mtg/mtg_sfinv/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_sfinv/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/stairs.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/stairs.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_stairs/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_stairs/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/locale/tnt.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/locale/tnt.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/sounds/tnt_explode.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/sounds/tnt_explode.ogg -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/sounds/tnt_ignite.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/sounds/tnt_ignite.ogg -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/textures/tnt_blast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/textures/tnt_blast.png -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/textures/tnt_boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/textures/tnt_boom.png -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/textures/tnt_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/textures/tnt_bottom.png -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/textures/tnt_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/textures/tnt_side.png -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/textures/tnt_smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/textures/tnt_smoke.png -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/textures/tnt_tnt_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/textures/tnt_tnt_stick.png -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/textures/tnt_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/textures/tnt_top.png -------------------------------------------------------------------------------- /mods/mtg/mtg_tnt/textures/tnt_top_burning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_tnt/textures/tnt_top_burning.png -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/locale/vessels.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/locale/vessels.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_vessels/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_vessels/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/locale/walls.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/locale/walls.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_walls/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_walls/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.pt.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/locale/wool.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/locale/wool.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_black.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_blue.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_brown.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_cyan.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_dark_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_dark_grey.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_green.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_grey.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_magenta.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_orange.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_pink.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_red.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_violet.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_white.png -------------------------------------------------------------------------------- /mods/mtg/mtg_wool/textures/wool_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_wool/textures/wool_yellow.png -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/README.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/init.lua -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/license.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/template.txt -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.de.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.eo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.es.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.fr.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.id.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.it.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.ja.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.ja.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.jbo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.jbo.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.lv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.lv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.ms.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.pl.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.pt_BR.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.ru.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.sk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.sk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.sv.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.uk.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.zh_CN.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/locale/xpanes.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/locale/xpanes.zh_TW.tr -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/mod.conf -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/textures/xpanes_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/textures/xpanes_bar.png -------------------------------------------------------------------------------- /mods/mtg/mtg_xpanes/textures/xpanes_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/mtg_xpanes/textures/xpanes_edge.png -------------------------------------------------------------------------------- /mods/mtg/redef/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/redef/LICENSE.txt -------------------------------------------------------------------------------- /mods/mtg/redef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/redef/README.md -------------------------------------------------------------------------------- /mods/mtg/redef/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/redef/init.lua -------------------------------------------------------------------------------- /mods/mtg/redef/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/redef/mod.conf -------------------------------------------------------------------------------- /mods/mtg/redef/redefinitions/3d_ladders.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/redef/redefinitions/3d_ladders.lua -------------------------------------------------------------------------------- /mods/mtg/redef/redefinitions/show_steps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/redef/redefinitions/show_steps.lua -------------------------------------------------------------------------------- /mods/mtg/redef/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/redef/screenshot.png -------------------------------------------------------------------------------- /mods/mtg/redef/settingtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/redef/settingtypes.txt -------------------------------------------------------------------------------- /mods/mtg/redef/sources/ladder.nbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/redef/sources/ladder.nbe -------------------------------------------------------------------------------- /mods/mtg/redef/sources/screenshot.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/mtg/redef/sources/screenshot.xcf -------------------------------------------------------------------------------- /mods/other/afkkick/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/afkkick/COPYING -------------------------------------------------------------------------------- /mods/other/afkkick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/afkkick/README.md -------------------------------------------------------------------------------- /mods/other/afkkick/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/afkkick/init.lua -------------------------------------------------------------------------------- /mods/other/afkkick/locale/afkkick.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/afkkick/locale/afkkick.es.tr -------------------------------------------------------------------------------- /mods/other/afkkick/locale/afkkick.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/afkkick/locale/afkkick.fr.tr -------------------------------------------------------------------------------- /mods/other/afkkick/locale/afkkick.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/afkkick/locale/afkkick.zh_TW.tr -------------------------------------------------------------------------------- /mods/other/afkkick/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/afkkick/locale/template.txt -------------------------------------------------------------------------------- /mods/other/afkkick/mod.conf: -------------------------------------------------------------------------------- 1 | name = afkkick 2 | -------------------------------------------------------------------------------- /mods/other/chat_bg/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/chat_bg/init.lua -------------------------------------------------------------------------------- /mods/other/chat_bg/locale/chat_bg.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/chat_bg/locale/chat_bg.fr.tr -------------------------------------------------------------------------------- /mods/other/chat_bg/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/chat_bg/locale/template.txt -------------------------------------------------------------------------------- /mods/other/chat_bg/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/chat_bg/mod.conf -------------------------------------------------------------------------------- /mods/other/crafting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/crafting/README.md -------------------------------------------------------------------------------- /mods/other/crafting/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/crafting/api.lua -------------------------------------------------------------------------------- /mods/other/crafting/gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/crafting/gui.lua -------------------------------------------------------------------------------- /mods/other/crafting/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/crafting/init.lua -------------------------------------------------------------------------------- /mods/other/crafting/mod.conf: -------------------------------------------------------------------------------- 1 | name = crafting 2 | optional_depends = sfinv, ctf_core 3 | -------------------------------------------------------------------------------- /mods/other/darkness_nerf/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/darkness_nerf/init.lua -------------------------------------------------------------------------------- /mods/other/darkness_nerf/mod.conf: -------------------------------------------------------------------------------- 1 | name = darkness_nerf 2 | depends = default 3 | -------------------------------------------------------------------------------- /mods/other/email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/README.md -------------------------------------------------------------------------------- /mods/other/email/hud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/hud.lua -------------------------------------------------------------------------------- /mods/other/email/hudkit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/hudkit.lua -------------------------------------------------------------------------------- /mods/other/email/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/init.lua -------------------------------------------------------------------------------- /mods/other/email/locale/email.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/locale/email.es.tr -------------------------------------------------------------------------------- /mods/other/email/locale/email.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/locale/email.fr.tr -------------------------------------------------------------------------------- /mods/other/email/locale/email.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/locale/email.pt_BR.tr -------------------------------------------------------------------------------- /mods/other/email/locale/email.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/locale/email.ru.tr -------------------------------------------------------------------------------- /mods/other/email/locale/email.zh_TW.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/locale/email.zh_TW.tr -------------------------------------------------------------------------------- /mods/other/email/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/locale/template.txt -------------------------------------------------------------------------------- /mods/other/email/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/mod.conf -------------------------------------------------------------------------------- /mods/other/email/textures/email_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/email/textures/email_mail.png -------------------------------------------------------------------------------- /mods/other/hpbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/README.md -------------------------------------------------------------------------------- /mods/other/hpbar/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/init.lua -------------------------------------------------------------------------------- /mods/other/hpbar/mod.conf: -------------------------------------------------------------------------------- 1 | name = hpbar 2 | depends = ctf_core 3 | -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_1.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_10.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_11.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_12.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_13.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_14.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_15.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_16.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_17.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_18.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_19.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_2.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_20.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_3.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_4.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_5.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_6.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_7.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_8.png -------------------------------------------------------------------------------- /mods/other/hpbar/textures/hpbar_hp_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar/textures/hpbar_hp_9.png -------------------------------------------------------------------------------- /mods/other/hpbar_hud/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar_hud/init.lua -------------------------------------------------------------------------------- /mods/other/hpbar_hud/mod.conf: -------------------------------------------------------------------------------- 1 | name = hpbar_hud -------------------------------------------------------------------------------- /mods/other/hpbar_hud/textures/heart_gone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/hpbar_hud/textures/heart_gone.png -------------------------------------------------------------------------------- /mods/other/minetest_hudbars/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/minetest_hudbars/.mailmap -------------------------------------------------------------------------------- /mods/other/minetest_hudbars/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/minetest_hudbars/API.md -------------------------------------------------------------------------------- /mods/other/minetest_hudbars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/minetest_hudbars/README.md -------------------------------------------------------------------------------- /mods/other/minetest_hudbars/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/minetest_hudbars/init.lua -------------------------------------------------------------------------------- /mods/other/minetest_hudbars/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/minetest_hudbars/mod.conf -------------------------------------------------------------------------------- /mods/other/minetest_hudbars/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/minetest_hudbars/screenshot.png -------------------------------------------------------------------------------- /mods/other/minetest_hudbars/settingtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/minetest_hudbars/settingtypes.txt -------------------------------------------------------------------------------- /mods/other/modpack.conf: -------------------------------------------------------------------------------- 1 | name = other 2 | -------------------------------------------------------------------------------- /mods/other/playertag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/README.md -------------------------------------------------------------------------------- /mods/other/playertag/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/init.lua -------------------------------------------------------------------------------- /mods/other/playertag/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/mod.conf -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_-.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_0.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_1.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_2.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_3.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_4.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_5.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_6.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_7.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_8.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_9.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UA.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UB.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UC.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UD.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UE.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UF.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UG.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UH.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UI.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UJ.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UK.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UL.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UM.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UN.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UO.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UP.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UQ.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UR.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_US.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UT.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UU.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UV.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UW.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UX.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UY.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_UZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_UZ.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W__.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_a.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_b.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_c.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_d.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_e.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_f.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_g.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_h.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_i.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_j.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_k.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_l.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_m.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_n.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_o.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_p.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_q.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_r.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_s.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_t.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_u.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_v.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_w.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_x.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_y.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/W_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/W_z.png -------------------------------------------------------------------------------- /mods/other/playertag/textures/npcf_tag_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/playertag/textures/npcf_tag_bg.png -------------------------------------------------------------------------------- /mods/other/poison_water/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/poison_water/README.txt -------------------------------------------------------------------------------- /mods/other/poison_water/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/poison_water/init.lua -------------------------------------------------------------------------------- /mods/other/poison_water/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/poison_water/mod.conf -------------------------------------------------------------------------------- /mods/other/random_messages/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/random_messages/README.txt -------------------------------------------------------------------------------- /mods/other/random_messages/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/random_messages/init.lua -------------------------------------------------------------------------------- /mods/other/random_messages/mod.conf: -------------------------------------------------------------------------------- 1 | name = random_messages 2 | depends = default 3 | -------------------------------------------------------------------------------- /mods/other/real_suffocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/real_suffocation/README.md -------------------------------------------------------------------------------- /mods/other/real_suffocation/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/real_suffocation/init.lua -------------------------------------------------------------------------------- /mods/other/real_suffocation/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/real_suffocation/mod.conf -------------------------------------------------------------------------------- /mods/other/real_suffocation/settingtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/real_suffocation/settingtypes.txt -------------------------------------------------------------------------------- /mods/other/select_item/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/select_item/API.md -------------------------------------------------------------------------------- /mods/other/select_item/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/select_item/README.md -------------------------------------------------------------------------------- /mods/other/select_item/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/select_item/init.lua -------------------------------------------------------------------------------- /mods/other/select_item/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/select_item/locale/template.txt -------------------------------------------------------------------------------- /mods/other/select_item/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/select_item/mod.conf -------------------------------------------------------------------------------- /mods/other/select_item/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/select_item/screenshot.png -------------------------------------------------------------------------------- /mods/other/sprint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/sprint/README.md -------------------------------------------------------------------------------- /mods/other/sprint/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/sprint/init.lua -------------------------------------------------------------------------------- /mods/other/sprint/mod.conf: -------------------------------------------------------------------------------- 1 | name = sprint 2 | depends = physics, ctf_api 3 | -------------------------------------------------------------------------------- /mods/other/throwable_snow/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/throwable_snow/init.lua -------------------------------------------------------------------------------- /mods/other/throwable_snow/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/other/throwable_snow/locale/template.txt -------------------------------------------------------------------------------- /mods/other/throwable_snow/mod.conf: -------------------------------------------------------------------------------- 1 | name = throwable_snow 2 | depends = default, grenades, hud_events 3 | -------------------------------------------------------------------------------- /mods/pvp/dropondie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/pvp/dropondie/LICENSE -------------------------------------------------------------------------------- /mods/pvp/dropondie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/pvp/dropondie/README.md -------------------------------------------------------------------------------- /mods/pvp/dropondie/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/pvp/dropondie/init.lua -------------------------------------------------------------------------------- /mods/pvp/dropondie/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/mods/pvp/dropondie/mod.conf -------------------------------------------------------------------------------- /mods/pvp/modpack.conf: -------------------------------------------------------------------------------- 1 | name = pvp 2 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/setup_maps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/scripts/setup_maps.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /scripts/update_mtg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/scripts/update_mtg.sh -------------------------------------------------------------------------------- /settingtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/settingtypes.txt -------------------------------------------------------------------------------- /textures/gui_formbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/textures/gui_formbg.png -------------------------------------------------------------------------------- /textures/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/textures/license.txt -------------------------------------------------------------------------------- /textures/settings_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MT-CTF/capturetheflag/HEAD/textures/settings_info.png --------------------------------------------------------------------------------