Repository: CriticalFlaw/flawhud Branch: master Commit: 29f0e6e30de2 Files: 880 Total size: 16.1 MB Directory structure: gitextract_kk725_or/ ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── FUNDING.yml │ └── README.md ├── .gitignore ├── cfg/ │ ├── hud_customization.cfg │ ├── hud_customization_colors.cfg │ ├── hud_customization_crosshairs.cfg │ ├── hud_customization_fonts.cfg │ ├── hud_customization_general.cfg │ ├── hud_customization_reset.cfg │ ├── hud_first_run.cfg │ ├── tf2_crosshair_default.cfg │ └── valve.rc ├── info.vdf ├── materials/ │ ├── console/ │ │ ├── background_2fort.vmt │ │ ├── background_2fort.vtf │ │ ├── background_2fort_widescreen.vmt │ │ ├── background_2fort_widescreen.vtf │ │ ├── background_borneo.vmt │ │ ├── background_borneo.vtf │ │ ├── background_borneo_widescreen.vmt │ │ ├── background_borneo_widescreen.vtf │ │ ├── background_gravelpit.vmt │ │ ├── background_gravelpit.vtf │ │ ├── background_gravelpit_widescreen.vmt │ │ ├── background_gravelpit_widescreen.vtf │ │ ├── background_mvm.vmt │ │ ├── background_mvm.vtf │ │ ├── background_mvm_widescreen.vmt │ │ ├── background_mvm_widescreen.vtf │ │ ├── background_process.vmt │ │ ├── background_process.vtf │ │ ├── background_process_widescreen.vmt │ │ ├── background_process_widescreen.vtf │ │ ├── background_upward.vmt │ │ ├── background_upward.vtf │ │ ├── background_upward_widescreen.vmt │ │ ├── background_upward_widescreen.vtf │ │ ├── background_xmas2020.vmt │ │ ├── background_xmas2020.vtf │ │ ├── background_xmas2020_widescreen.vmt │ │ ├── background_xmas2020_widescreen.vtf │ │ ├── background_xmas2023.vmt │ │ ├── background_xmas2023.vtf │ │ ├── background_xmas2023_widescreen.vmt │ │ ├── background_xmas2023_widescreen.vtf │ │ ├── characters/ │ │ │ └── soldier.vtf │ │ └── startup_loading.vtf │ ├── hud/ │ │ ├── cart_blue.vmt │ │ ├── cart_point_blue.vmt │ │ ├── cart_point_blue_opaque.vmt │ │ ├── cart_point_neutral.vmt │ │ ├── cart_point_neutral_opaque.vmt │ │ ├── cart_point_red.vmt │ │ ├── cart_point_red_opaque.vmt │ │ ├── cart_red.vmt │ │ ├── cart_track_blue.vmt │ │ ├── cart_track_blue_opaque.vmt │ │ ├── cart_track_neutral_opaque.vmt │ │ ├── cart_track_red.vmt │ │ └── cart_track_red_opaque.vmt │ ├── sprites/ │ │ └── obj_icons/ │ │ ├── icon_obj_1_blu.vmt │ │ ├── icon_obj_1_blu_locked.vmt │ │ ├── icon_obj_1_neutral.vmt │ │ ├── icon_obj_1_neutral_locked.vmt │ │ ├── icon_obj_1_red.vmt │ │ ├── icon_obj_1_red_locked.vmt │ │ ├── icon_obj_2_blu.vmt │ │ ├── icon_obj_2_blu_locked.vmt │ │ ├── icon_obj_2_neutral.vmt │ │ ├── icon_obj_2_neutral_locked.vmt │ │ ├── icon_obj_2_red.vmt │ │ ├── icon_obj_2_red_locked.vmt │ │ ├── icon_obj_3_blu.vmt │ │ ├── icon_obj_3_blu_locked.vmt │ │ ├── icon_obj_3_neutral.vmt │ │ ├── icon_obj_3_neutral_locked.vmt │ │ ├── icon_obj_3_red.vmt │ │ ├── icon_obj_3_red_locked.vmt │ │ ├── icon_obj_4_blu.vmt │ │ ├── icon_obj_4_blu_locked.vmt │ │ ├── icon_obj_4_neutral.vmt │ │ ├── icon_obj_4_neutral_locked.vmt │ │ ├── icon_obj_4_red.vmt │ │ ├── icon_obj_4_red_locked.vmt │ │ ├── icon_obj_5_blu.vmt │ │ ├── icon_obj_5_blu_locked.vmt │ │ ├── icon_obj_5_neutral.vmt │ │ ├── icon_obj_5_neutral_locked.vmt │ │ ├── icon_obj_5_red.vmt │ │ ├── icon_obj_5_red_locked.vmt │ │ ├── icon_obj_a.vmt │ │ ├── icon_obj_b.vmt │ │ ├── icon_obj_blu.vmt │ │ ├── icon_obj_blu_locked.vmt │ │ ├── icon_obj_blu_mannhattan_locked.vmt │ │ ├── icon_obj_c.vmt │ │ ├── icon_obj_d.vmt │ │ ├── icon_obj_e.vmt │ │ ├── icon_obj_neutral.vmt │ │ ├── icon_obj_neutral_locked.vmt │ │ ├── icon_obj_red.vmt │ │ └── icon_obj_red_locked.vmt │ └── vgui/ │ ├── maps/ │ │ └── menu_thumb_Missing.vmt │ └── replay/ │ └── thumbnails/ │ ├── cart_icons/ │ │ ├── cart_blue.vtf │ │ ├── cart_neutral.vtf │ │ └── cart_red.vtf │ ├── cp_icons/ │ │ ├── icon_obj_1_blu.vtf │ │ ├── icon_obj_1_blu_locked.vtf │ │ ├── icon_obj_1_neutral.vtf │ │ ├── icon_obj_1_neutral_locked.vtf │ │ ├── icon_obj_1_red.vtf │ │ ├── icon_obj_1_red_locked.vtf │ │ ├── icon_obj_2_blu.vtf │ │ ├── icon_obj_2_blu_locked.vtf │ │ ├── icon_obj_2_neutral.vtf │ │ ├── icon_obj_2_neutral_locked.vtf │ │ ├── icon_obj_2_red.vtf │ │ ├── icon_obj_2_red_locked.vtf │ │ ├── icon_obj_3_blu.vtf │ │ ├── icon_obj_3_blu_locked.vtf │ │ ├── icon_obj_3_neutral.vtf │ │ ├── icon_obj_3_neutral_locked.vtf │ │ ├── icon_obj_3_red.vtf │ │ ├── icon_obj_3_red_locked.vtf │ │ ├── icon_obj_4_blu.vtf │ │ ├── icon_obj_4_blu_locked.vtf │ │ ├── icon_obj_4_neutral.vtf │ │ ├── icon_obj_4_neutral_locked.vtf │ │ ├── icon_obj_4_red.vtf │ │ ├── icon_obj_4_red_locked.vtf │ │ ├── icon_obj_5_blu.vtf │ │ ├── icon_obj_5_blu_locked.vtf │ │ ├── icon_obj_5_neutral.vtf │ │ ├── icon_obj_5_neutral_locked.vtf │ │ ├── icon_obj_5_red.vtf │ │ ├── icon_obj_5_red_locked.vtf │ │ ├── icon_obj_a.vtf │ │ ├── icon_obj_b.vtf │ │ ├── icon_obj_blu.vtf │ │ ├── icon_obj_blu_locked.vtf │ │ ├── icon_obj_blu_mannhattan_locked.vtf │ │ ├── icon_obj_c.vtf │ │ ├── icon_obj_d.vtf │ │ ├── icon_obj_e.vtf │ │ ├── icon_obj_neutral.vtf │ │ ├── icon_obj_neutral_locked.vtf │ │ ├── icon_obj_red.vtf │ │ └── icon_obj_red_locked.vtf │ ├── customizations/ │ │ ├── health_cross.vmt │ │ ├── health_cross.vtf │ │ ├── speedometer.vmt │ │ ├── speedometer.vtf │ │ ├── transparent_viewmodels_off.vmt │ │ ├── transparent_viewmodels_off.vtf │ │ ├── transparent_viewmodels_on.vmt │ │ ├── transparent_viewmodels_on.vtf │ │ ├── uber_counter.vmt │ │ └── uber_counter.vtf │ ├── deadshield.vmt │ ├── deadshield.vtf │ ├── kritz.vmt │ ├── kritz.vtf │ ├── main_menu/ │ │ ├── comfig.vmt │ │ ├── comfig.vtf │ │ ├── discord.vmt │ │ ├── discord.vtf │ │ ├── main_menu_button_casual.vmt │ │ ├── main_menu_button_casual.vtf │ │ ├── main_menu_button_community_server.vmt │ │ ├── main_menu_button_community_server.vtf │ │ ├── main_menu_button_competitive.vmt │ │ ├── main_menu_button_competitive.vtf │ │ ├── main_menu_button_mvm.vmt │ │ ├── main_menu_button_mvm.vtf │ │ ├── main_menu_logo.vmt │ │ ├── main_menu_logo.vtf │ │ ├── nogc.vmt │ │ ├── nogc.vtf │ │ ├── potato.vmt │ │ ├── potato.vtf │ │ ├── tenna.vmt │ │ ├── tenna.vtf │ │ ├── uncletopia.vmt │ │ └── uncletopia.vtf │ ├── mmbg.vmt │ ├── mmbg.vtf │ ├── numbers.vmt │ ├── numbers.vtf │ ├── quickfix.vmt │ ├── quickfix.vtf │ ├── selbyen_pickup.vmt │ ├── selbyen_pickup.vtf │ ├── speedometer.vmt │ ├── transparent.vmt │ ├── transparent.vtf │ ├── uber.vmt │ └── uber.vtf ├── resource/ │ ├── chat_brazilian.txt │ ├── chat_bulgarian.txt │ ├── chat_czech.txt │ ├── chat_danish.txt │ ├── chat_dutch.txt │ ├── chat_english.txt │ ├── chat_finnish.txt │ ├── chat_french.txt │ ├── chat_german.txt │ ├── chat_greek.txt │ ├── chat_hungarian.txt │ ├── chat_italian.txt │ ├── chat_japanese.txt │ ├── chat_korean.txt │ ├── chat_koreana.txt │ ├── chat_latam.txt │ ├── chat_norwegian.txt │ ├── chat_polish.txt │ ├── chat_portuguese.txt │ ├── chat_romanian.txt │ ├── chat_russian.txt │ ├── chat_schinese.txt │ ├── chat_spanish.txt │ ├── chat_swedish.txt │ ├── chat_tchinese.txt │ ├── chat_thai.txt │ ├── chat_turkish.txt │ ├── chat_vietnamese.txt │ ├── chatscheme.res │ ├── clientscheme.res │ ├── closecaption_english.txt │ ├── fonts/ │ │ ├── code-pro-bold.otf │ │ └── code-pro-lc.otf │ ├── gamemenu.res │ ├── links.res │ ├── preload.res │ ├── scheme/ │ │ ├── clientscheme_borders.res │ │ ├── clientscheme_colors.res │ │ ├── clientscheme_fonts.res │ │ ├── clientscheme_fonts_paths.res │ │ ├── clientscheme_fonts_pro.res │ │ ├── clientscheme_icons.res │ │ ├── clientscheme_settings.res │ │ └── clientscheme_xhairs.res │ ├── sourcescheme.res │ ├── support.res │ └── ui/ │ ├── basechat.res │ ├── build_menu/ │ │ ├── base_active.res │ │ ├── base_active_teleport_target.res │ │ ├── base_already_built.res │ │ ├── base_cant_afford.res │ │ ├── base_unavailable.res │ │ ├── base_unavailable_teleport_target.res │ │ ├── hudmenuengybuild.res │ │ ├── hudmenueurekaeffect.res │ │ └── pipboy/ │ │ ├── base_active.res │ │ ├── base_active_teleport_target.res │ │ ├── base_already_built.res │ │ ├── base_cant_afford.res │ │ ├── base_unavailable.res │ │ ├── base_unavailable_teleport_target.res │ │ ├── hudmenuengybuild.res │ │ └── hudmenueurekaeffect.res │ ├── build_menu_360/ │ │ ├── base_active.res │ │ ├── base_active_teleport_target.res │ │ ├── base_already_built.res │ │ ├── base_cant_afford.res │ │ ├── base_unavailable.res │ │ ├── base_unavailable_teleport_target.res │ │ ├── hudmenuengybuild.res │ │ ├── hudmenueurekaeffect.res │ │ └── pipboy/ │ │ ├── base_active.res │ │ ├── base_active_teleport_target.res │ │ ├── base_already_built.res │ │ ├── base_cant_afford.res │ │ ├── base_unavailable.res │ │ ├── base_unavailable_teleport_target.res │ │ ├── hudmenuengybuild.res │ │ └── hudmenueurekaeffect.res │ ├── build_menu_sc/ │ │ ├── base_active.res │ │ ├── base_active_teleport_target.res │ │ ├── base_already_built.res │ │ ├── base_cant_afford.res │ │ ├── base_unavailable.res │ │ ├── base_unavailable_teleport_target.res │ │ ├── hudmenuengybuild.res │ │ ├── hudmenueurekaeffect.res │ │ └── pipboy/ │ │ ├── base_active.res │ │ ├── base_active_teleport_target.res │ │ ├── base_already_built.res │ │ ├── base_cant_afford.res │ │ ├── base_unavailable.res │ │ ├── base_unavailable_teleport_target.res │ │ ├── hudmenuengybuild.res │ │ └── hudmenueurekaeffect.res │ ├── charinfoarmorysubpanel.res │ ├── charinfoloadoutsubpanel.res │ ├── charinfopanel.res │ ├── classloadoutpanel.res │ ├── classselection.res │ ├── classselection_sc.res │ ├── compstats.res │ ├── controlpointcountdown.res │ ├── controlpointicon.res │ ├── controlpointprogressbar.res │ ├── cp_powerhouse_event_hud.res │ ├── craftingpanel.res │ ├── craftingstatusdialog.res │ ├── customizations/ │ │ ├── #customization_menu/ │ │ │ ├── hud_customization.res │ │ │ ├── hud_customization_colors.res │ │ │ ├── hud_customization_crosshairs.res │ │ │ ├── hud_customization_damage.res │ │ │ ├── hud_customization_dev.res │ │ │ ├── hud_customization_fonts.res │ │ │ ├── hud_customization_frame.res │ │ │ ├── hud_customization_health_ammo.res │ │ │ ├── hud_customization_home.res │ │ │ ├── hud_customization_layout.res │ │ │ ├── hud_customization_layout_base.res │ │ │ ├── hud_customization_miscellaneous.res │ │ │ └── hud_customization_quick_settings.res │ │ ├── colors/ │ │ │ ├── ammo_low/ │ │ │ │ ├── ammo_low_black.res │ │ │ │ ├── ammo_low_blue.res │ │ │ │ ├── ammo_low_cyan.res │ │ │ │ ├── ammo_low_forest.res │ │ │ │ ├── ammo_low_green.res │ │ │ │ ├── ammo_low_grey.res │ │ │ │ ├── ammo_low_magenta.res │ │ │ │ ├── ammo_low_maroon.res │ │ │ │ ├── ammo_low_navy.res │ │ │ │ ├── ammo_low_olive.res │ │ │ │ ├── ammo_low_orange.res │ │ │ │ ├── ammo_low_pink.res │ │ │ │ ├── ammo_low_purple.res │ │ │ │ ├── ammo_low_red.res │ │ │ │ ├── ammo_low_salmon.res │ │ │ │ ├── ammo_low_tan.res │ │ │ │ ├── ammo_low_teal.res │ │ │ │ ├── ammo_low_violet.res │ │ │ │ ├── ammo_low_white.res │ │ │ │ └── ammo_low_yellow.res │ │ │ ├── color_customization.res │ │ │ ├── color_healed/ │ │ │ │ ├── color_healed_black.res │ │ │ │ ├── color_healed_blue.res │ │ │ │ ├── color_healed_cyan.res │ │ │ │ ├── color_healed_forest.res │ │ │ │ ├── color_healed_green.res │ │ │ │ ├── color_healed_grey.res │ │ │ │ ├── color_healed_magenta.res │ │ │ │ ├── color_healed_maroon.res │ │ │ │ ├── color_healed_navy.res │ │ │ │ ├── color_healed_olive.res │ │ │ │ ├── color_healed_orange.res │ │ │ │ ├── color_healed_pink.res │ │ │ │ ├── color_healed_purple.res │ │ │ │ ├── color_healed_red.res │ │ │ │ ├── color_healed_salmon.res │ │ │ │ ├── color_healed_tan.res │ │ │ │ ├── color_healed_teal.res │ │ │ │ ├── color_healed_violet.res │ │ │ │ ├── color_healed_white.res │ │ │ │ └── color_healed_yellow.res │ │ │ ├── color_neutral/ │ │ │ │ ├── color_neutral_black.res │ │ │ │ ├── color_neutral_blue.res │ │ │ │ ├── color_neutral_cyan.res │ │ │ │ ├── color_neutral_forest.res │ │ │ │ ├── color_neutral_green.res │ │ │ │ ├── color_neutral_grey.res │ │ │ │ ├── color_neutral_magenta.res │ │ │ │ ├── color_neutral_maroon.res │ │ │ │ ├── color_neutral_navy.res │ │ │ │ ├── color_neutral_olive.res │ │ │ │ ├── color_neutral_orange.res │ │ │ │ ├── color_neutral_pink.res │ │ │ │ ├── color_neutral_purple.res │ │ │ │ ├── color_neutral_red.res │ │ │ │ ├── color_neutral_salmon.res │ │ │ │ ├── color_neutral_tan.res │ │ │ │ ├── color_neutral_teal.res │ │ │ │ ├── color_neutral_violet.res │ │ │ │ ├── color_neutral_white.res │ │ │ │ └── color_neutral_yellow.res │ │ │ ├── crosshair/ │ │ │ │ ├── crosshair_black.res │ │ │ │ ├── crosshair_blue.res │ │ │ │ ├── crosshair_cyan.res │ │ │ │ ├── crosshair_forest.res │ │ │ │ ├── crosshair_green.res │ │ │ │ ├── crosshair_grey.res │ │ │ │ ├── crosshair_magenta.res │ │ │ │ ├── crosshair_maroon.res │ │ │ │ ├── crosshair_navy.res │ │ │ │ ├── crosshair_olive.res │ │ │ │ ├── crosshair_orange.res │ │ │ │ ├── crosshair_pink.res │ │ │ │ ├── crosshair_purple.res │ │ │ │ ├── crosshair_red.res │ │ │ │ ├── crosshair_salmon.res │ │ │ │ ├── crosshair_tan.res │ │ │ │ ├── crosshair_teal.res │ │ │ │ ├── crosshair_violet.res │ │ │ │ ├── crosshair_white.res │ │ │ │ └── crosshair_yellow.res │ │ │ ├── crosshair_flash/ │ │ │ │ ├── crosshair_flash_black.res │ │ │ │ ├── crosshair_flash_blue.res │ │ │ │ ├── crosshair_flash_cyan.res │ │ │ │ ├── crosshair_flash_forest.res │ │ │ │ ├── crosshair_flash_green.res │ │ │ │ ├── crosshair_flash_grey.res │ │ │ │ ├── crosshair_flash_magenta.res │ │ │ │ ├── crosshair_flash_maroon.res │ │ │ │ ├── crosshair_flash_navy.res │ │ │ │ ├── crosshair_flash_olive.res │ │ │ │ ├── crosshair_flash_orange.res │ │ │ │ ├── crosshair_flash_pink.res │ │ │ │ ├── crosshair_flash_purple.res │ │ │ │ ├── crosshair_flash_red.res │ │ │ │ ├── crosshair_flash_salmon.res │ │ │ │ ├── crosshair_flash_tan.res │ │ │ │ ├── crosshair_flash_teal.res │ │ │ │ ├── crosshair_flash_violet.res │ │ │ │ ├── crosshair_flash_white.res │ │ │ │ └── crosshair_flash_yellow.res │ │ │ ├── damage_last/ │ │ │ │ ├── damage_last_black.res │ │ │ │ ├── damage_last_blue.res │ │ │ │ ├── damage_last_cyan.res │ │ │ │ ├── damage_last_forest.res │ │ │ │ ├── damage_last_green.res │ │ │ │ ├── damage_last_grey.res │ │ │ │ ├── damage_last_magenta.res │ │ │ │ ├── damage_last_maroon.res │ │ │ │ ├── damage_last_navy.res │ │ │ │ ├── damage_last_olive.res │ │ │ │ ├── damage_last_orange.res │ │ │ │ ├── damage_last_pink.res │ │ │ │ ├── damage_last_purple.res │ │ │ │ ├── damage_last_red.res │ │ │ │ ├── damage_last_salmon.res │ │ │ │ ├── damage_last_tan.res │ │ │ │ ├── damage_last_teal.res │ │ │ │ ├── damage_last_violet.res │ │ │ │ ├── damage_last_white.res │ │ │ │ └── damage_last_yellow.res │ │ │ ├── health_buff/ │ │ │ │ ├── health_buff_black.res │ │ │ │ ├── health_buff_blue.res │ │ │ │ ├── health_buff_cyan.res │ │ │ │ ├── health_buff_forest.res │ │ │ │ ├── health_buff_green.res │ │ │ │ ├── health_buff_grey.res │ │ │ │ ├── health_buff_magenta.res │ │ │ │ ├── health_buff_maroon.res │ │ │ │ ├── health_buff_navy.res │ │ │ │ ├── health_buff_olive.res │ │ │ │ ├── health_buff_orange.res │ │ │ │ ├── health_buff_pink.res │ │ │ │ ├── health_buff_purple.res │ │ │ │ ├── health_buff_red.res │ │ │ │ ├── health_buff_salmon.res │ │ │ │ ├── health_buff_tan.res │ │ │ │ ├── health_buff_teal.res │ │ │ │ ├── health_buff_violet.res │ │ │ │ ├── health_buff_white.res │ │ │ │ └── health_buff_yellow.res │ │ │ ├── health_hurt/ │ │ │ │ ├── health_hurt_black.res │ │ │ │ ├── health_hurt_blue.res │ │ │ │ ├── health_hurt_cyan.res │ │ │ │ ├── health_hurt_forest.res │ │ │ │ ├── health_hurt_green.res │ │ │ │ ├── health_hurt_grey.res │ │ │ │ ├── health_hurt_magenta.res │ │ │ │ ├── health_hurt_maroon.res │ │ │ │ ├── health_hurt_navy.res │ │ │ │ ├── health_hurt_olive.res │ │ │ │ ├── health_hurt_orange.res │ │ │ │ ├── health_hurt_pink.res │ │ │ │ ├── health_hurt_purple.res │ │ │ │ ├── health_hurt_red.res │ │ │ │ ├── health_hurt_salmon.res │ │ │ │ ├── health_hurt_tan.res │ │ │ │ ├── health_hurt_teal.res │ │ │ │ ├── health_hurt_violet.res │ │ │ │ ├── health_hurt_white.res │ │ │ │ └── health_hurt_yellow.res │ │ │ ├── team_blu/ │ │ │ │ ├── team_blu_black.res │ │ │ │ ├── team_blu_blue.res │ │ │ │ ├── team_blu_cyan.res │ │ │ │ ├── team_blu_forest.res │ │ │ │ ├── team_blu_green.res │ │ │ │ ├── team_blu_grey.res │ │ │ │ ├── team_blu_magenta.res │ │ │ │ ├── team_blu_maroon.res │ │ │ │ ├── team_blu_navy.res │ │ │ │ ├── team_blu_olive.res │ │ │ │ ├── team_blu_orange.res │ │ │ │ ├── team_blu_pink.res │ │ │ │ ├── team_blu_purple.res │ │ │ │ ├── team_blu_red.res │ │ │ │ ├── team_blu_salmon.res │ │ │ │ ├── team_blu_tan.res │ │ │ │ ├── team_blu_teal.res │ │ │ │ ├── team_blu_violet.res │ │ │ │ ├── team_blu_white.res │ │ │ │ └── team_blu_yellow.res │ │ │ ├── team_red/ │ │ │ │ ├── team_red_black.res │ │ │ │ ├── team_red_blue.res │ │ │ │ ├── team_red_cyan.res │ │ │ │ ├── team_red_forest.res │ │ │ │ ├── team_red_green.res │ │ │ │ ├── team_red_grey.res │ │ │ │ ├── team_red_magenta.res │ │ │ │ ├── team_red_maroon.res │ │ │ │ ├── team_red_navy.res │ │ │ │ ├── team_red_olive.res │ │ │ │ ├── team_red_orange.res │ │ │ │ ├── team_red_pink.res │ │ │ │ ├── team_red_purple.res │ │ │ │ ├── team_red_red.res │ │ │ │ ├── team_red_salmon.res │ │ │ │ ├── team_red_tan.res │ │ │ │ ├── team_red_teal.res │ │ │ │ ├── team_red_violet.res │ │ │ │ ├── team_red_white.res │ │ │ │ └── team_red_yellow.res │ │ │ ├── ubercharge/ │ │ │ │ ├── uber_black.res │ │ │ │ ├── uber_blue.res │ │ │ │ ├── uber_cyan.res │ │ │ │ ├── uber_forest.res │ │ │ │ ├── uber_green.res │ │ │ │ ├── uber_grey.res │ │ │ │ ├── uber_magenta.res │ │ │ │ ├── uber_maroon.res │ │ │ │ ├── uber_navy.res │ │ │ │ ├── uber_olive.res │ │ │ │ ├── uber_orange.res │ │ │ │ ├── uber_pink.res │ │ │ │ ├── uber_purple.res │ │ │ │ ├── uber_red.res │ │ │ │ ├── uber_salmon.res │ │ │ │ ├── uber_tan.res │ │ │ │ ├── uber_teal.res │ │ │ │ ├── uber_violet.res │ │ │ │ ├── uber_white.res │ │ │ │ └── uber_yellow.res │ │ │ └── ubercharge_full/ │ │ │ ├── uber_full_black.res │ │ │ ├── uber_full_blue.res │ │ │ ├── uber_full_cyan.res │ │ │ ├── uber_full_forest.res │ │ │ ├── uber_full_green.res │ │ │ ├── uber_full_grey.res │ │ │ ├── uber_full_magenta.res │ │ │ ├── uber_full_maroon.res │ │ │ ├── uber_full_navy.res │ │ │ ├── uber_full_olive.res │ │ │ ├── uber_full_orange.res │ │ │ ├── uber_full_pink.res │ │ │ ├── uber_full_purple.res │ │ │ ├── uber_full_red.res │ │ │ ├── uber_full_salmon.res │ │ │ ├── uber_full_tan.res │ │ │ ├── uber_full_teal.res │ │ │ ├── uber_full_violet.res │ │ │ ├── uber_full_white.res │ │ │ └── uber_full_yellow.res │ │ ├── crosshair/ │ │ │ ├── crosshair.res │ │ │ ├── crosshair_base.res │ │ │ ├── crosshair_size.res │ │ │ ├── crosshair_style.res │ │ │ └── crosshair_visibility.res │ │ ├── damage/ │ │ │ ├── damage_font_bold_small.res │ │ │ ├── damage_font_thin_large.res │ │ │ └── damage_font_thin_small.res │ │ ├── disguise/ │ │ │ └── hud_disguise_anim_off.res │ │ ├── health_ammo/ │ │ │ ├── ammo_no_box.res │ │ │ ├── health_cross.res │ │ │ └── health_no_box.res │ │ ├── killfeed/ │ │ │ ├── killfeed.res │ │ │ ├── killfeed_base.res │ │ │ └── killfeed_rows.res │ │ ├── player_model/ │ │ │ └── player_model_off.res │ │ ├── scoreboard/ │ │ │ └── scoreboard_large.res │ │ ├── speedometer/ │ │ │ └── speedometer_on.res │ │ ├── transparent_viewmodels/ │ │ │ └── transparent_viewmodels.res │ │ └── uber/ │ │ └── ubercounter.res │ ├── destroy_menu/ │ │ ├── base_active.res │ │ ├── base_inactive.res │ │ ├── dispenser_active.res │ │ ├── dispenser_inactive.res │ │ ├── hudmenuengydestroy.res │ │ ├── pipboy/ │ │ │ ├── dispenser_active.res │ │ │ ├── dispenser_inactive.res │ │ │ ├── hudmenuengydestroy.res │ │ │ ├── sentry_active.res │ │ │ ├── sentry_inactive.res │ │ │ ├── tele_entrance_active.res │ │ │ ├── tele_entrance_inactive.res │ │ │ ├── tele_exit_active.res │ │ │ └── tele_exit_inactive.res │ │ ├── sentry_active.res │ │ ├── sentry_inactive.res │ │ ├── tele_entrance_active.res │ │ ├── tele_entrance_inactive.res │ │ ├── tele_exit_active.res │ │ └── tele_exit_inactive.res │ ├── disguise_menu/ │ │ ├── demoman_blue.res │ │ ├── demoman_red.res │ │ ├── engineer_blue.res │ │ ├── engineer_red.res │ │ ├── heavy_blue.res │ │ ├── heavy_red.res │ │ ├── hudmenuspydisguise.res │ │ ├── medic_blue.res │ │ ├── medic_red.res │ │ ├── pyro_blue.res │ │ ├── pyro_red.res │ │ ├── scout_blue.res │ │ ├── scout_red.res │ │ ├── sniper_blue.res │ │ ├── sniper_red.res │ │ ├── soldier_blue.res │ │ ├── soldier_red.res │ │ ├── spy_blue.res │ │ └── spy_red.res │ ├── disguise_menu_360/ │ │ ├── demoman_blue.res │ │ ├── demoman_red.res │ │ ├── engineer_blue.res │ │ ├── engineer_red.res │ │ ├── heavy_blue.res │ │ ├── heavy_red.res │ │ ├── hudmenuspydisguise.res │ │ ├── medic_blue.res │ │ ├── medic_red.res │ │ ├── pyro_blue.res │ │ ├── pyro_red.res │ │ ├── scout_blue.res │ │ ├── scout_red.res │ │ ├── sniper_blue.res │ │ ├── sniper_red.res │ │ ├── soldier_blue.res │ │ ├── soldier_red.res │ │ ├── spy_blue.res │ │ └── spy_red.res │ ├── disguise_menu_sc/ │ │ ├── demoman_blue.res │ │ ├── demoman_red.res │ │ ├── engineer_blue.res │ │ ├── engineer_red.res │ │ ├── heavy_blue.res │ │ ├── heavy_red.res │ │ ├── hudmenuspydisguise.res │ │ ├── medic_blue.res │ │ ├── medic_red.res │ │ ├── pyro_blue.res │ │ ├── pyro_red.res │ │ ├── scout_blue.res │ │ ├── scout_red.res │ │ ├── sniper_blue.res │ │ ├── sniper_red.res │ │ ├── soldier_blue.res │ │ ├── soldier_red.res │ │ ├── spy_blue.res │ │ └── spy_red.res │ ├── disguisestatuspanel.res │ ├── dynamicrecipepanel.res │ ├── econ/ │ │ ├── backpackpanel.res │ │ ├── collectioncraftingdialog_base.res │ │ ├── comboboxbackpackoverlaydialog.res │ │ ├── confirmapplydecodedialog.res │ │ ├── confirmapplygiftwrapdialog.res │ │ ├── confirmapplypaintcandialog.res │ │ ├── confirmapplystrangepartapplicationdialog.res │ │ ├── confirmapplystrangerestrictionapplicationdialog.res │ │ ├── confirmapplystrangifierdialog.res │ │ ├── confirmapplyteamcolorpaintcandialog.res │ │ ├── confirmcustomizetexturedialog.res │ │ ├── confirmdialog.res │ │ ├── confirmdialogabandonnopenalty.res │ │ ├── confirmdialogabandonpenalty.res │ │ ├── confirmdialogabandonsafe.res │ │ ├── genericnotificationtoast.res │ │ ├── genericnotificationtoastmainmenu.res │ │ ├── genericwaitingdialog.res │ │ ├── inspectionpanel.res │ │ ├── inspectionpanel_cosmetic.res │ │ ├── itemdiscardpanel.res │ │ ├── itemmodelpanel.res │ │ ├── itemmodelpanelcollectioncosmeticitem.res │ │ ├── itemmodelpanelcollectionitem.res │ │ ├── itempickuppanel.res │ │ ├── messageboxdialog.res │ │ ├── notificationspresentpanel.res │ │ ├── notificationtoastcontainer.res │ │ ├── notificationtoastcontrol.res │ │ ├── paintkitconsumedialog.res │ │ ├── questlogpanel.res │ │ ├── questnotificationpanel_base.res │ │ ├── store/ │ │ │ └── v2/ │ │ │ ├── storehome_base.res │ │ │ ├── storehome_premium.res │ │ │ ├── storepage.res │ │ │ ├── storepanel.res │ │ │ ├── storepreviewitempanel.res │ │ │ ├── storepreviewitempanel_maps.res │ │ │ └── storeviewcartpanel.res │ │ ├── strangecounttransferdialog.res │ │ └── tradingstartdialog.res │ ├── flagstatus.res │ ├── freezepanel_basic.res │ ├── freezepanelkillerhealth.res │ ├── globalchat.res │ ├── healthiconpanel.res │ ├── hud_obj_dispenser.res │ ├── hud_obj_sapper.res │ ├── hud_obj_sentrygun.res │ ├── hud_obj_sentrygun_disp.res │ ├── hud_obj_tele.res │ ├── hud_obj_tele_entrance.res │ ├── hud_obj_tele_exit.res │ ├── hudaccountpanel.res │ ├── hudammoweapons.res │ ├── hudammoweapons_base.res │ ├── hudarenaclasslayout.res │ ├── hudarenanotification.res │ ├── hudarenaplayercount.res │ ├── hudarenateammenu.res │ ├── hudarenateammenu_sc.res │ ├── hudarenawinpanel.res │ ├── hudbosshealth.res │ ├── hudcurrencyaccount.res │ ├── huddamageaccount.res │ ├── huddamageaccount_base.res │ ├── huddemomancharge.res │ ├── huddemomanpipes.res │ ├── hudhealthaccount.res │ ├── hudinspectpanel.res │ ├── huditemattributetracker.res │ ├── huditemeffectmeter.res │ ├── huditemeffectmeter_action.res │ ├── huditemeffectmeter_cleaver.res │ ├── huditemeffectmeter_demoman.res │ ├── huditemeffectmeter_engineer.res │ ├── huditemeffectmeter_heavy.res │ ├── huditemeffectmeter_kartcharge.res │ ├── huditemeffectmeter_killstreak.res │ ├── huditemeffectmeter_organs.res │ ├── huditemeffectmeter_particlecannon.res │ ├── huditemeffectmeter_pomson.res │ ├── huditemeffectmeter_powerupbottle.res │ ├── huditemeffectmeter_pyro.res │ ├── huditemeffectmeter_raygun.res │ ├── huditemeffectmeter_sapper.res │ ├── huditemeffectmeter_scout.res │ ├── huditemeffectmeter_sniper.res │ ├── huditemeffectmeter_sniperfocus.res │ ├── huditemeffectmeter_sodapopper.res │ ├── huditemeffectmeter_spy.res │ ├── huditemeffectmeter_spyknife.res │ ├── hudkillstreaknotice.res │ ├── hudmannvsmachinestatus.res │ ├── hudmatchstatus.res │ ├── hudmatchsummary.res │ ├── hudmediccharge.res │ ├── hudmenutauntselection.res │ ├── hudmenutauntselection_sc.res │ ├── hudminigame_base.res │ ├── hudobjectivearenahybrid.res │ ├── hudobjectiveflagpanel.res │ ├── hudobjectivekothtimepanel.res │ ├── hudobjectiveplayerdestruction.res │ ├── hudobjectiverobotdestruction.res │ ├── hudobjectivetimepanel.res │ ├── hudpasstimeballstatus.res │ ├── hudpasstimepassnotify.res │ ├── hudpasstimeteamscore.res │ ├── hudplayerclass.res │ ├── hudplayerclass_base.res │ ├── hudplayerhealth.res │ ├── hudplayerhealth_base.res │ ├── hudpowerupeffectmeter.res │ ├── hudpvewinpanel.res │ ├── hudrocketpack.res │ ├── hudroundcounter.res │ ├── hudspellselection.res │ ├── hudstopwatch.res │ ├── hudteamswitch.res │ ├── hudtournament.res │ ├── hudtournamentsetup.res │ ├── hudtraining.res │ ├── hudupgradepanel.res │ ├── hudweaponselection.res │ ├── importfiledialog.res │ ├── intromenu.res │ ├── intromenu_sc.res │ ├── itemoptionspanel.res │ ├── itemquickswitch.res │ ├── itemrenameconfirmationdialog.res │ ├── itemrenamedialog.res │ ├── itemrenameinvaliddialog.res │ ├── itemselectionpanel.res │ ├── loadoutpresetpanel.res │ ├── mainmenuoverride.res │ ├── mainmenuplaylistentry.res │ ├── mapinfomenu.res │ ├── mapinfomenu_sc.res │ ├── matchhistoryentrypanel.res │ ├── matchmakingcasualcriteria.res │ ├── matchmakingdashboard.res │ ├── matchmakingdashboardcasualcriteria.res │ ├── matchmakingdashboardcomp.res │ ├── matchmakingdashboardmvmcriteria.res │ ├── matchmakingdashboardmvmmodeselect.res │ ├── matchmakingdashboardplaylist.res │ ├── matchmakingdashboardpopup_newmatch.res │ ├── matchmakingdashboardpopup_nextmapvoting.res │ ├── matchmakingdashboardpopup_nextmapwinner.res │ ├── matchmakingdashboardsidepanel.res │ ├── matchmakingpingpanel.res │ ├── matchmakingplaylist.res │ ├── matchmakingtooltip.res │ ├── mediccallerpanel.res │ ├── mediguninfo.res │ ├── medigunpanel.res │ ├── mvmcreditspendpanel.res │ ├── mvmcreditsubpanel.res │ ├── mvmcriteria.res │ ├── mvminworldcurrency.res │ ├── mvmscoreboard.res │ ├── mvmvictorymannupentry.res │ ├── mvmvictorymannuppanel.res │ ├── mvmwavelosspanel.res │ ├── notifications/ │ │ └── notify_passtime_howto.res │ ├── objectivestatusescort.res │ ├── objectivestatusmultipleescort.res │ ├── publishfiledialog.res │ ├── pvpcomprankpanel.res │ ├── pvprankpanel.res │ ├── replaybrowser/ │ │ └── mainpanel.res │ ├── revivedialog.res │ ├── roundinfo.res │ ├── scoreboard.res │ ├── scoreboard_base.res │ ├── selbyenhud.res │ ├── spectator.res │ ├── spectator_sc.res │ ├── spectatorcoach.res │ ├── spectatorguihealth.res │ ├── spectatortournament.res │ ├── spectatortournamentguihealth.res │ ├── stampdonationadd.res │ ├── statsummary.res │ ├── statsummary_embedded.res │ ├── steamfriendpanel.res │ ├── steamworkshopdialog.res │ ├── steamworkshopitem.res │ ├── tankprogressbar.res │ ├── tankstatuspanel.res │ ├── targetid.res │ ├── teammenu.res │ ├── teammenu_sc.res │ ├── teamscorepanel.res │ ├── testitemdialog.res │ ├── testitemroot.res │ ├── textwindow.res │ ├── textwindow_sc.res │ ├── textwindowcustomserver.res │ ├── textwindowcustomserver_sc.res │ ├── tfadvancedoptionsdialog.res │ ├── training/ │ │ ├── basictraining/ │ │ │ ├── classdetails.res │ │ │ └── classpanel.res │ │ ├── main.res │ │ ├── modeselection/ │ │ │ └── modepanel.res │ │ └── offlinepractice/ │ │ ├── mapselection.res │ │ └── practicemodeselection.res │ ├── upgradeboxdialog.res │ ├── votehud.res │ ├── vsh_hud.res │ ├── vsh_hud_hell.res │ ├── wavecompletesummarypanel.res │ ├── wavestatuspanel.res │ └── winpanel.res └── scripts/ ├── hudanimations_custom.txt ├── hudanimations_health_ammo.txt ├── hudanimations_hitmarker.txt ├── hudanimations_manifest.txt └── hudlayout.res ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ # Auto detect text files and perform LF normalization * text=auto # These filetypes should be recognized as VDF, not ReScript *.vdf linguist-detectable=true *.res linguist-detectable=true linguist-language=vdf *.txt linguist-detectable=true linguist-language=vdf *.vmt linguist-detectable=true linguist-language=vdf # Do not export these files on download .gitattributes export-ignore .gitignore export-ignore .github export-ignore ================================================ FILE: .github/CODEOWNERS ================================================ * @CriticalFlaw ================================================ FILE: .github/FUNDING.yml ================================================ github: criticalflaw ko_fi: criticalflaw ================================================ FILE: .github/README.md ================================================
image Custom heads-up display for Team Fortress 2 with a focus on dark themed colors. [![Download](https://img.shields.io/badge/-Download-1B2838?logo=github&logoColor=white)](https://github.com/CriticalFlaw/flawhud/archive/refs/heads/master.zip) [![Credits](https://img.shields.io/badge/-Credits-512BD4?logo=readme&logoColor=white)](https://github.com/CriticalFlaw/flawhud/wiki/Credits) [![Screenshots](https://img.shields.io/badge/-Screenshots-003087?logo=imgur&logoColor=white)](https://github.com/CriticalFlaw/flawhud/wiki/Screenshots) [![Discord](https://img.shields.io/badge/-Discord-5865F2?logo=discord&logoColor=white)](https://discord.gg/hTdtK9vBhE) [![GameBanana](https://img.shields.io/badge/-GameBanana-F1E133)](https://gamebanana.com/mods/26828) [![comfig huds](https://img.shields.io/badge/-comfig%20huds-009688)](https://comfig.app/huds/page/flawhud) [![tf2huds.dev](https://img.shields.io/badge/-tf2huds.dev-FE5500)](https://tf2huds.dev/hud/flawhud)
================================================ FILE: .gitignore ================================================ sound/sound.cache ================================================ FILE: cfg/hud_customization.cfg ================================================ //================================================================= // Make sure the time stamp is not included when printing lines //================================================================= con_timestamp "0" //================================================================= // Easier unlog alias //================================================================= alias "console_unlog" "con_logfile console.log" //================================================================= // Execute all customization files //================================================================= exec hud_customization_general exec hud_customization_colors exec hud_customization_fonts exec hud_customization_crosshairs exec hud_customization_reset //================================================================= // Execute first HUD launch setup //================================================================= alias "hud_firstrun" "exec hud_first_run" exec flawhud/hud_setup.txt hud_firstrun ================================================ FILE: cfg/hud_customization_colors.cfg ================================================ //================================================================= // TEAM RED //================================================================= alias "hud_color_team_red_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_team_red.txt" alias "hud_color_team_red_log" "con_logfile cfg/flawhud/hud_color_team_red.txt" //----------------------------------------------------------------- alias "hud_color_team_red_white" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_white.res; console_unlog" alias "hud_color_team_red_tan" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_tan.res; console_unlog" alias "hud_color_team_red_black" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_black.res; console_unlog" alias "hud_color_team_red_grey" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_grey.res; console_unlog" alias "hud_color_team_red_maroon" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_maroon.res; console_unlog" alias "hud_color_team_red_red" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_red.res; console_unlog" alias "hud_color_team_red_salmon" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_salmon.res; console_unlog" alias "hud_color_team_red_orange" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_orange.res; console_unlog" alias "hud_color_team_red_yellow" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_yellow.res; console_unlog" alias "hud_color_team_red_olive" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_olive.res; console_unlog" alias "hud_color_team_red_green" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_green.res; console_unlog" alias "hud_color_team_red_forest" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_forest.res; console_unlog" alias "hud_color_team_red_teal" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_teal.res; console_unlog" alias "hud_color_team_red_cyan" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_cyan.res; console_unlog" alias "hud_color_team_red_blue" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_blue.res; console_unlog" alias "hud_color_team_red_navy" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_navy.res; console_unlog" alias "hud_color_team_red_purple" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_purple.res; console_unlog" alias "hud_color_team_red_violet" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_violet.res; console_unlog" alias "hud_color_team_red_pink" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_pink.res; console_unlog" alias "hud_color_team_red_magenta" "hud_color_team_red_clear; hud_color_team_red_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_red/team_red_magenta.res; console_unlog" //================================================================= // TEAM BLUE //================================================================= alias "hud_color_team_blu_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_team_blu.txt" alias "hud_color_team_blu_log" "con_logfile cfg/flawhud/hud_color_team_blu.txt" //----------------------------------------------------------------- alias "hud_color_team_blu_white" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_white.res; console_unlog" alias "hud_color_team_blu_tan" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_tan.res; console_unlog" alias "hud_color_team_blu_black" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_black.res; console_unlog" alias "hud_color_team_blu_grey" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_grey.res; console_unlog" alias "hud_color_team_blu_maroon" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_maroon.res; console_unlog" alias "hud_color_team_blu_red" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_red.res; console_unlog" alias "hud_color_team_blu_salmon" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_salmon.res; console_unlog" alias "hud_color_team_blu_orange" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_orange.res; console_unlog" alias "hud_color_team_blu_yellow" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_yellow.res; console_unlog" alias "hud_color_team_blu_olive" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_olive.res; console_unlog" alias "hud_color_team_blu_green" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_green.res; console_unlog" alias "hud_color_team_blu_forest" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_forest.res; console_unlog" alias "hud_color_team_blu_teal" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_teal.res; console_unlog" alias "hud_color_team_blu_cyan" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_cyan.res; console_unlog" alias "hud_color_team_blu_blue" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_blue.res; console_unlog" alias "hud_color_team_blu_navy" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_navy.res; console_unlog" alias "hud_color_team_blu_purple" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_purple.res; console_unlog" alias "hud_color_team_blu_violet" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_violet.res; console_unlog" alias "hud_color_team_blu_pink" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_pink.res; console_unlog" alias "hud_color_team_blu_magenta" "hud_color_team_blu_clear; hud_color_team_blu_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/team_blu/team_blu_magenta.res; console_unlog" //================================================================= // NEUTRAL //================================================================= alias "hud_color_neutral_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_neutral.txt" alias "hud_color_neutral_log" "con_logfile cfg/flawhud/hud_color_neutral.txt" //----------------------------------------------------------------- alias "hud_color_neutral_white" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_white.res; console_unlog" alias "hud_color_neutral_tan" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_tan.res; console_unlog" alias "hud_color_neutral_black" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_black.res; console_unlog" alias "hud_color_neutral_grey" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_grey.res; console_unlog" alias "hud_color_neutral_maroon" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_maroon.res; console_unlog" alias "hud_color_neutral_red" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_red.res; console_unlog" alias "hud_color_neutral_salmon" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_salmon.res; console_unlog" alias "hud_color_neutral_orange" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_orange.res; console_unlog" alias "hud_color_neutral_yellow" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_yellow.res; console_unlog" alias "hud_color_neutral_olive" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_olive.res; console_unlog" alias "hud_color_neutral_green" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_green.res; console_unlog" alias "hud_color_neutral_forest" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_forest.res; console_unlog" alias "hud_color_neutral_teal" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_teal.res; console_unlog" alias "hud_color_neutral_cyan" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_cyan.res; console_unlog" alias "hud_color_neutral_blue" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_blue.res; console_unlog" alias "hud_color_neutral_navy" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_navy.res; console_unlog" alias "hud_color_neutral_purple" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_purple.res; console_unlog" alias "hud_color_neutral_violet" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_violet.res; console_unlog" alias "hud_color_neutral_pink" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_pink.res; console_unlog" alias "hud_color_neutral_magenta" "hud_color_neutral_clear; hud_color_neutral_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_neutral/color_neutral_magenta.res; console_unlog" //================================================================= // HEALTH BUFF //================================================================= alias "hud_color_buff_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_buff.txt" alias "hud_color_buff_log" "con_logfile cfg/flawhud/hud_color_buff.txt" //----------------------------------------------------------------- alias "hud_color_buff_white" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_white.res; console_unlog" alias "hud_color_buff_tan" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_tan.res; console_unlog" alias "hud_color_buff_black" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_black.res; console_unlog" alias "hud_color_buff_grey" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_grey.res; console_unlog" alias "hud_color_buff_maroon" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_maroon.res; console_unlog" alias "hud_color_buff_red" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_red.res; console_unlog" alias "hud_color_buff_salmon" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_salmon.res; console_unlog" alias "hud_color_buff_orange" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_orange.res; console_unlog" alias "hud_color_buff_yellow" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_yellow.res; console_unlog" alias "hud_color_buff_olive" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_olive.res; console_unlog" alias "hud_color_buff_green" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_green.res; console_unlog" alias "hud_color_buff_forest" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_forest.res; console_unlog" alias "hud_color_buff_teal" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_teal.res; console_unlog" alias "hud_color_buff_cyan" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_cyan.res; console_unlog" alias "hud_color_buff_blue" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_blue.res; console_unlog" alias "hud_color_buff_navy" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_navy.res; console_unlog" alias "hud_color_buff_purple" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_purple.res; console_unlog" alias "hud_color_buff_violet" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_violet.res; console_unlog" alias "hud_color_buff_pink" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_pink.res; console_unlog" alias "hud_color_buff_magenta" "hud_color_buff_clear; hud_color_buff_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_buff/health_buff_magenta.res; console_unlog" //================================================================= // HEALTH HURT //================================================================= alias "hud_color_hurt_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_hurt.txt" alias "hud_color_hurt_log" "con_logfile cfg/flawhud/hud_color_hurt.txt" //----------------------------------------------------------------- alias "hud_color_hurt_white" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_white.res; console_unlog" alias "hud_color_hurt_tan" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_tan.res; console_unlog" alias "hud_color_hurt_black" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_black.res; console_unlog" alias "hud_color_hurt_grey" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_grey.res; console_unlog" alias "hud_color_hurt_maroon" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_maroon.res; console_unlog" alias "hud_color_hurt_red" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_red.res; console_unlog" alias "hud_color_hurt_salmon" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_salmon.res; console_unlog" alias "hud_color_hurt_orange" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_orange.res; console_unlog" alias "hud_color_hurt_yellow" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_yellow.res; console_unlog" alias "hud_color_hurt_olive" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_olive.res; console_unlog" alias "hud_color_hurt_green" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_green.res; console_unlog" alias "hud_color_hurt_forest" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_forest.res; console_unlog" alias "hud_color_hurt_teal" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_teal.res; console_unlog" alias "hud_color_hurt_cyan" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_cyan.res; console_unlog" alias "hud_color_hurt_blue" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_blue.res; console_unlog" alias "hud_color_hurt_navy" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_navy.res; console_unlog" alias "hud_color_hurt_purple" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_purple.res; console_unlog" alias "hud_color_hurt_violet" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_violet.res; console_unlog" alias "hud_color_hurt_pink" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_pink.res; console_unlog" alias "hud_color_hurt_magenta" "hud_color_hurt_clear; hud_color_hurt_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/health_hurt/health_hurt_magenta.res; console_unlog" //================================================================= // AMMO LOW //================================================================= alias "hud_color_ammo_low_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_ammo_low.txt" alias "hud_color_ammo_low_log" "con_logfile cfg/flawhud/hud_color_ammo_low.txt" //----------------------------------------------------------------- alias "hud_color_ammo_low_white" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_white.res; console_unlog" alias "hud_color_ammo_low_tan" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_tan.res; console_unlog" alias "hud_color_ammo_low_black" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_black.res; console_unlog" alias "hud_color_ammo_low_grey" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_grey.res; console_unlog" alias "hud_color_ammo_low_maroon" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_maroon.res; console_unlog" alias "hud_color_ammo_low_red" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_red.res; console_unlog" alias "hud_color_ammo_low_salmon" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_salmon.res; console_unlog" alias "hud_color_ammo_low_orange" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_orange.res; console_unlog" alias "hud_color_ammo_low_yellow" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_yellow.res; console_unlog" alias "hud_color_ammo_low_olive" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_olive.res; console_unlog" alias "hud_color_ammo_low_green" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_green.res; console_unlog" alias "hud_color_ammo_low_forest" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_forest.res; console_unlog" alias "hud_color_ammo_low_teal" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_teal.res; console_unlog" alias "hud_color_ammo_low_cyan" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_cyan.res; console_unlog" alias "hud_color_ammo_low_blue" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_blue.res; console_unlog" alias "hud_color_ammo_low_navy" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_navy.res; console_unlog" alias "hud_color_ammo_low_purple" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_purple.res; console_unlog" alias "hud_color_ammo_low_violet" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_violet.res; console_unlog" alias "hud_color_ammo_low_pink" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_pink.res; console_unlog" alias "hud_color_ammo_low_magenta" "hud_color_ammo_low_clear; hud_color_ammo_low_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ammo_low/ammo_low_magenta.res; console_unlog" //================================================================= // UBERCHARGE //================================================================= alias "hud_color_uber_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_uber.txt" alias "hud_color_uber_log" "con_logfile cfg/flawhud/hud_color_uber.txt" //----------------------------------------------------------------- alias "hud_color_uber_white" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_white.res; console_unlog" alias "hud_color_uber_tan" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_tan.res; console_unlog" alias "hud_color_uber_black" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_black.res; console_unlog" alias "hud_color_uber_grey" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_grey.res; console_unlog" alias "hud_color_uber_maroon" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_maroon.res; console_unlog" alias "hud_color_uber_red" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_red.res; console_unlog" alias "hud_color_uber_salmon" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_salmon.res; console_unlog" alias "hud_color_uber_orange" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_orange.res; console_unlog" alias "hud_color_uber_yellow" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_yellow.res; console_unlog" alias "hud_color_uber_olive" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_olive.res; console_unlog" alias "hud_color_uber_green" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_green.res; console_unlog" alias "hud_color_uber_forest" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_forest.res; console_unlog" alias "hud_color_uber_teal" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_teal.res; console_unlog" alias "hud_color_uber_cyan" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_cyan.res; console_unlog" alias "hud_color_uber_blue" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_blue.res; console_unlog" alias "hud_color_uber_navy" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_navy.res; console_unlog" alias "hud_color_uber_purple" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_purple.res; console_unlog" alias "hud_color_uber_violet" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_violet.res; console_unlog" alias "hud_color_uber_pink" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_pink.res; console_unlog" alias "hud_color_uber_magenta" "hud_color_uber_clear; hud_color_uber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge/uber_magenta.res; console_unlog" //================================================================= // UBERCHARGE FULL //================================================================= alias "hud_color_fulluber_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_uber_full.txt" alias "hud_color_fulluber_log" "con_logfile cfg/flawhud/hud_color_uber_full.txt" //----------------------------------------------------------------- alias "hud_color_fulluber_white" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_white.res; console_unlog" alias "hud_color_fulluber_tan" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_tan.res; console_unlog" alias "hud_color_fulluber_black" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_black.res; console_unlog" alias "hud_color_fulluber_grey" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_grey.res; console_unlog" alias "hud_color_fulluber_maroon" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_maroon.res; console_unlog" alias "hud_color_fulluber_red" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_red.res; console_unlog" alias "hud_color_fulluber_salmon" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_salmon.res; console_unlog" alias "hud_color_fulluber_orange" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_orange.res; console_unlog" alias "hud_color_fulluber_yellow" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_yellow.res; console_unlog" alias "hud_color_fulluber_olive" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_olive.res; console_unlog" alias "hud_color_fulluber_green" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_green.res; console_unlog" alias "hud_color_fulluber_forest" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_forest.res; console_unlog" alias "hud_color_fulluber_teal" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_teal.res; console_unlog" alias "hud_color_fulluber_cyan" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_cyan.res; console_unlog" alias "hud_color_fulluber_blue" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_blue.res; console_unlog" alias "hud_color_fulluber_navy" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_navy.res; console_unlog" alias "hud_color_fulluber_purple" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_purple.res; console_unlog" alias "hud_color_fulluber_violet" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_violet.res; console_unlog" alias "hud_color_fulluber_pink" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_pink.res; console_unlog" alias "hud_color_fulluber_magenta" "hud_color_fulluber_clear; hud_color_fulluber_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/ubercharge_full/uber_full_magenta.res; console_unlog" //================================================================= // HEALING DONE //================================================================= alias "hud_color_healed_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_healed.txt" alias "hud_color_healed_log" "con_logfile cfg/flawhud/hud_color_healed.txt" //----------------------------------------------------------------- alias "hud_color_healed_white" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_white.res; console_unlog" alias "hud_color_healed_tan" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_tan.res; console_unlog" alias "hud_color_healed_black" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_black.res; console_unlog" alias "hud_color_healed_grey" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_grey.res; console_unlog" alias "hud_color_healed_maroon" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_maroon.res; console_unlog" alias "hud_color_healed_red" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_red.res; console_unlog" alias "hud_color_healed_salmon" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_salmon.res; console_unlog" alias "hud_color_healed_orange" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_orange.res; console_unlog" alias "hud_color_healed_yellow" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_yellow.res; console_unlog" alias "hud_color_healed_olive" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_olive.res; console_unlog" alias "hud_color_healed_green" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_green.res; console_unlog" alias "hud_color_healed_forest" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_forest.res; console_unlog" alias "hud_color_healed_teal" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_teal.res; console_unlog" alias "hud_color_healed_cyan" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_cyan.res; console_unlog" alias "hud_color_healed_blue" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_blue.res; console_unlog" alias "hud_color_healed_navy" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_navy.res; console_unlog" alias "hud_color_healed_purple" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_purple.res; console_unlog" alias "hud_color_healed_violet" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_violet.res; console_unlog" alias "hud_color_healed_pink" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_pink.res; console_unlog" alias "hud_color_healed_magenta" "hud_color_healed_clear; hud_color_healed_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/color_healed/color_healed_magenta.res; console_unlog" //================================================================= // LAST DAMAGE DONE //================================================================= alias "hud_color_damage_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_damage_last.txt" alias "hud_color_damage_log" "con_logfile cfg/flawhud/hud_color_damage_last.txt" //----------------------------------------------------------------- alias "hud_color_damage_white" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_white.res; console_unlog" alias "hud_color_damage_tan" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_tan.res; console_unlog" alias "hud_color_damage_black" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_black.res; console_unlog" alias "hud_color_damage_grey" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_grey.res; console_unlog" alias "hud_color_damage_maroon" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_maroon.res; console_unlog" alias "hud_color_damage_red" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_red.res; console_unlog" alias "hud_color_damage_salmon" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_salmon.res; console_unlog" alias "hud_color_damage_orange" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_orange.res; console_unlog" alias "hud_color_damage_yellow" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_yellow.res; console_unlog" alias "hud_color_damage_olive" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_olive.res; console_unlog" alias "hud_color_damage_green" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_green.res; console_unlog" alias "hud_color_damage_forest" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_forest.res; console_unlog" alias "hud_color_damage_teal" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_teal.res; console_unlog" alias "hud_color_damage_cyan" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_cyan.res; console_unlog" alias "hud_color_damage_blue" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_blue.res; console_unlog" alias "hud_color_damage_navy" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_navy.res; console_unlog" alias "hud_color_damage_purple" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_purple.res; console_unlog" alias "hud_color_damage_violet" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_violet.res; console_unlog" alias "hud_color_damage_pink" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_pink.res; console_unlog" alias "hud_color_damage_magenta" "hud_color_damage_clear; hud_color_damage_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/damage_last/damage_last_magenta.res; console_unlog" //================================================================= // HUD CROSSHAIR //================================================================= alias "hud_color_xhair_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_crosshair.txt" alias "hud_color_xhair_log" "con_logfile cfg/flawhud/hud_color_crosshair.txt" //----------------------------------------------------------------- alias "hud_color_xhair_white" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_white.res; console_unlog" alias "hud_color_xhair_tan" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_tan.res; console_unlog" alias "hud_color_xhair_black" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_black.res; console_unlog" alias "hud_color_xhair_grey" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_grey.res; console_unlog" alias "hud_color_xhair_maroon" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_maroon.res; console_unlog" alias "hud_color_xhair_red" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_red.res; console_unlog" alias "hud_color_xhair_salmon" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_salmon.res; console_unlog" alias "hud_color_xhair_orange" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_orange.res; console_unlog" alias "hud_color_xhair_yellow" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_yellow.res; console_unlog" alias "hud_color_xhair_olive" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_olive.res; console_unlog" alias "hud_color_xhair_green" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_green.res; console_unlog" alias "hud_color_xhair_forest" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_forest.res; console_unlog" alias "hud_color_xhair_teal" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_teal.res; console_unlog" alias "hud_color_xhair_cyan" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_cyan.res; console_unlog" alias "hud_color_xhair_blue" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_blue.res; console_unlog" alias "hud_color_xhair_navy" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_navy.res; console_unlog" alias "hud_color_xhair_purple" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_purple.res; console_unlog" alias "hud_color_xhair_violet" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_violet.res; console_unlog" alias "hud_color_xhair_pink" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_pink.res; console_unlog" alias "hud_color_xhair_magenta" "hud_color_xhair_clear; hud_color_xhair_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair/crosshair_magenta.res; console_unlog" //================================================================= // HUD CROSSHAIR FLASH //================================================================= alias "hud_color_xhair_flash_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_color_crosshair_flash.txt" alias "hud_color_xhair_flash_log" "con_logfile cfg/flawhud/hud_color_crosshair_flash.txt" //----------------------------------------------------------------- alias "hud_color_xhair_flash_white" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_white.res; console_unlog" alias "hud_color_xhair_flash_tan" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_tan.res; console_unlog" alias "hud_color_xhair_flash_black" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_black.res; console_unlog" alias "hud_color_xhair_flash_grey" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_grey.res; console_unlog" alias "hud_color_xhair_flash_maroon" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_maroon.res; console_unlog" alias "hud_color_xhair_flash_red" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_red.res; console_unlog" alias "hud_color_xhair_flash_salmon" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_salmon.res; console_unlog" alias "hud_color_xhair_flash_orange" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_orange.res; console_unlog" alias "hud_color_xhair_flash_yellow" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_yellow.res; console_unlog" alias "hud_color_xhair_flash_olive" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_olive.res; console_unlog" alias "hud_color_xhair_flash_green" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_green.res; console_unlog" alias "hud_color_xhair_flash_forest" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_forest.res; console_unlog" alias "hud_color_xhair_flash_teal" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_teal.res; console_unlog" alias "hud_color_xhair_flash_cyan" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_cyan.res; console_unlog" alias "hud_color_xhair_flash_blue" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_blue.res; console_unlog" alias "hud_color_xhair_flash_navy" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_navy.res; console_unlog" alias "hud_color_xhair_flash_purple" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_purple.res; console_unlog" alias "hud_color_xhair_flash_violet" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_violet.res; console_unlog" alias "hud_color_xhair_flash_pink" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_pink.res; console_unlog" alias "hud_color_xhair_flash_magenta" "hud_color_xhair_flash_clear; hud_color_xhair_flash_log; echo #base ../../custom/flawhud/resource/ui/customizations/colors/crosshair_flash/crosshair_flash_magenta.res; console_unlog" ================================================ FILE: cfg/hud_customization_crosshairs.cfg ================================================ //================================================================= // VISIBILITY //================================================================= alias "hud_xhair_visibility_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_crosshair_visibility.txt" alias "hud_xhair_visibility_log" "con_logfile cfg/flawhud/hud_crosshair_visibility.txt" //----------------------------------------------------------------- alias "hud_xhair_visible" "hud_xhair_visibility_clear; hud_xhair_visibility_log; echo x{CustomCrosshair{visible 1}}; console_unlog" alias "hud_xhair_invisible" "hud_xhair_visibility_clear; hud_xhair_visibility_log; echo x{CustomCrosshair{visible 0}}; console_unlog" //================================================================= // FLASH ANIMATION //================================================================= alias "hud_xhair_animation_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_crosshair_animation.txt" alias "hud_xhair_animation_log" "con_logfile cfg/flawhud/hud_crosshair_animation.txt" //----------------------------------------------------------------- alias "hud_xhair_animation_on" "hud_hitmarker_animation_clear; hud_xhair_animation_clear; hud_xhair_animation_log; echo event DamagedPlayer{RunEvent CrosshairFlash 0.0}; console_unlog" alias "hud_xhair_animation_off" "hud_xhair_animation_clear" //================================================================= // STYLE //================================================================= alias "hud_xhair_style_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_crosshair_style.txt" alias "hud_xhair_style_log" "con_logfile cfg/flawhud/hud_crosshair_style.txt" //----------------------------------------------------------------- alias "hud_xhair_style_1" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext !}}; console_unlog" alias "hud_xhair_style_2" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext #}}; console_unlog" alias "hud_xhair_style_3" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext $}}; console_unlog" alias "hud_xhair_style_4" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext %}}; console_unlog" alias "hud_xhair_style_5" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext '}}; console_unlog" alias "hud_xhair_style_6" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext (}}; console_unlog" alias "hud_xhair_style_7" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext )}}; console_unlog" alias "hud_xhair_style_8" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext *}}; console_unlog" alias "hud_xhair_style_9" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext +}}; console_unlog" alias "hud_xhair_style_10" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext ,}}; console_unlog" alias "hud_xhair_style_11" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext -}}; console_unlog" alias "hud_xhair_style_12" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext .}}; console_unlog" alias "hud_xhair_style_13" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext /}}; console_unlog" alias "hud_xhair_style_14" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext 0}}; console_unlog" alias "hud_xhair_style_15" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext 1}}; console_unlog" alias "hud_xhair_style_16" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext 2}}; console_unlog" alias "hud_xhair_style_17" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext 3}}; console_unlog" alias "hud_xhair_style_18" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext 4}}; console_unlog" alias "hud_xhair_style_19" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext 5}}; console_unlog" alias "hud_xhair_style_20" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext 6}}; console_unlog" alias "hud_xhair_style_21" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext 7}}; console_unlog" alias "hud_xhair_style_22" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext 8}}; console_unlog" alias "hud_xhair_style_23" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext 9}}; console_unlog" alias "hud_xhair_style_24" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext :}}; console_unlog" alias "hud_xhair_style_25" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext <}}; console_unlog" alias "hud_xhair_style_26" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext =}}; console_unlog" alias "hud_xhair_style_27" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext >}}; console_unlog" alias "hud_xhair_style_28" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext ?}}; console_unlog" alias "hud_xhair_style_29" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext @}}; console_unlog" alias "hud_xhair_style_30" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext A}}; console_unlog" alias "hud_xhair_style_31" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext B}}; console_unlog" alias "hud_xhair_style_32" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext C}}; console_unlog" alias "hud_xhair_style_33" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext D}}; console_unlog" alias "hud_xhair_style_34" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext E}}; console_unlog" alias "hud_xhair_style_35" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext F}}; console_unlog" alias "hud_xhair_style_36" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext G}}; console_unlog" alias "hud_xhair_style_37" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext H}}; console_unlog" alias "hud_xhair_style_38" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext I}}; console_unlog" alias "hud_xhair_style_39" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext J}}; console_unlog" alias "hud_xhair_style_40" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext K}}; console_unlog" alias "hud_xhair_style_41" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext L}}; console_unlog" alias "hud_xhair_style_42" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext M}}; console_unlog" alias "hud_xhair_style_43" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext N}}; console_unlog" alias "hud_xhair_style_44" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext O}}; console_unlog" alias "hud_xhair_style_45" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext P}}; console_unlog" alias "hud_xhair_style_46" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext Q}}; console_unlog" alias "hud_xhair_style_47" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext R}}; console_unlog" alias "hud_xhair_style_48" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext S}}; console_unlog" alias "hud_xhair_style_49" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext T}}; console_unlog" alias "hud_xhair_style_50" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext U}}; console_unlog" alias "hud_xhair_style_51" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext V}}; console_unlog" alias "hud_xhair_style_52" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext W}}; console_unlog" alias "hud_xhair_style_53" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext X}}; console_unlog" alias "hud_xhair_style_54" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext Y}}; console_unlog" alias "hud_xhair_style_55" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext Z}}; console_unlog" alias "hud_xhair_style_56" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext [}}; console_unlog" alias "hud_xhair_style_57" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext ]}}; console_unlog" alias "hud_xhair_style_58" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext ^}}; console_unlog" alias "hud_xhair_style_59" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext _}}; console_unlog" alias "hud_xhair_style_60" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext `}}; console_unlog" alias "hud_xhair_style_61" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext a}}; console_unlog" alias "hud_xhair_style_62" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext b}}; console_unlog" alias "hud_xhair_style_63" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext c}}; console_unlog" alias "hud_xhair_style_64" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext d}}; console_unlog" alias "hud_xhair_style_65" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext e}}; console_unlog" alias "hud_xhair_style_66" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext f}}; console_unlog" alias "hud_xhair_style_67" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext g}}; console_unlog" alias "hud_xhair_style_68" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext h}}; console_unlog" alias "hud_xhair_style_69" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext i}}; console_unlog" alias "hud_xhair_style_70" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext j}}; console_unlog" alias "hud_xhair_style_71" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext k}}; console_unlog" alias "hud_xhair_style_72" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext l}}; console_unlog" alias "hud_xhair_style_73" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext m}}; console_unlog" alias "hud_xhair_style_74" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext n}}; console_unlog" alias "hud_xhair_style_75" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext o}}; console_unlog" alias "hud_xhair_style_76" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext p}}; console_unlog" alias "hud_xhair_style_77" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext q}}; console_unlog" alias "hud_xhair_style_78" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext r}}; console_unlog" alias "hud_xhair_style_79" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext s}}; console_unlog" alias "hud_xhair_style_80" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext t}}; console_unlog" alias "hud_xhair_style_81" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext u}}; console_unlog" alias "hud_xhair_style_82" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext v}}; console_unlog" alias "hud_xhair_style_83" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext w}}; console_unlog" alias "hud_xhair_style_84" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext x}}; console_unlog" alias "hud_xhair_style_85" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext y}}; console_unlog" alias "hud_xhair_style_86" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext z}}; console_unlog" alias "hud_xhair_style_87" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext |}}; console_unlog" alias "hud_xhair_style_88" "hud_xhair_style_clear; hud_xhair_style_log; echo x{CustomCrosshair{labeltext ~}}; console_unlog" //================================================================= // SIZE //================================================================= alias "hud_xhair_size_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_crosshair_size.txt" alias "hud_xhair_size_log" "con_logfile cfg/flawhud/hud_crosshair_size.txt" //----------------------------------------------------------------- alias "hud_xhair_size_10" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_10}}; console_unlog" alias "hud_xhair_size_12" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_12}}; console_unlog" alias "hud_xhair_size_14" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_14}}; console_unlog" alias "hud_xhair_size_16" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_16}}; console_unlog" alias "hud_xhair_size_18" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_18}}; console_unlog" alias "hud_xhair_size_20" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_20}}; console_unlog" alias "hud_xhair_size_22" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_22}}; console_unlog" alias "hud_xhair_size_24" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_24}}; console_unlog" alias "hud_xhair_size_26" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_26}}; console_unlog" alias "hud_xhair_size_28" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_28}}; console_unlog" alias "hud_xhair_size_30" "hud_xhair_size_clear; hud_xhair_size_log; echo x{CustomCrosshair{font Size_30}}; console_unlog" ================================================ FILE: cfg/hud_customization_fonts.cfg ================================================ //================================================================= // FONT //================================================================= alias "hud_font_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_font.txt" alias "hud_font_log" "con_logfile cfg/flawhud/hud_font.txt" //----------------------------------------------------------------- alias "hud_font_tf2" "hud_font_clear; hud_font_log; echo #base ../../custom/flawhud/resource/scheme/clientscheme_fonts.res; console_unlog" alias "hud_font_code_pro" "hud_font_clear; hud_font_log; echo #base ../../custom/flawhud/resource/scheme/clientscheme_fonts_pro.res; console_unlog" ================================================ FILE: cfg/hud_customization_general.cfg ================================================ //================================================================= // CUSTOMIZATION MENU //================================================================= alias "hud_customization_menu_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_customization_menu.txt" alias "hud_customization_menu_log" "con_logfile cfg/flawhud/hud_customization_menu.txt" //----------------------------------------------------------------- alias "hud_custom_home" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 1}}}}}; console_unlog" alias "hud_custom_settings" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 0} HUD_Quick_Settings_Selection {Visible 1}}}}}; console_unlog" alias "hud_custom_colors" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 0} HUD_Colors_Selection {Visible 1}}}}}; console_unlog" alias "hud_custom_fonts" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 0} HUD_Font_Selection {Visible 1}}}}}; console_unlog" alias "hud_custom_health_ammo" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 0} HUD_Health_Ammo_Selection {Visible 1}}}}}; console_unlog" alias "hud_custom_damage" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 0} HUD_Damage_Selection {Visible 1}}}}}; console_unlog" alias "hud_custom_match_status" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 0} HUD_Match_Status_Selection {Visible 1}}}}}; console_unlog" alias "hud_custom_meters" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 0} HUD_Meters_Selection {Visible 1}}}}}; console_unlog" alias "hud_custom_crosshairs" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 0} HUD_Crosshairs_Selection {Visible 1}}}}}; console_unlog" alias "hud_custom_miscellaneous" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 0} HUD_Miscellaneous_Selection {Visible 1}}}}}; console_unlog" alias "hud_custom_dev" "hud_customization_menu_clear; hud_customization_menu_log; echo X{MainMenuOverride { SafeMode { Customizations_Panel { HUD_Customization_Home_Panel {Visible 0} HUD_Dev_Selection {Visible 1}}}}}; console_unlog" //================================================================= // UBER //================================================================= alias "hud_uber_counter_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_uber_counter.txt" alias "hud_uber_counter_log" "con_logfile cfg/flawhud/hud_uber_counter.txt" //----------------------------------------------------------------- alias "hud_uber_counter_on" "hud_uber_counter_clear; hud_uber_counter_log; echo event UberTimer{RunEvent UberTimerHide 0.0 RunEvent UberTimerRun 0.1}; console_unlog" //================================================================= // LAYOUT //================================================================= alias "hud_layout_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_layout.txt" alias "hud_layout_log" "con_logfile cfg/flawhud/hud_layout.txt" //----------------------------------------------------------------- alias "hud_layout_cornered" "hud_layout_clear; hud_layout_log; echo #base ../../custom/flawhud/resource/ui/customizations/ammo/hudammoweapons_font_small.res; console_unlog" //================================================================= // HEALTH //================================================================= alias "hud_health_style_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_health_style.txt" alias "hud_health_style_log" "con_logfile cfg/flawhud/hud_health_style.txt" //----------------------------------------------------------------- alias "hud_health_cross" "hud_health_style_clear; hud_health_style_log; echo #base ../../custom/flawhud/resource/ui/customizations/health_ammo/health_cross.res; console_unlog" alias "hud_health_no_box" "hud_health_style_clear; hud_health_style_log; echo #base ../../custom/flawhud/resource/ui/customizations/health_ammo/health_no_box.res; console_unlog" //-----------------------------------------------------------------//----------------------------------------------------------------- alias "hud_ammo_style_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_ammo_style.txt" alias "hud_ammo_style_log" "con_logfile cfg/flawhud/hud_ammo_style.txt" //----------------------------------------------------------------- alias "hud_ammo_no_box" "hud_ammo_style_clear; hud_ammo_style_log; echo #base ../../custom/flawhud/resource/ui/customizations/health_ammo/ammo_no_box.res; console_unlog" //-----------------------------------------------------------------//----------------------------------------------------------------- alias "hud_health_ammo_anim_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_health_ammo.txt" alias "hud_health_ammo_anim_log" "con_logfile cfg/flawhud/hud_health_ammo.txt" //----------------------------------------------------------------- alias "hud_health_pulse_box" "echo event HudHealthBonusPulse{RunEvent HudHealthBonusBox 0.0}event HudHealthBonusPulseStop{RunEvent HudHealthStopBox 0.0}" alias "hud_health_dying_box" "echo event HudHealthDyingPulse{RunEvent HudHealthDyingBox 0.0}event HudHealthDyingPulseStop{RunEvent HudHealthStopBox 0.0}" alias "hud_ammo_low_box" "echo event HudLowAmmoPulse{RunEvent HudAmmoLowBox 0.0}event HudLowAmmoPulseStop{RunEvent HudAmmoStopBox 0.0}" alias "hud_health_ammo_anim_box" "hud_health_ammo_anim_clear; hud_health_ammo_anim_log; hud_health_pulse_box; hud_health_dying_box; hud_ammo_low_box; console_unlog" //================================================================= // DAMAGE //================================================================= alias "hud_damage_font_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_damage_font.txt" alias "hud_damage_font_log" "con_logfile cfg/flawhud/hud_damage_font.txt" //----------------------------------------------------------------- alias "hud_damage_font_bold_small" "hud_damage_font_clear; hud_damage_font_log; echo #base ../../custom/flawhud/resource/ui/customizations/damage/damage_font_bold_small.res; console_unlog" alias "hud_damage_font_thin_large" "hud_damage_font_clear; hud_damage_font_log; echo #base ../../custom/flawhud/resource/ui/customizations/damage/damage_font_thin_large.res; console_unlog" alias "hud_damage_font_thin_small" "hud_damage_font_clear; hud_damage_font_log; echo #base ../../custom/flawhud/resource/ui/customizations/damage/damage_font_thin_small.res; console_unlog" //================================================================= // SCOREBOARD //================================================================= alias "hud_scoreboard_style_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_scoreboard_style.txt" alias "hud_scoreboard_style_log" "con_logfile cfg/flawhud/hud_scoreboard_style.txt" //----------------------------------------------------------------- alias "hud_scoreboard_large" "hud_scoreboard_style_clear; hud_scoreboard_style_log; echo #base ../../custom/flawhud/resource/ui/customizations/scoreboard/scoreboard_large.res; console_unlog" //============================================================== // KILLFEED //============================================================== alias "hud_killfeed_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_killfeed.txt" alias "hud_killfeed_log" "con_logfile cfg/flawhud/hud_killfeed.txt" //----------------------------------------------------------------- alias "hud_killfeed_rows_0" "hud_killfeed_clear; hud_killfeed_log; echo x{HudDeathNotice{MaxDeathNotices 0}}; console_unlog" alias "hud_killfeed_rows_1" "hud_killfeed_clear; hud_killfeed_log; echo x{HudDeathNotice{MaxDeathNotices 1}}; console_unlog" alias "hud_killfeed_rows_2" "hud_killfeed_clear; hud_killfeed_log; echo x{HudDeathNotice{MaxDeathNotices 2}}; console_unlog" alias "hud_killfeed_rows_3" "hud_killfeed_clear; hud_killfeed_log; echo x{HudDeathNotice{MaxDeathNotices 3}}; console_unlog" alias "hud_killfeed_rows_4" "hud_killfeed_clear; hud_killfeed_log; echo x{HudDeathNotice{MaxDeathNotices 4}}; console_unlog" alias "hud_killfeed_rows_5" "hud_killfeed_clear; hud_killfeed_log; echo x{HudDeathNotice{MaxDeathNotices 5}}; console_unlog" alias "hud_killfeed_rows_6" "hud_killfeed_clear; hud_killfeed_log; echo x{HudDeathNotice{MaxDeathNotices 6}}; console_unlog" alias "hud_killfeed_rows_7" "hud_killfeed_clear; hud_killfeed_log; echo x{HudDeathNotice{MaxDeathNotices 7}}; console_unlog" alias "hud_killfeed_rows_8" "hud_killfeed_clear; hud_killfeed_log; echo x{HudDeathNotice{MaxDeathNotices 8}}; console_unlog" alias "hud_killfeed_rows_9" "hud_killfeed_clear; hud_killfeed_log; echo x{HudDeathNotice{MaxDeathNotices 9}}; console_unlog" //================================================================= // TRANSPARENT VIEWMODELS //================================================================= alias "hud_trans_viewmodels_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_transparent_viewmodels.txt" alias "hud_trans_viewmodels_log" "con_logfile cfg/flawhud/hud_transparent_viewmodels.txt" //----------------------------------------------------------------- alias "hud_trans_viewmodels_on" "hud_trans_viewmodels_clear; hud_trans_viewmodels_log; echo #base ../../custom/flawhud/resource/ui/customizations/transparent_viewmodels/transparent_viewmodels.res; console_unlog" //================================================================= // SPY DISGUISE //================================================================= alias "hud_disguise_anim_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_disguise_anim.txt" alias "hud_disguise_anim_log" "con_logfile cfg/flawhud/hud_disguise_anim.txt" //----------------------------------------------------------------- alias "hud_disguise_anim_off" "hud_disguise_anim_clear; hud_disguise_anim_log; echo #base ../../custom/flawhud/resource/ui/customizations/disguise/hud_disguise_anim_off.res; console_unlog" //================================================================= // 3D PLAYER MODEL //================================================================= alias "hud_player_model_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_player_model.txt" alias "hud_player_model_log" "con_logfile cfg/flawhud/hud_player_model.txt" //----------------------------------------------------------------- alias "hud_player_model_off" "hud_player_model_clear; hud_player_model_log; echo #base ../../custom/flawhud/resource/ui/customizations/player_model/player_model_off.res; console_unlog" //================================================================= // SPEEDOMETER //================================================================= alias "hud_speedometer_clear" "sixense_clear_bindings; sixense_write_bindings flawhud/hud_speedometer.txt" alias "hud_speedometer_log" "con_logfile cfg/flawhud/hud_speedometer.txt" //----------------------------------------------------------------- alias "hud_speedometer_on" "hud_speedometer_clear; hud_speedometer_log; echo #base ../../custom/flawhud/resource/ui/customizations/speedometer/speedometer_on.res; console_unlog" ================================================ FILE: cfg/hud_customization_reset.cfg ================================================ //================================================================= // FULL CUSTOMIZATIONS RESET //================================================================= alias "hud_font_reset" "hud_font_tf2" //----------------------------------------------------------------- alias "hud_colors_reset" "hud_color_team_red_clear; hud_color_team_blu_clear; hud_color_neutral_clear; hud_color_buff_clear; hud_color_hurt_clear; hud_color_ammo_low_clear; hud_color_uber_clear; hud_color_fulluber_clear; hud_color_healed_clear; hud_color_damage_clear; hud_color_xhair_clear; hud_color_xhair_flash_clear" //----------------------------------------------------------------- alias "hud_layout_reset" "hud_layout_clear" alias "hud_health_style_reset" "hud_health_style_clear" alias "hud_ammo_style_reset" "hud_ammo_style_clear" alias "hud_uber_counter_reset" "hud_uber_counter_clear" alias "hud_health_ammo_anim_reset" "hud_health_ammo_anim_clear" //----------------------------------------------------------------- alias "hud_damage_reset" "hud_damage_font_clear" //----------------------------------------------------------------- alias "hud_xhair_visibility_reset" "hud_xhair_visibility_clear" alias "hud_xhair_animation_reset" "hud_xhair_animation_clear" alias "hud_xhair_style_reset" "hud_xhair_style_clear" alias "hud_xhair_size_reset" "hud_xhair_size_clear" //----------------------------------------------------------------- alias "hud_scoreboard_style_reset" "hud_scoreboard_style_clear" alias "hud_viewmodels_reset" "hud_trans_viewmodels_clear" alias "hud_disguise_reset" "hud_disguise_anim_clear" alias "hud_player_model_reset" "hud_player_model_clear" alias "hud_killfeed_reset" "hud_killfeed_clear" alias "hud_speedometer_reset" "hud_speedometer_clear" //----------------------------------------------------------------- alias "hud_customization_reset" "hud_font_reset; hud_colors_reset; hud_layout_reset; hud_health_style_reset; hud_ammo_style_reset; hud_uber_counter_reset; hud_health_ammo_anim_reset; hud_damage_reset; hud_xhair_visibility_reset; hud_xhair_animation_reset; hud_xhair_style_reset; hud_xhair_size_reset; hud_scoreboard_style_reset; hud_viewmodels_reset; hud_disguise_reset; hud_player_model_reset; hud_killfeed_reset; hud_speedometer_reset" ================================================ FILE: cfg/hud_first_run.cfg ================================================ con_timestamp "0" //================================================================= // On first HUD launch creates a flawhud folder inside tf/cfg //================================================================= alias "hud_folder" "host_writeconfig flawhud_temporary_cfg_backup.cfg full; ds_dir cfg/flawhud; ds_log 0; ds_record; ds_stop; exec flawhud_temporary_cfg_backup.cfg" hud_folder //================================================================= // Generates hud_setup.txt, stops the file from executing each time the game is launched //================================================================= con_logfile "cfg/flawhud/hud_setup.txt" echo "alias hud_firstrun" con_logfile "console.log" //================================================================= // Clean up console errors from files that are yet to be generated //================================================================= hud_uber_counter_clear hud_xhair_animation_clear hud_hitmarker_animation_clear hud_health_ammo_anim_clear ================================================ FILE: cfg/tf2_crosshair_default.cfg ================================================ cl_crosshair_file "" ================================================ FILE: cfg/valve.rc ================================================ // Load the base configuration //exec default.cfg r_decal_cullsize 1 // Setup custom controller exec joystick.cfg // Run a user script file if present exec autoexec.cfg // Stuff command line statements stuffcmds // Display the startup level startupmenu sv_unlockedchapters 99 // Apply HUD settings cl_hud_minmode 0 tf_hud_target_id_alpha 255 vgui_cache_res_files 1 tf_mm_dashboard_slide_panel_step 14 hud_reloadscheme // Setup HUD customizations exec hud_customization ================================================ FILE: info.vdf ================================================ "flawhud" { "ui_version" "3" } ================================================ FILE: materials/console/background_2fort.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_2fort" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_2fort_widescreen.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_2fort" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_borneo.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_borneo" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_borneo_widescreen.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_borneo" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_gravelpit.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_gravelpit" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_gravelpit_widescreen.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_gravelpit" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_mvm.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_mvm" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_mvm_widescreen.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_mvm" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_process.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_process" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_process_widescreen.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_process" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_upward.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_upward" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_upward_widescreen.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_upward" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_xmas2020.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_xmas2020" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_xmas2020_widescreen.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_xmas2020" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_xmas2023.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_xmas2023" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/console/background_xmas2023_widescreen.vmt ================================================ "UnlitGeneric" { "$baseTexture" "console/background_xmas2023" "$vertexcolor" "1" "$vertexalpha" "1" "$ignorez" "1" "$no_fullbright" "1" "$nolod" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_blue.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_blue" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_point_blue.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_blue" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_point_blue_opaque.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_blue" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_point_neutral.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_neutral" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_point_neutral_opaque.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_neutral" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_point_red.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_point_red_opaque.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_red.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_track_blue.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_blue" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_track_blue_opaque.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_blue" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_track_neutral_opaque.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_neutral" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_track_red.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/hud/cart_track_red_opaque.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cart_icons/cart_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_1_blu.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_1_blu" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_1_blu_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_1_blu_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_1_neutral.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_1_neutral" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_1_neutral_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_1_neutral_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_1_red.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_1_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_1_red_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_1_red_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_2_blu.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_2_blu" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_2_blu_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_2_blu_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_2_neutral.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_2_neutral" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_2_neutral_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_2_neutral_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_2_red.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_2_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_2_red_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_2_red_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_3_blu.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_3_blu" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_3_blu_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_3_blu_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_3_neutral.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_3_neutral" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_3_neutral_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_3_neutral_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_3_red.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_3_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_3_red_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_3_red_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_4_blu.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_4_blu" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_4_blu_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_4_blu_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_4_neutral.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_4_neutral" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_4_neutral_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_4_neutral_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_4_red.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_4_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_4_red_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_4_red_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_5_blu.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_5_blu" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_5_blu_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_5_blu_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_5_neutral.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_5_neutral" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_5_neutral_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_5_neutral_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_5_red.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_5_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_5_red_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_5_red_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_a.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_a" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_b.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_b" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_blu.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_blu" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_blu_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_blu_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_blu_mannhattan_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_blu_mannhattan_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_c.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_c" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_d.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_d" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_e.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_e" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_neutral.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_neutral" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_neutral_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_neutral_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_red.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_red" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/sprites/obj_icons/icon_obj_red_locked.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/cp_icons/icon_obj_red_locked" "$alpha" "1" "$vertexalpha" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/vgui/maps/menu_thumb_Missing.vmt ================================================ "UnlitGeneric" { "$translucent" "1" "$baseTexture" "vgui/replay/thumbnails/menu_thumb_Missing" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/customizations/health_cross.vmt ================================================ "UnlitGeneric" { "$baseTexture" "vgui/replay/thumbnails/customizations/health_cross" "$vertexalpha" "1" "$alpha" "1" "$translucent" "1" "$vertexcolor" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/customizations/speedometer.vmt ================================================ "UnlitGeneric" { "$baseTexture" "vgui/replay/thumbnails/customizations/speedometer" "$vertexalpha" "1" "$alpha" "1" "$translucent" "1" "$vertexcolor" "1" "$no_fullbright" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/customizations/transparent_viewmodels_off.vmt ================================================ "UnlitGeneric" { "$baseTexture" "vgui/replay/thumbnails/customizations/transparent_viewmodels_off" "$vertexalpha" "1" "$alpha" "1" "$translucent" "1" "$vertexcolor" "1" "$no_fullbright" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/customizations/transparent_viewmodels_on.vmt ================================================ "UnlitGeneric" { "$baseTexture" "vgui/replay/thumbnails/customizations/transparent_viewmodels_on" "$vertexalpha" "1" "$alpha" "1" "$translucent" "1" "$vertexcolor" "1" "$no_fullbright" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/customizations/uber_counter.vmt ================================================ "UnlitGeneric" { "$baseTexture" "vgui/replay/thumbnails/customizations/uber_counter" "$vertexcolor" "1" "$vertexalpha" "1" "$nolod" "1" "$translucent" "1" "Proxies" { "AnimatedTexture" { "animatedtexturevar" "$basetexture" "animatedtextureframenumvar" "$frame" "animatedtextureframerate" "23" } } } ================================================ FILE: materials/vgui/replay/thumbnails/deadshield.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/deadshield" "$translucent" "1" "$vertexcolor" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/vgui/replay/thumbnails/kritz.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/kritz" "$translucent" "1" "$vertexcolor" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/comfig.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/comfig" "$translucent" "1" "$vertexcolor" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/discord.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/discord" "$translucent" "1" "$vertexcolor" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/main_menu_button_casual.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/main_menu_button_casual" "$translucent" "1" "$ignorez" "1" "$vertexcolor" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/main_menu_button_community_server.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/main_menu_button_community_server" "$translucent" "1" "$ignorez" "1" "$vertexcolor" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/main_menu_button_competitive.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/main_menu_button_competitive" "$translucent" "1" "$ignorez" "1" "$vertexcolor" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/main_menu_button_mvm.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/main_menu_button_mvm" "$translucent" "1" "$ignorez" "1" "$vertexcolor" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/main_menu_logo.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/main_menu_logo" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "$translucent" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/nogc.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/nogc" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "$translucent" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/potato.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/potato" "$translucent" "1" "$vertexcolor" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/tenna.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/tenna" "$translucent" "1" "$alphatest" "1" "$nocull" "1" "$ignorez" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$frameinterval" "30" "$framecounter" "0" "$const_one" "1" "$const_zero" "0" "$constfloat" "0.07" "$addtoframe" "0" Proxies { Add { srcVar1 "$constfloat" srcVar2 "$frame" resultVar "$frame" } WrapMinMax { srcVar1 "$frame" minVal "0" maxVal "92" resultVar "$frame" } } } ================================================ FILE: materials/vgui/replay/thumbnails/main_menu/uncletopia.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/main_menu/uncletopia" "$translucent" "1" "$vertexcolor" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/vgui/replay/thumbnails/mmbg.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/mmbg" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "$translucent" "1" } ================================================ FILE: materials/vgui/replay/thumbnails/numbers.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/numbers" "$translucent" 1 "$vertexcolor" 1 "$no_fullbright" 1 "$ignorez" 1 "$speed" 0 "$alpha" "0.5" Proxies { PlayerSpeed { scale 1 resultVar $speed } Clamp { min 0 max 3500 srcVar1 $speed resultVar $frame } } } ================================================ FILE: materials/vgui/replay/thumbnails/numbers.vtf ================================================ [File too large to display: 13.7 MB] ================================================ FILE: materials/vgui/replay/thumbnails/quickfix.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/quickfix" "$translucent" "1" "$vertexcolor" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: materials/vgui/replay/thumbnails/selbyen_pickup.vmt ================================================ "UnlitGeneric" { "$baseTexture" "vgui/replay/thumbnails/selbyen_pickup" "$translucent" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "%keywords" "tf" } // image by aar <3 https://aarmastah.xyz/ ================================================ FILE: materials/vgui/replay/thumbnails/speedometer.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/numbers" "$translucent" "1" "$vertexcolor" "1" "$no_fullbright" "1" "$ignorez" "1" "$speed" "0" Proxies { PlayerSpeed { scale 1 resultVar $speed } Clamp { min 0 max 9999 srcVar1 $speed resultVar $frame } } } ================================================ FILE: materials/vgui/replay/thumbnails/transparent.vmt ================================================ "Refract" { "%keywords" "tf" "$refractamount" "0.0" "$refracttint" "{255 255 255}" "$refractblur" "0.0" "$scale" "[1 1]" "$normalmap" "vgui/replay/thumbnails/transparent" } ================================================ FILE: materials/vgui/replay/thumbnails/uber.vmt ================================================ "UnlitGeneric" { "$basetexture" "vgui/replay/thumbnails/uber" "$translucent" "1" "$vertexcolor" "1" "$ignorez" "1" "%keywords" "tf" } ================================================ FILE: resource/chat_dutch.txt ================================================ "lang" { "Language" "dutch" "Tokens" { // TF2 stuff "chat_filterbutton" "Filters" "filter_joinleave" "Doe mee/Ga weg" "filter_namechange" "Naamswijzigingen" "filter_publicchat" "Openbare chat" "filter_servermsg" "Serverberichten" "filter_teamchange" "Teamwijzigingen" "filter_achievement" "Prestatieaankondiging" "chat_say" "Zeg:" "chat_say_team" "Zeg (TEAM):" "chat_say_party" "Zeg (PARTY) :" // FlawHUD stuff // resource/gamemenu.res "FH_favorite_server" "FAVORIETE SERVER" "FH_refresh_hud" "HERNIEUW HUD" // resource/support.res "FH_supporters_info" "Eeen speciale dankjewel aan iedereen die dit project ondersteund heeft via PayPal of GitHub Sponsors." "FH_supporters_list" "Als je mij zou willen ondersteunen en je naam op het bord wil zien, klik dan hier: https://github.com/sponsors/CriticalFlaw" // resource/tools.res "FH_reload_hud" "HERLAAD HUD" "FH_streamer_mode" "STREAMER MODE" "FH_toggle_captions" "GESLOTEN ONDERSCHRIFT" "FH_toggle_netgraph" "NETWERK GRAFIEK" "FH_toggle_match_hud" "MATCH HUD" "FH_toggle_chat" "IN-SPEL CHAT" "FH_viewmodel_min" "MIN. VIEWMODEL" "FH_viewmodel_fov" "VIEWMODEL FOV" "FH_game_volume" "SPEL VOLUME" "FH_voice_volume" "STEM VOLUME" "FH_damage_color" "SCHADE KLEUR" // resource/ui/charinfopanel.res "FH_back" "Terug (&Q)" // resource/ui/classselection.res "FH_random_class" "&R Willekeurig" "FH_edit_loadout" "&E Pas Uitrusting Aan" "FH_cancel_class" "&Q Annuleer" // resource/ui/econ/store/v2/storepanel.res "FH_exit_store" "Verlaat Winkel (&Q)" // resource/ui/mainmenuoverride.res "FH_streamer_mode_active" "Streamer Mode Geactiveerd!" // resource/ui/replaybrowser/mainpanel.res // This one is not translated because it uses the same translation as resource/ui/charinfopanel.res ("FH_back") } } ================================================ FILE: resource/chat_german.txt ================================================ "lang" { "Language" "german" "Tokens" { // TF2 stuff "chat_filterbutton" "Filter" "filter_joinleave" "Einklinken/Verlassen" "filter_namechange" "Namensänderungen" "filter_publicchat" "Öffentlicher Chat" "filter_servermsg" "Servermeldungen" "filter_teamchange" "Teamänderungen" "filter_achievement" "Errungenschaftsmeldungen" "chat_say" "Nachricht:" "chat_say_team" "Nachricht (TEAM):" "chat_say_party" "Say (PARTY) :" // FlawHUD stuff // resource/gamemenu.res "FH_favorite_server" "LIEBLINGSSERVER" "FH_refresh_hud" "HUD AKTUALISIEREN" // resource/support.res "FH_supporters_info" "Besonderer Dank geht an alle, die dieses Projekt über PayPal oder GitHub-Sponsoren unterstützt haben." "FH_supporters_list" "Wenn du mich unterstützen möchtest und du deinen Namem auf dem Board sehen möchtest, klicke hier: https://github.com/sponsors/CriticalFlaw" // resource/tools.res "FH_reload_hud" "HUD NEU LADEN" "FH_streamer_mode" "STREAMER-MODUS" "FH_toggle_captions" "UNTERTITEL" "FH_toggle_netgraph" "NET GRAPH" "FH_toggle_match_hud" "SPIEL-HUD" "FH_toggle_chat" "SPIEL-CHAT" "FH_viewmodel_min" "MINIMALES ANSICHTSMODELL" "FH_viewmodel_fov" "FOV ANSICHTSMODELL" "FH_game_volume" "SPIELLAUTSTÄRKE" "FH_voice_volume" "SPRACHLAUTSTÄRKE" "FH_damage_color" "SCHADENSFARBE" // resource/ui/charinfopanel.res "FH_back" "Zurück (&Q)" // resource/ui/classselection.res "FH_random_class" "&R Zufällig" "FH_edit_loadout" "&E Loadout bearbeiten" "FH_cancel_class" "&Q Abbrechen" // resource/ui/econ/store/v2/storepanel.res "FH_exit_store" "Shop verlassen (&Q)" // resource/ui/mainmenuoverride.res "FH_streamer_mode_active" "Streamer-Modus Aktiviert!" // resource/ui/replaybrowser/mainpanel.res // This one is not translated because it uses the same translation as resource/ui/charinfopanel.res ("FH_back") } } ================================================ FILE: resource/chat_polish.txt ================================================ "lang" { "Language" "polish" "Tokens" { // TF2 stuff "chat_filterbutton" "Filtry" "filter_joinleave" "Dołączenia/rozłączenia" "filter_namechange" "Zmiany nazwy" "filter_publicchat" "Czat publiczny" "filter_servermsg" "Komunikaty serwera" "filter_teamchange" "Zmiany drużyny" "filter_achievement" "Powiadomienia o osiągnięciach" "chat_say" "Mów:" "chat_say_team" "Mów (DRUŻYNA):" "chat_say_party" "Say (PARTY) :" // FlawHUD stuff // resource/gamemenu.res "FH_favorite_server" "ULUBIONY SERWER" "FH_refresh_hud" "ODŚWIEŻ HUD" // resource/support.res "FH_supporters_info" "Szczególne podziękowania dla wszystkich, którzy wsparli ten projekt poprzez PayPal lub GitHub Sponsors." "FH_supporters_list" "Jeśli chcesz mnie wesprzeć oraz zobaczyć swoje imię na liście, kliknij tutaj: https://github.com/sponsors/CriticalFlaw" // resource/tools.res "FH_reload_hud" "PRZEŁADUJ HUD" "FH_streamer_mode" "TRYB STREAMERA" "FH_toggle_captions" "NAPISY" "FH_toggle_netgraph" "NET GRAPH" "FH_toggle_match_hud" "HUD MECZOWY" "FH_toggle_chat" "CZAT W GRZE" "FH_viewmodel_min" "OBNIŻONY MODEL BRONI" "FH_viewmodel_fov" "FOV MODELU BRONI" "FH_game_volume" "GŁOŚNOŚĆ GRY" "FH_voice_volume" "GŁOŚNOŚĆ CZATU GŁOSOWEGO" "FH_damage_color" "KOLOR OBRAŻEŃ" // resource/ui/charinfopanel.res "FH_back" "Wróć (&Q)" // resource/ui/classselection.res "FH_random_class" "&R Losowa" "FH_edit_loadout" "&E Zmień Ekwipunek" "FH_cancel_class" "&Q Anuluj" // resource/ui/econ/store/v2/storepanel.res "FH_exit_store" "Opuść Sklep (&Q)" // resource/ui/mainmenuoverride.res "FH_streamer_mode_active" "Tryb streamera aktywny!" // resource/ui/replaybrowser/mainpanel.res // This one is not translated because it uses the same translation as resource/ui/charinfopanel.res ("FH_back") } } ================================================ FILE: resource/chat_portuguese.txt ================================================ "lang" { "Language" "portuguese" "Tokens" { // TF2 stuff "chat_filterbutton" "Filtros" "filter_joinleave" "Entradas / Saídas" "filter_namechange" "Mudanças de nome" "filter_publicchat" "Chat público" "filter_servermsg" "Mensagens de servidor" "filter_teamchange" "Mudanças de equipa" "filter_achievement" "Anúncio de Proeza" "chat_say" "Comunicar:" "chat_say_team" "Comunicar (EQUIPA):" "chat_say_party" "Say (PARTY) :" // FlawHUD stuff // resource/gamemenu.res "FH_favorite_server" "SERVIDOR FAVORITO" "FH_refresh_hud" "ATUALIZAR HUD" // resource/support.res "FH_supporters_info" "Um agradecimento especial a todos aqueles que têm vindo a suportar este projeto através do PayPal e do GitHub Sponsors" "FH_supporters_list" "Se deseja suportar-me e ver o seu nome adicionado à tabela, clique aqui: https://github.com/sponsors/CriticalFlaw" // resource/tools.res "FH_reload_hud" "ATUALIZAR HUD" "FH_streamer_mode" "MODO STREAMER" "FH_toggle_captions" "LEGENDAS" "FH_toggle_netgraph" "NET GRAPH" "FH_toggle_match_hud" "MATCH HUD" "FH_toggle_chat" "CHAT DE JOGO" "FH_viewmodel_min" "MIN. VIEWMODEL" "FH_viewmodel_fov" "VIEWMODEL FOV" "FH_game_volume" "VOLUME DO JOGO" "FH_voice_volume" "VOLUME DO CHAT DE VOZ" "FH_damage_color" "COR DO TEXTO DE DANO" // resource/ui/charinfopanel.res "FH_back" "Voltar (&Q)" // resource/ui/classselection.res "FH_random_class" "&R Aleatório" "FH_edit_loadout" "&E Editar Equipamento" "FH_cancel_class" "&Q Cancelar" // resource/ui/econ/store/v2/storepanel.res "FH_exit_store" "Sair da loja (&Q)" // resource/ui/mainmenuoverride.res "FH_streamer_mode_active" "Modo Streamer Ativo!" // resource/ui/replaybrowser/mainpanel.res // This one is not translated because it uses the same translation as resource/ui/charinfopanel.res ("FH_back") } } ================================================ FILE: resource/chatscheme.res ================================================ Scheme { //////////////////////// COLORS /////////////////////////// // color details // this is a list of all the colors used by the scheme Colors { // base colors "White" "255 255 255 255" "OffWhite" "216 216 216 255" "DullWhite" "142 142 142 255" "Orange" "156 82 33 255" "TransparentBlack" "0 0 0 128" "Black" "0 0 0 255" "Green" "63 185 73 255" "Blank" "0 0 0 0" "DarkBrown" "60 56 53 255" "TanBright" "236 227 203 150" "TanLight" "201 188 162 150" "TanDark" "96 90 78 90" "TextBright" "251 236 203 150" "TextBlack" "42 39 37 255" "TextDull" "131 121 104 255" } ///////////////////// BASE SETTINGS //////////////////////// // // default settings for all panels // controls use these to determine their settings BaseSettings { // vgui_controls color specifications Border.Bright "TanDark" Border.Dark "TanDark" Border.Selection "BorderSelection" Button.TextColor "DarkBrown" Button.BgColor "TanLight" Button.ArmedTextColor "DarkBrown" Button.ArmedBgColor "TanBright" Button.DepressedTextColor "DarkBrown" Button.DepressedBgColor "TanLight" Button.FocusBorderColor "TransparentBlack" CheckButton.TextColor "TextBright" CheckButton.SelectedTextColor "TextBright" CheckButton.BgColor "TransparentBlack" CheckButton.HighlightFgColor "TextDull" CheckButton.ArmedBgColor "Blank" CheckButton.DepressedBgColor "Blank" CheckButton.Border1 "Border.Dark" CheckButton.Border2 "Border.Bright" CheckButton.Check "TanBright" CheckButton.DisabledBgColor "TransparentBlack" ComboBoxButton.ArrowColor "TanLight" ComboBoxButton.ArmedArrowColor "TanBright" ComboBoxButton.BgColor "Blank" ComboBoxButton.DisabledBgColor "Blank" "Chat.TypingText" "TextBright" Frame.BgColor "TransparentBlack" Frame.OutOfFocusBgColor "TransparentBlack" Frame.FocusTransitionEffectTime "0.0" Frame.TransitionEffectTime "0.0" Frame.AutoSnapRange "0" FrameGrip.Color1 "Blank" FrameGrip.Color2 "Blank" FrameTitleButton.FgColor "Blank" FrameTitleButton.BgColor "Blank" FrameTitleButton.DisabledFgColor "Blank" FrameTitleButton.DisabledBgColor "Blank" FrameSystemButton.FgColor "Blank" FrameSystemButton.BgColor "Blank" FrameSystemButton.Icon "" FrameSystemButton.DisabledIcon "" FrameTitleBar.TextColor "Orange" FrameTitleBar.BgColor "Blank" FrameTitleBar.DisabledTextColor "Orange" FrameTitleBar.DisabledBgColor "Blank" GraphPanel.FgColor "White" GraphPanel.BgColor "TransparentBlack" Label.TextDullColor "TextDull" Label.TextColor "TextBright" Label.TextBrightColor "TextBright" Label.SelectedTextColor "TextBright" Label.BgColor "Blank" Label.DisabledFgColor1 "TextDull" Label.DisabledFgColor2 "Blank" ListPanel.TextColor "TextBright" ListPanel.BgColor "TransparentBlack" ListPanel.SelectedBgColor "90 84 75 255" ListPanel.SelectedOutOfFocusBgColor "69 64 57 255" Menu.TextColor "White" Menu.BgColor "TransparentBlack" Menu.ArmedTextColor "TextBlack" Menu.ArmedBgColor "Orange" Menu.TextInset "6" Panel.FgColor "Blank" Panel.BgColor "DarkBrown" ProgressBar.FgColor "White" ProgressBar.BgColor "TransparentBlack" PropertySheet.TextColor "OffWhite" PropertySheet.SelectedTextColor "White" PropertySheet.TransitionEffectTime "0" RadioButton.TextColor "DullWhite" RadioButton.SelectedTextColor "White" RichText.TextColor "White" RichText.BgColor "TransparentBlack" RichText.SelectedTextColor "White" RichText.SelectedBgColor "Orange" ScrollBar.Wide "0" ScrollBarButton.FgColor "Blank" ScrollBarButton.BgColor "Blank" ScrollBarButton.ArmedFgColor "Blank" ScrollBarButton.ArmedBgColor "Blank" ScrollBarButton.DepressedFgColor "Blank" ScrollBarButton.DepressedBgColor "Blank" ScrollBarSlider.FgColor "Blank" ScrollBarSlider.BgColor "Blank" SectionedListPanel.HeaderTextColor "White" SectionedListPanel.HeaderBgColor "Blank" SectionedListPanel.DividerColor "Black" SectionedListPanel.TextColor "DullWhite" SectionedListPanel.BrightTextColor "White" SectionedListPanel.BgColor "TransparentBlack" SectionedListPanel.SelectedTextColor "Black" SectionedListPanel.SelectedBgColor "Orange" SectionedListPanel.OutOfFocusSelectedTextColor "Black" SectionedListPanel.OutOfFocusSelectedBgColor "255 155 0 128" Slider.NobColor "108 108 108 255" Slider.TextColor "180 180 180 255" Slider.TrackColor "31 31 31 255" Slider.DisabledTextColor1 "117 117 117 255" Slider.DisabledTextColor2 "30 30 30 255" TextEntry.TextColor "TextBright" TextEntry.BgColor "TransparentBlack" TextEntry.CursorColor "OffWhite" TextEntry.DisabledTextColor "DullWhite" TextEntry.DisabledBgColor "Blank" TextEntry.SelectedTextColor "White" TextEntry.SelectedBgColor "Orange" TextEntry.OutOfFocusSelectedBgColor "255 155 0 128" TextEntry.FocusEdgeColor "0 0 0 196" ToggleButton.SelectedTextColor "Orange" Tooltip.TextColor "0 0 0 196" Tooltip.BgColor "Orange" TreeView.BgColor "TransparentBlack" WizardSubPanel.BgColor "Blank" // scheme-specific colors MainMenu.TextColor "White" MainMenu.ArmedTextColor "200 200 200 255" MainMenu.DepressedTextColor "192 186 80 255" MainMenu.MenuItemHeight "16" MainMenu.Inset "32" MainMenu.Backdrop "0 0 0 156" Console.TextColor "OffWhite" Console.DevTextColor "White" NewGame.TextColor "White" NewGame.FillColor "0 0 0 255" NewGame.SelectionColor "Orange" NewGame.DisabledColor "128 128 128 196" TFColors.ChatTextYellow "251 235 202 255" TFColors.ChatTextTeamBlue "153 204 255 255" TFColors.ChatTextTeamRed "255 63 53 255" } //////////////////////// BITMAP FONT FILES ///////////////////////////// // // Bitmap Fonts are ****VERY*** expensive static memory resources so they are purposely sparse BitmapFontFiles { // UI buttons, custom font, (256x64) "Buttons" "materials/vgui/fonts/buttons_32.vbf" } //////////////////////// FONTS ///////////////////////////// // // describes all the fonts Fonts { "Default" { "isproportional" "only" "1" { "name" "Verdana" "tall" "12" [!$POSIX] "tall" "14" [$POSIX] "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "Verdana" "tall" "13" [!$POSIX] "tall" "16" [$POSIX] "weight" "0" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "Verdana" "tall" "14" [!$POSIX] "tall" "16" [$POSIX] "weight" "0" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "Verdana" "tall" "16" [!$POSIX] "tall" "18" [$POSIX] "weight" "0" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "Verdana" "tall" "8" "weight" "0" "range" "0x0000 0x017F" "antialias" "1" } } // this is the symbol font "Marlett" { "1" { "name" "Marlett" "tall" "10" "weight" "0" "yres" "480 599" "symbol" "1" } "2" { "name" "Marlett" "tall" "14" "weight" "0" "yres" "600 767" "symbol" "1" } "3" { "name" "Marlett" "tall" "13" "weight" "0" "yres" "768 1023" "symbol" "1" } "4" { "name" "Marlett" "tall" "17" "weight" "0" "yres" "1024 1199" "symbol" "1" } "5" { "name" "Marlett" "tall" "22" "weight" "0" "yres" "1200 10000" "symbol" "1" } } "MarlettSmall" { "1" { "name" "Marlett" "tall" "7" "weight" "0" "yres" "480 599" "symbol" "1" } "2" { "name" "Marlett" "tall" "9" "weight" "0" "yres" "600 767" "symbol" "1" } "3" { "name" "Marlett" "tall" "11" "weight" "0" "yres" "768 1023" "symbol" "1" } "4" { "name" "Marlett" "tall" "13" "weight" "0" "yres" "1024 1199" "symbol" "1" } "5" { "name" "Marlett" "tall" "17" "weight" "0" "yres" "1200 10000" "symbol" "1" } } "ChatFont" { "isproportional" "only" "1" { "name" "Verdana" "tall" "12" [!$POSIX] "tall" "15" [$POSIX] "weight" "700" "yres" "480 599" "dropshadow" "1" "antialias" "1" } "2" { "name" "Verdana" "tall" "14" [!$POSIX] "tall" "17" [$POSIX] "weight" "700" "yres" "600 767" "dropshadow" "1" "antialias" "1" } "3" { "name" "Verdana" "tall" "15" [!$POSIX] "tall" "18" [$POSIX] "weight" "700" "yres" "768 1023" "dropshadow" "1" "antialias" "1" } "4" { "name" "Verdana" "tall" "17" [!$POSIX] "tall" "20" [$POSIX] "weight" "700" "yres" "1024 1199" "dropshadow" "1" "antialias" "1" } "5" { "name" "Verdana" "tall" "8" "weight" "300" "dropshadow" "1" "antialias" "1" } } "DefaultVerySmall" { "1" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "Verdana" "tall" "14" "weight" "0" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "Verdana" "tall" "16" "weight" "0" "range" "0x0000 0x017F" "yres" "1200 6000" "antialias" "1" } } } // //////////////////// BORDERS ////////////////////////////// // // describes all the border types Borders { BaseBorder DepressedBorder ButtonBorder RaisedBorder ComboBoxBorder DepressedBorder MenuBorder RaisedBorder BrowserBorder DepressedBorder PropertySheetBorder RaisedBorder FrameBorder { "backgroundtype" "2" } DepressedBorder { "inset" "0 0 1 1" Left { "1" { "color" "Border.Dark" "offset" "0 1" } } Right { "1" { "color" "Border.Bright" "offset" "1 0" } } Top { "1" { "color" "Border.Dark" "offset" "0 0" } } Bottom { "1" { "color" "Border.Bright" "offset" "0 0" } } } RaisedBorder { "inset" "0 0 1 1" Left { "1" { "color" "Border.Bright" "offset" "0 1" } } Right { "1" { "color" "Border.Dark" "offset" "0 0" } } Top { "1" { "color" "Border.Bright" "offset" "0 1" } } Bottom { "1" { "color" "Border.Dark" "offset" "0 0" } } } TitleButtonBorder { "backgroundtype" "0" } TitleButtonDisabledBorder { "backgroundtype" "0" } TitleButtonDepressedBorder { "backgroundtype" "0" } ScrollBarButtonBorder { "inset" "2 2 0 0" Left { "1" { "color" "Blank" "offset" "0 1" } } Right { "1" { "color" "Blank" "offset" "1 0" } } Top { "1" { "color" "Blank" "offset" "0 0" } } Bottom { "1" { "color" "Blank" "offset" "0 0" } } } ScrollBarButtonDepressedBorder { "inset" "2 2 0 0" Left { "1" { "color" "Blank" "offset" "0 1" } } Right { "1" { "color" "Blank" "offset" "1 0" } } Top { "1" { "color" "Blank" "offset" "0 0" } } Bottom { "1" { "color" "Blank" "offset" "0 0" } } } TabBorder { "inset" "0 0 1 1" Left { "1" { "color" "Border.Bright" "offset" "0 1" } } Right { "1" { "color" "Border.Dark" "offset" "1 0" } } Top { "1" { "color" "Border.Bright" "offset" "0 0" } } } TabActiveBorder { "inset" "0 0 1 0" Left { "1" { "color" "Border.Bright" "offset" "0 0" } } Right { "1" { "color" "Border.Dark" "offset" "1 0" } } Top { "1" { "color" "Border.Bright" "offset" "0 0" } } } ToolTipBorder { "inset" "0 0 1 0" Left { "1" { "color" "Border.Dark" "offset" "0 0" } } Right { "1" { "color" "Border.Dark" "offset" "1 0" } } Top { "1" { "color" "Border.Dark" "offset" "0 0" } } Bottom { "1" { "color" "Border.Dark" "offset" "0 0" } } } // this is the border used for default buttons (the button that gets pressed when you hit enter) ButtonKeyFocusBorder { "inset" "0 0 1 1" Left { "1" { "color" "Border.Selection" "offset" "0 0" } "2" { "color" "Border.Bright" "offset" "0 1" } } Top { "1" { "color" "Border.Selection" "offset" "0 0" } "2" { "color" "Border.Bright" "offset" "1 0" } } Right { "1" { "color" "Border.Selection" "offset" "0 0" } "2" { "color" "Border.Dark" "offset" "1 0" } } Bottom { "1" { "color" "Border.Selection" "offset" "0 0" } "2" { "color" "Border.Dark" "offset" "0 0" } } } ButtonDepressedBorder { "inset" "2 1 1 1" Left { "1" { "color" "Border.Dark" "offset" "0 1" } } Right { "1" { "color" "Border.Bright" "offset" "1 0" } } Top { "1" { "color" "Border.Dark" "offset" "0 0" } } Bottom { "1" { "color" "Border.Bright" "offset" "0 0" } } } } //////////////////////// CUSTOM FONT FILES ///////////////////////////// // // specifies all the custom (non-system) font files that need to be loaded to service the above described fonts CustomFontFiles { "1" "resource/halflife2.ttf" "2" "resource/hl2ep2.ttf" "10" "resource/linux_fonts/dejavusans.ttf" "11" "resource/linux_fonts/dejavusans-bold.ttf" "12" "resource/linux_fonts/dejavusans-boldoblique.ttf" "13" "resource/linux_fonts/dejavusans-oblique.ttf" "14" "resource/linux_fonts/liberationsans-regular.ttf" "15" "resource/linux_fonts/liberationsans-bold.ttf" "16" "resource/linux_fonts/liberationmono-regular.ttf" } } ================================================ FILE: resource/clientscheme.res ================================================ //================================================================= // CUSTOMIZATIONS //================================================================= #base "../../../cfg/flawhud/hud_font.txt" #base "ui/customizations/colors/color_customization.res" //================================================================= // BASE SCHEMA //================================================================= #base "scheme/clientscheme_settings.res" #base "scheme/clientscheme_borders.res" #base "scheme/clientscheme_colors.res" #base "scheme/clientscheme_fonts_paths.res" #base "scheme/clientscheme_fonts.res" #base "scheme/clientscheme_icons.res" #base "scheme/clientscheme_xhairs.res" ================================================ FILE: resource/gamemenu.res ================================================ "GameMenu" { "HomeServerButton" { "label" "}" "command" "engine clear; showconsole; echo To setup a shortcut to your favorite server, open flawhud/resource/gamemenu.res and under 'HomeServerButton' replace the value of 'command' with the connection string to your server. Example: engine connect 192.168.1.10:27015; password hello" "tooltip" "#FH_favorite_server" } "TF2SettingsButton" { "label" "a" "command" "opentf2options" "tooltip" "#MMenu_Tooltip_AdvOptions" } "AchievementsButton" { "label" "b" "command" "OpenAchievementsDialog" "tooltip" "#Achievements" } "ReplayButton" { "label" "d" "command" "engine replay_reloadbrowser" "tooltip" "#MMenu_Tooltip_Replay" } "ReportBugButton" { "label" "e" "command" "engine bug" "tooltip" "#MMenu_Tooltip_ReportBug" } "ItemTestButton" { "label" "f" "command" "engine itemtest" "tooltip" "#IT_Title" } "TrainingModeButton" { "label" "V" "command" "engine training_showdlg" "tooltip" "#MMenu_PlayList_Training_Button" } "CreateServerButton" { "label" "W" "command" "OpenCreateMultiplayerGameDialog" "tooltip" "#MMenu_PlayList_CreateServer_Button" } "ConsoleButton" { "label" "c" "command" "engine toggleconsole" "tooltip" "#GameUI_Console" } "CoachPlayersButton" { "label" "g" "command" "engine cl_coach_toggle" "tooltip" "#MMenu_Tooltip_Coach" } "RequestCoachButton" { "label" "h" "command" "engine cl_coach_find_coach" "OnlyInGame" "1" "tooltip" "#MMenu_RequestCoach" } "CallVoteButton" { "label" "i" "command" "callvote" "OnlyInGame" "1" "tooltip" "#MMenu_CallVote" } "MutePlayersButton" { "label" "j" "command" "OpenMutePlayerDialog" "OnlyInGame" "1" "tooltip" "#MMenu_MutePlayers" } "ReportPlayerButton" { "label" "k" "command" "OpenReportPlayerDialog" "OnlyInGame" "1" "tooltip" "#MMenu_ReportPlayer" } "QuestLogButton" { "label" "@" "command" "questlog" "tooltip" "#TF_QuestMap_Intro_Title" } "MOTD_ShowButtonPanel" { "label" "r" "command" "motd_show" "tooltip" "#TF_MOTD_Title" } "ShowToolsButton" { "label" "w" "command" "engine toggle cl_mainmenu_safemode 1; gameui_preventescape; mat_queue_mode 0" "tooltip" "#TF_OptionCategory_HUD" } "ReloadHUDButton" { "label" "." "command" "engine record fix;stop;snd_restart;vgui_cache_res_files 0;hud_reloadscheme;vgui_cache_res_files 1" "tooltip" "#FH_refresh_hud" } } ================================================ FILE: resource/links.res ================================================ "resource/ui/mainmenuoverride.res" { "GitLink" { "ControlName" "EditablePanel" "fieldName" "GitLink" "xpos" "-10" "ypos" "-5" "zpos" "1" "wide" "18" "tall" "18" "visible" "1" "bgcolor_override" "23 26 33 255" "PaintBackgroundType" "2" "pin_to_sibling" "BGPanel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" "GitUrl" { "ControlName" "URLLabel" "fieldName" "GitUrl" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "f0" "font" "SmallIcons" "labelText" "Y" "enabled" "1" "visible" "1" "paintBackground" "0" "textAlignment" "center" "fgcolor_override" "HudWhite" "proportionaltoparent" "1" "urlText" "https://github.com/CriticalFlaw/FlawHUD" } } "DiscordLink" { "ControlName" "EditablePanel" "fieldName" "DiscordLink" "xpos" "0" "ypos" "5" "zpos" "1" "wide" "18" "tall" "18" "visible" "1" "bgcolor_override" "88 101 242 255" "PaintBackgroundType" "2" "pin_to_sibling" "GitLink" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "DiscordUrl" { "ControlName" "URLLabel" "fieldName" "DiscordUrl" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "f0" "font" "SmallIcons" "labelText" "" "enabled" "1" "visible" "1" "paintBackground" "0" "textAlignment" "center" "fgcolor_override" "HudWhite" "proportionaltoparent" "1" "urlText" "https://discord.gg/hTdtK9vBhE" } "DiscordLogo" { "ControlName" "ImagePanel" "fieldName" "DiscordLogo" "xpos" "cs-0.51" "ypos" "cs-0.5" "wide" "13" "tall" "13" "proportionaltoparent" "1" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/discord" "scaleimage" "1" "alpha" "120" } } "Separator" { "ControlName" "ImagePanel" "fieldName" "Separator" "xpos" "6" "ypos" "5" "zpos" "2" "wide" "29" "tall" "2" "visible" "1" "enabled" "1" "fillcolor" "44 44 44 255" "pin_to_sibling" "DiscordLink" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "ComfigLink" { "ControlName" "EditablePanel" "fieldName" "ComfigLink" "xpos" "0" "ypos" "12" "zpos" "1" "wide" "18" "tall" "18" "visible" "1" "bgcolor_override" "ComfigGreen" "PaintBackgroundType" "2" "pin_to_sibling" "DiscordLink" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "ComfigUrl" { "ControlName" "URLLabel" "fieldName" "ComfigUrl" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "f0" "font" "FontBold18" "labelText" "" "enabled" "1" "visible" "1" "paintBackground" "0" "textAlignment" "center" "fgcolor_override" "HudWhite" "proportionaltoparent" "1" "urlText" "https://comfig.app/quickplay" } "ComfigLogo" { "ControlName" "ImagePanel" "fieldName" "ComfigLogo" "xpos" "cs-0.52" "ypos" "cs-0.52" "wide" "13" "tall" "13" "proportionaltoparent" "1" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/comfig" "scaleimage" "1" "alpha" "120" } } "UncleLink" { "ControlName" "EditablePanel" "fieldName" "UncleLink" "xpos" "0" "ypos" "5" "zpos" "1" "wide" "18" "tall" "18" "visible" "1" "bgcolor_override" "181 64 60 255" "PaintBackgroundType" "2" "pin_to_sibling" "ComfigLink" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "UncleUrl" { "ControlName" "URLLabel" "fieldName" "UncleUrl" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "f0" "font" "SmallIcons" "labelText" "" "enabled" "1" "visible" "1" "paintBackground" "0" "textAlignment" "center" "fgcolor_override" "HudWhite" "proportionaltoparent" "1" "urlText" "https://uncletopia.com/servers" } "UncleLogo" { "ControlName" "ImagePanel" "fieldName" "UncleLogo" "xpos" "cs-0.53" "ypos" "cs-0.47" "wide" "15" "tall" "15" "proportionaltoparent" "1" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/uncletopia" "scaleimage" "1" "alpha" "120" } } "PotatoLink" { "ControlName" "EditablePanel" "fieldName" "PotatoLink" "xpos" "0" "ypos" "5" "zpos" "1" "wide" "18" "tall" "18" "visible" "1" "bgcolor_override" "54 54 54 255" "PaintBackgroundType" "2" "pin_to_sibling" "UncleLink" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "PotatoUrl" { "ControlName" "URLLabel" "fieldName" "PotatoUrl" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "f0" "font" "SmallIcons" "labelText" "" "enabled" "1" "visible" "1" "paintBackground" "0" "textAlignment" "center" "fgcolor_override" "HudWhite" "proportionaltoparent" "1" "urlText" "https://potato.tf/servers" } "PotatoLogo" { "ControlName" "ImagePanel" "fieldName" "PotatoLogo" "xpos" "cs-0.53" "ypos" "cs-0.5" "wide" "16" "tall" "16" "proportionaltoparent" "1" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/potato" "scaleimage" "1" "alpha" "120" } } "BGPanel" { "ControlName" "EditablePanel" "fieldname" "BGPanel" "xpos" "0" "ypos" "10" "zpos" "-1" "wide" "45" "tall" "128" "visible" "1" "bgcolor_override" "TransparentBlack" "PaintBackgroundType" "2" "pin_to_sibling" "BGPanel5" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } } ================================================ FILE: resource/preload.res ================================================ "resource/ui/mainmenuoverride.res" { //--------------------- // Control Point Icons //--------------------- "CPIconBlu" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_blu" } "CPIconBluLocked" { "ControlName" "ImagePanel" "fieldName" "CPIconBluLocked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_blu_locked" } "CPIconRed" { "ControlName" "ImagePanel" "fieldName" "CPIconRed" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_red" } "CPIconRedLocked" { "ControlName" "ImagePanel" "fieldName" "CPIconRedLocked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_red_locked" } "CPIconNeutral" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_neutral" } "CPIconNeutralLocked" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutralLocked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_neutral_locked" } "CPIconBlu1" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu1" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_1_blu" } "CPIconBlu1Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu1Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_1_blu_locked" } "CPIconRed1" { "ControlName" "ImagePanel" "fieldName" "CPIconRed1" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_1_red" } "CPIconRed1Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconRed1Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_1_red_locked" } "CPIconNeutral1" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral1" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_1_neutral" } "CPIconNeutral1Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral1Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_1_neutral_locked" } "CPIconBlu2" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu2" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_2_blu" } "CPIconBlu2Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu2Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_2_blu_locked" } "CPIconRed2" { "ControlName" "ImagePanel" "fieldName" "CPIconRed2" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_2_red" } "CPIconRed2Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconRed2Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_2_red_locked" } "CPIconNeutral2" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral2" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_2_neutral" } "CPIconNeutral2Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral2Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_2_neutral_locked" } "CPIconBlu3" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu3" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_3_blu" } "CPIconBlu3Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu3Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_3_blu_locked" } "CPIconRed3" { "ControlName" "ImagePanel" "fieldName" "CPIconRed3" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_3_red" } "CPIconRed3Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconRed3Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_3_red_locked" } "CPIconNeutral3" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral3" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_3_neutral" } "CPIconNeutral3Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral3Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_3_neutral_locked" } "CPIconBlu4" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu4" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_4_blu" } "CPIconBlu4Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu4Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_4_blu_locked" } "CPIconRed4" { "ControlName" "ImagePanel" "fieldName" "CPIconRed4" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_4_red" } "CPIconRed4Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconRed4Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_4_red_locked" } "CPIconNeutral4" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral4" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_4_neutral" } "CPIconNeutral4Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral4Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_4_neutral_locked" } "CPIconBlu5" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu5" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_5_blu" } "CPIconBlu5Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconBlu5Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_5_blu_locked" } "CPIconRed5" { "ControlName" "ImagePanel" "fieldName" "CPIconRed5" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_5_red" } "CPIconRed5Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconRed5Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_5_red_locked" } "CPIconNeutral5" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral5" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_5_neutral" } "CPIconNeutral5Locked" { "ControlName" "ImagePanel" "fieldName" "CPIconNeutral5Locked" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_5_neutral_locked" } "CPIconA" { "ControlName" "ImagePanel" "fieldName" "CPIconA" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_a" } "CPIconB" { "ControlName" "ImagePanel" "fieldName" "CPIconB" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_b" } "CPIconC" { "ControlName" "ImagePanel" "fieldName" "CPIconC" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_c" } "CPIconD" { "ControlName" "ImagePanel" "fieldName" "CPIconD" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_d" } "CPIconE" { "ControlName" "ImagePanel" "fieldName" "CPIconE" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_e" } //--------------------- // Payload Tracker //--------------------- "CartBlue" { "ControlName" "ImagePanel" "fieldName" "CartBlue" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_blue" } "CartPointBlu" { "ControlName" "ImagePanel" "fieldName" "CartPointBlu" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_point_blue" } "CartPointBluOpaque" { "ControlName" "ImagePanel" "fieldName" "CartPointBluOpaque" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_point_blue_opaque" } "CartPointNeutral" { "ControlName" "ImagePanel" "fieldName" "CartPointNeutral" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_point_neutral" } "CartPointNeutralOpaque" { "ControlName" "ImagePanel" "fieldName" "CartPointNeutralOpaque" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_point_neutral_opaque" } "CartPointRed" { "ControlName" "ImagePanel" "fieldName" "CartPointRed" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_point_red" } "CartPointRedOpaque" { "ControlName" "ImagePanel" "fieldName" "CartPointRedOpaque" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_point_red_opaque" } "CartRed" { "ControlName" "ImagePanel" "fieldName" "CartRed" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_red" } "CartTrackBlue" { "ControlName" "ImagePanel" "fieldName" "CartTrackBlue" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_track_blue" } "CartTrackBlueOpaque" { "ControlName" "ImagePanel" "fieldName" "CartTrackBlueOpaque" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_track_blue_opaque" } "CartTrackNeutralOpaque" { "ControlName" "ImagePanel" "fieldName" "CartTrackNeutralOpaque" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_track_neutral_opaque" } "CartTrackRed" { "ControlName" "ImagePanel" "fieldName" "CartTrackRed" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_track_red" } "CartTrackRedOpaque" { "ControlName" "ImagePanel" "fieldName" "CartTrackRedOpaque" "xpos" "9999" "visible" "1" "enabled" "1" "image" "../hud/cart_track_red_opaque" } //--------------------- // Main Menu //--------------------- "MainMenuButtonCasual" { "ControlName" "ImagePanel" "fieldName" "MainMenuButtonCasual" "xpos" "9999" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/main_menu_button_casual" } "MainMenuButtonCommunityServer" { "ControlName" "ImagePanel" "fieldName" "MainMenuButtonCommunityServer" "xpos" "9999" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/main_menu_button_community_server" } "MainMenuButtonCompetitive" { "ControlName" "ImagePanel" "fieldName" "MainMenuButtonCompetitive" "xpos" "9999" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/main_menu_button_competitive" } "MainMenuButtonMvM" { "ControlName" "ImagePanel" "fieldName" "MainMenuButtonMvM" "xpos" "9999" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/main_menu_button_mvm" } "MainMenuLogo" { "ControlName" "ImagePanel" "fieldName" "MainMenuLogo" "xpos" "9999" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/main_menu_logo" } //--------------------- // Misc //--------------------- "MenuThumbMissing" { "ControlName" "ImagePanel" "fieldName" "MenuThumbMissing" "xpos" "9999" "visible" "1" "enabled" "1" "image" "maps/menu_thumb_Missing" } "SelbyenPickup" { "ControlName" "ImagePanel" "fieldName" "SelbyenPickup" "xpos" "9999" "visible" "1" "enabled" "1" "image" "replay/thumbnails/selbyen_pickup" } } ================================================ FILE: resource/scheme/clientscheme_borders.res ================================================ Scheme { // //////////////////// BORDERS ////////////////////////////// // // describes all the border types Borders { WhiteBorder { "inset" "0 0 0 0" Left { "1" { "color" "TanLight" "offset" "0 0" } } Right { "1" { "color" "TanLight" "offset" "0 0" } } Top { "1" { "color" "TanLight" "offset" "0 0" } } Bottom { "1" { "color" "TanLight" "offset" "0 0" } } } WhiteBorderThick { "inset" "0 0 0 0" Left { "1" { "color" "TanLight" "offset" "0 0" } "2" { "color" "TanLight" "offset" "1 0" } "3" { "color" "TanLight" "offset" "2 0" } } Right { "1" { "color" "TanLight" "offset" "0 0" } "2" { "color" "TanLight" "offset" "1 0" } "3" { "color" "TanLight" "offset" "2 0" } } Top { "1" { "color" "TanLight" "offset" "0 0" } "2" { "color" "TanLight" "offset" "1 0" } "3" { "color" "TanLight" "offset" "2 0" } } Bottom { "1" { "color" "TanLight" "offset" "0 0" } "2" { "color" "TanLight" "offset" "1 0" } "3" { "color" "TanLight" "offset" "2 0" } } } DarkBorderThick { "inset" "0 0 0 0" Left { "1" { "color" "TanDark" "offset" "0 0" } "2" { "color" "TanDark" "offset" "1 0" } "3" { "color" "TanDark" "offset" "2 0" } } Right { "1" { "color" "TanDark" "offset" "0 0" } "2" { "color" "TanDark" "offset" "1 0" } "3" { "color" "TanDark" "offset" "2 0" } } Top { "1" { "color" "TanDark" "offset" "0 0" } "2" { "color" "TanDark" "offset" "1 0" } "3" { "color" "TanDark" "offset" "2 0" } } Bottom { "1" { "color" "TanDark" "offset" "0 0" } "2" { "color" "TanDark" "offset" "1 0" } "3" { "color" "TanDark" "offset" "2 0" } } } MenuBorder { "inset" "0 0 0 0" Left { "1" { "color" "Yellow" "offset" "0 0" } "2" { "color" "Yellow" "offset" "0 0" } "3" { "color" "Yellow" "offset" "0 0" } "4" { "color" "Yellow" "offset" "0 0" } "5" { "color" "Yellow" "offset" "0 0" } } } PanelBorder { "inset" "0 0 0 0" Left { "1" { "color" "Black" "offset" "0 0" } } Right { "1" { "color" "Black" "offset" "0 0" } } Top { "1" { "color" "Black" "offset" "0 0" } } Bottom { "1" { "color" "Black" "offset" "0 0" } } } DarkBlueTeamBorder { "inset" "0 0 0 0" Bottom { "1" { "color" "HUDBlueTeamDark" "offset" "0 0" } "2" { "color" "HUDBlueTeamDark" "offset" "0 0" } "3" { "color" "HUDBlueTeamDark" "offset" "0 0" } "4" { "color" "HUDBlueTeamDark" "offset" "0 0" } "5" { "color" "HUDBlueTeamDark" "offset" "0 0" } "6" { "color" "HUDBlueTeamDark" "offset" "0 0" } } } DarkRedTeamBorder { "inset" "0 0 0 0" Bottom { "1" { "color" "HUDRedTeamDark" "offset" "0 0" } "2" { "color" "HUDRedTeamDark" "offset" "0 0" } "3" { "color" "HUDRedTeamDark" "offset" "0 0" } "4" { "color" "HUDRedTeamDark" "offset" "0 0" } "5" { "color" "HUDRedTeamDark" "offset" "0 0" } "6" { "color" "HUDRedTeamDark" "offset" "0 0" } } } NoBorder { "inset" "0 0 0 0" Left { "1" { "color" "Blank" "offset" "0 0" } } Right { "1" { "color" "Blank" "offset" "0 0" } } Top { "1" { "color" "Blank" "offset" "0 0" } } Bottom { "1" { "color" "Blank" "offset" "0 0" } } } TeamMenuBorder { "inset" "0 0 0 0" Left { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "0 0" } } Right { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "0 0" } } Top { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "0 0" } } Bottom { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "0 0" } } } ScrollBarButtonBorder { "inset" "0 0 0 0" "backgroundtype" "2" } ScrollBarButtonDepressedBorder { "inset" "0 0 0 0" "backgroundtype" "2" } ButtonBorder { "inset" "0 0 0 0" "backgroundtype" "2" } ButtonKeyFocusBorder { "inset" "0 0 0 0" "backgroundtype" "2" } ButtonDepressedBorder { "inset" "0 0 0 0" "backgroundtype" "2" } ComboBoxBorder { "inset" "0 0 1 1" Left { "1" { "color" "Blank" "offset" "0 1" } } Right { "1" { "color" "Blank" "offset" "1 0" } } Top { "1" { "color" "Blank" "offset" "0 0" } } Bottom { "1" { "color" "Blank" "offset" "0 0" } } } DarkComboBoxBorder { "inset" "0 0 1 1" Left { "1" { "color" "TanDark" "offset" "0 1" } } Right { "1" { "color" "TanDark" "offset" "1 0" } } Top { "1" { "color" "TanDark" "offset" "0 0" } } Bottom { "1" { "color" "TanDark" "offset" "0 0" } } } SalePriceBorder { "inset" "0 0 0 0" Left { "1" { "color" "SaleGreen" "offset" "0 0" } } Right { "1" { "color" "SaleGreen" "offset" "0 0" } } Top { "1" { "color" "SaleGreen" "offset" "0 0" } } Bottom { "1" { "color" "SaleGreen" "offset" "0 0" } } } MainMenuSubButtonBorder { "inset" "0 0 0 0" Left { "1" { "color" "Blank" "offset" "0 0" } } Right { "1" { "color" "Blank" "offset" "0 0" } } } CrosshatchedBackground { "bordertype" "image" "backgroundtype" "2" "image" "loadout_header" "tiled" "1" } OutlinedGreyBox { "bordertype" "scalable_image" "backgroundtype" "2" "image" "loadout_round_rect_selected" "src_corner_height" "24" // pixels inside the image "src_corner_width" "24" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } OutlinedDullGreyBox { "bordertype" "scalable_image" "backgroundtype" "2" "image" "loadout_round_rect" "src_corner_height" "24" // pixels inside the image "src_corner_width" "24" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } TFThinLineBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "../hud/tournament_panel_brown" //"image" "../hud/color_panel_browner" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } TFFatLineBorderOpaque { "bordertype" "scalable_image" "backgroundtype" "2" "image" "../hud/color_panel_brown_opaque" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } TFFatLineBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "../hud/color_panel_brown" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } TFFatLineBorderRedBGOpaque { "bordertype" "scalable_image" "backgroundtype" "0" "image" "../hud/color_panel_red_opaque" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } TFFatLineBorderRedBGOpaque_Store { "bordertype" "scalable_image" "backgroundtype" "2" "image" "../hud/color_panel_red_opaque" "src_corner_height" "24" // pixels inside the image "src_corner_width" "24" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } TFFatLineBorderRedBG { "bordertype" "scalable_image" "backgroundtype" "0" "image" "../hud/color_panel_red" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } TFFatLineBorderRedBGMoreOpaque { "bordertype" "scalable_image" "backgroundtype" "0" "image" "../hud/color_panel_red_more_opaque" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional "draw_corner_height" "5" } TFFatLineBorderBlueBG { "bordertype" "scalable_image" "backgroundtype" "0" "image" "../hud/color_panel_blu" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } TFFatLineBorderBlueBGMoreOpaque { "bordertype" "scalable_image" "backgroundtype" "0" "image" "../hud/color_panel_blu_more_opaque" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional "draw_corner_height" "5" } TFFatLineBorderBlueBGOpaque { "bordertype" "scalable_image" "backgroundtype" "0" "image" "../hud/color_panel_blu_opaque" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } TFFatLineBorderClearBG { "bordertype" "scalable_image" "backgroundtype" "2" "image" "../hud/color_panel_clear" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ToolTipBorder { "inset" "0 0 0 0" Left { "1" { "color" "Blank" "offset" "0 0" } } Right { "1" { "color" "Blank" "offset" "0 0" } } Top { "1" { "color" "Blank" "offset" "0 0" } } Bottom { "1" { "color" "Blank" "offset" "0 0" } } } OptionsCategoryBorder { "inset" "0 0 0 0" Bottom { "1" { "color" "TanLight" "offset" "0 0" } } } GrayDialogBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "loadout_rect" "src_corner_height" "24" // pixels inside the image "src_corner_width" "24" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StoreFreeTrialBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "loadout_rect_red" "src_corner_height" "24" // pixels inside the image "src_corner_width" "24" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } EconItemBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "backpack_rect_mouseover_color" "color" "Grey" "src_corner_height" "24" // pixels inside the image "src_corner_width" "24" "draw_corner_width" "2" // screen size of the corners ( and sides ), proportional "draw_corner_height" "2" } Econ.Button.Border.Default { "inset" "0 0 0 0" "backgroundtype" "2" } Econ.Button.Border.Armed { "inset" "0 0 0 0" "backgroundtype" "2" } LoadoutItemMouseOverBorder { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "60 54 53 255" "offset" "1 1" } "3" { "color" "60 54 53 255" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "60 54 53 255" "offset" "1 1" } "3" { "color" "60 54 53 255" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "60 54 53 255" "offset" "1 1" } "3" { "color" "60 54 53 255" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "60 54 53 255" "offset" "1 1" } "3" { "color" "60 54 53 255" "offset" "1 1" } } } LoadoutItemPopupBorder { "bordertype" "scalable_image" "backgroundtype" "2" "color" "DarkGrey" "image" "backpack_rect_mouseover_color" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } BackpackItemGrayedOut { "inset" "0 0 0 0" Left { "1" { "color" "DarkGrey" "offset" "0 0" } } Right { "1" { "color" "DarkGrey" "offset" "0 0" } } Top { "1" { "color" "DarkGrey" "offset" "0 0" } } Bottom { "1" { "color" "DarkGrey" "offset" "0 0" } } } BackpackItemGrayedOut_Selected { "inset" "0 0 0 0" Left { "1" { "color" "Transparent" "offset" "0 0" } } Right { "1" { "color" "Transparent" "offset" "0 0" } } Top { "1" { "color" "Transparent" "offset" "0 0" } } Bottom { "1" { "color" "Transparent" "offset" "0 0" } } } // Standard ------------------------------------------------------------------------------------------------ BackpackItemBorder { "inset" "0 0 0 0" Left { "1" { "color" "Grey" "offset" "0 0" } } Right { "1" { "color" "Grey" "offset" "0 0" } } Top { "1" { "color" "Grey" "offset" "0 0" } } Bottom { "1" { "color" "Grey" "offset" "0 0" } } } BackpackItemMouseOverBorder { "inset" "0 0 0 0" Left { "1" { "color" "60 54 53 255" "offset" "0 0" } } Right { "1" { "color" "60 54 53 255" "offset" "0 0" } } Top { "1" { "color" "60 54 53 255" "offset" "0 0" } } Bottom { "1" { "color" "60 54 53 255" "offset" "0 0" } } } BackpackItemSelectedBorder { "inset" "0 0 0 0" Left { "1" { "color" "TanLight" "offset" "0 0" } "2" { "color" "TanLight" "offset" "2 2" } "3" { "color" "TanLight" "offset" "3 3" } } Right { "1" { "color" "TanLight" "offset" "0 0" } "2" { "color" "TanLight" "offset" "1 1" } "3" { "color" "TanLight" "offset" "2 2" } } Top { "1" { "color" "TanLight" "offset" "0 0" } "2" { "color" "TanLight" "offset" "1 2" } "3" { "color" "TanLight" "offset" "2 3" } } Bottom { "1" { "color" "TanLight" "offset" "0 0" } "2" { "color" "TanLight" "offset" "1 2" } "3" { "color" "TanLight" "offset" "2 3" } } } BackpackItemGreyedOutBorder { "inset" "0 0 0 0" Left { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "2 2" } } Right { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "1 1" } } Top { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "1 2" } } Bottom { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "1 2" } } } BackpackItemGreyedOutSelectedBorder { "inset" "0 0 0 0" Left { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "2 2" } "3" { "color" "Black" "offset" "3 3" } } Right { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "1 1" } "3" { "color" "Black" "offset" "2 2" } } Top { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "1 2" } "3" { "color" "Black" "offset" "2 3" } } Bottom { "1" { "color" "Black" "offset" "0 0" } "2" { "color" "Black" "offset" "1 2" } "3" { "color" "Black" "offset" "2 3" } } } // Unique ------------------------------------------------------------------------------------------------ BackpackItemBorder_Unique { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorUnique" "offset" "1 1" } "3" { "color" "DimmQualityColorUnique" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorUnique" "offset" "1 1" } "3" { "color" "DimmQualityColorUnique" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorUnique" "offset" "1 1" } "3" { "color" "DimmQualityColorUnique" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorUnique" "offset" "1 1" } "3" { "color" "DimmQualityColorUnique" "offset" "1 1" } } } BackpackItemMouseOverBorder_Unique { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique" "offset" "1 1" } "3" { "color" "QualityColorUnique" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique" "offset" "1 1" } "3" { "color" "QualityColorUnique" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique" "offset" "1 1" } "3" { "color" "QualityColorUnique" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique" "offset" "1 1" } "3" { "color" "QualityColorUnique" "offset" "1 1" } } } BackpackItemGreyedOutBorder_Unique { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_Unique { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorUnique_GreyedOut" "offset" "1 1" } } } // Rarity1 ------------------------------------------------------------------------------------------------ BackpackItemBorder_1 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity1" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity1" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity1" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity1" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity1" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity1" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity1" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity1" "offset" "1 1" } } } BackpackItemMouseOverBorder_1 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1" "offset" "1 1" } "3" { "color" "QualityColorrarity1" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1" "offset" "1 1" } "3" { "color" "QualityColorrarity1" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1" "offset" "1 1" } "3" { "color" "QualityColorrarity1" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1" "offset" "1 1" } "3" { "color" "QualityColorrarity1" "offset" "1 1" } } } BackpackItemGreyedOutBorder_1 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_1 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity1_GreyedOut" "offset" "1 1" } } } // Rarity2 ------------------------------------------------------------------------------------------------ BackpackItemBorder_2 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity2" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity2" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity2" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity2" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity2" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity2" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity2" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity2" "offset" "1 1" } } } BackpackItemMouseOverBorder_2 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2" "offset" "1 1" } "3" { "color" "QualityColorrarity2" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2" "offset" "1 1" } "3" { "color" "QualityColorrarity2" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2" "offset" "1 1" } "3" { "color" "QualityColorrarity2" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2" "offset" "1 1" } "3" { "color" "QualityColorrarity2" "offset" "1 1" } } } BackpackItemGreyedOutBorder_2 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_2 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity2_GreyedOut" "offset" "1 1" } } } // Rarity3 ------------------------------------------------------------------------------------------------ BackpackItemBorder_3 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity3" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity3" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity3" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity3" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity3" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity3" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity3" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity3" "offset" "1 1" } } } BackpackItemMouseOverBorder_3 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3" "offset" "1 1" } "3" { "color" "QualityColorrarity3" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3" "offset" "1 1" } "3" { "color" "QualityColorrarity3" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3" "offset" "1 1" } "3" { "color" "QualityColorrarity3" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3" "offset" "1 1" } "3" { "color" "QualityColorrarity3" "offset" "1 1" } } } BackpackItemGreyedOutBorder_3 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_3 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity3_GreyedOut" "offset" "1 1" } } } // Rarity4 ------------------------------------------------------------------------------------------------ BackpackItemBorder_4 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity4" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity4" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity4" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity4" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity4" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity4" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorrarity4" "offset" "1 1" } "3" { "color" "DimmQualityColorrarity4" "offset" "1 1" } } } BackpackItemMouseOverBorder_4 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4" "offset" "1 1" } "3" { "color" "QualityColorrarity4" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4" "offset" "1 1" } "3" { "color" "QualityColorrarity4" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4" "offset" "1 1" } "3" { "color" "QualityColorrarity4" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4" "offset" "1 1" } "3" { "color" "QualityColorrarity4" "offset" "1 1" } } } BackpackItemGreyedOutBorder_4 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_4 { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorrarity4_GreyedOut" "offset" "1 1" } } } // Haunted ------------------------------------------------------------------------------------------------ BackpackItemBorder_Haunted { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorHaunted" "offset" "1 1" } "3" { "color" "DimmQualityColorHaunted" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorHaunted" "offset" "1 1" } "3" { "color" "DimmQualityColorHaunted" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorHaunted" "offset" "1 1" } "3" { "color" "DimmQualityColorHaunted" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorHaunted" "offset" "1 1" } "3" { "color" "DimmQualityColorHaunted" "offset" "1 1" } } } BackpackItemMouseOverBorder_Haunted { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted" "offset" "1 1" } "3" { "color" "QualityColorHaunted" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted" "offset" "1 1" } "3" { "color" "QualityColorHaunted" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted" "offset" "1 1" } "3" { "color" "QualityColorHaunted" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted" "offset" "1 1" } "3" { "color" "QualityColorHaunted" "offset" "1 1" } } } BackpackItemGreyedOutBorder_Haunted { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_Haunted { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorHaunted_GreyedOut" "offset" "1 1" } } } // Vintage ------------------------------------------------------------------------------------------------ BackpackItemBorder_Vintage { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorVintage" "offset" "1 1" } "3" { "color" "DimmQualityColorVintage" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorVintage" "offset" "1 1" } "3" { "color" "DimmQualityColorVintage" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorVintage" "offset" "1 1" } "3" { "color" "DimmQualityColorVintage" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorVintage" "offset" "1 1" } "3" { "color" "DimmQualityColorVintage" "offset" "1 1" } } } BackpackItemMouseOverBorder_Vintage { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage" "offset" "1 1" } "3" { "color" "QualityColorVintage" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage" "offset" "1 1" } "3" { "color" "QualityColorVintage" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage" "offset" "1 1" } "3" { "color" "QualityColorVintage" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage" "offset" "1 1" } "3" { "color" "QualityColorVintage" "offset" "1 1" } } } BackpackItemGreyedOutBorder_Vintage { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_Vintage { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorVintage_GreyedOut" "offset" "1 1" } } } // Community ------------------------------------------------------------------------------------------------ BackpackItemBorder_Community { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCommunity" "offset" "1 1" } "3" { "color" "DimmQualityColorCommunity" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCommunity" "offset" "1 1" } "3" { "color" "DimmQualityColorCommunity" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCommunity" "offset" "1 1" } "3" { "color" "DimmQualityColorCommunity" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCommunity" "offset" "1 1" } "3" { "color" "DimmQualityColorCommunity" "offset" "1 1" } } } BackpackItemMouseOverBorder_Community { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity" "offset" "1 1" } "3" { "color" "QualityColorCommunity" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity" "offset" "1 1" } "3" { "color" "QualityColorCommunity" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity" "offset" "1 1" } "3" { "color" "QualityColorCommunity" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity" "offset" "1 1" } "3" { "color" "QualityColorCommunity" "offset" "1 1" } } } BackpackItemGreyedOutBorder_Community { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_Community { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCommunity_GreyedOut" "offset" "1 1" } } } // Developer ------------------------------------------------------------------------------------------------ BackpackItemBorder_Developer { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorDeveloper" "offset" "1 1" } "3" { "color" "DimmQualityColorDeveloper" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorDeveloper" "offset" "1 1" } "3" { "color" "DimmQualityColorDeveloper" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorDeveloper" "offset" "1 1" } "3" { "color" "DimmQualityColorDeveloper" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorDeveloper" "offset" "1 1" } "3" { "color" "DimmQualityColorDeveloper" "offset" "1 1" } } } BackpackItemMouseOverBorder_Developer { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper" "offset" "1 1" } "3" { "color" "QualityColorDeveloper" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper" "offset" "1 1" } "3" { "color" "QualityColorDeveloper" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper" "offset" "1 1" } "3" { "color" "QualityColorDeveloper" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper" "offset" "1 1" } "3" { "color" "QualityColorDeveloper" "offset" "1 1" } } } BackpackItemGreyedOutBorder_Developer { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_Developer { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorDeveloper_GreyedOut" "offset" "1 1" } } } // SelfMade ------------------------------------------------------------------------------------------------ BackpackItemBorder_SelfMade { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorSelfMade" "offset" "1 1" } "3" { "color" "DimmQualityColorSelfMade" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorSelfMade" "offset" "1 1" } "3" { "color" "DimmQualityColorSelfMade" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorSelfMade" "offset" "1 1" } "3" { "color" "DimmQualityColorSelfMade" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorSelfMade" "offset" "1 1" } "3" { "color" "DimmQualityColorSelfMade" "offset" "1 1" } } } BackpackItemMouseOverBorder_SelfMade { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade" "offset" "1 1" } "3" { "color" "QualityColorSelfMade" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade" "offset" "1 1" } "3" { "color" "QualityColorSelfMade" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade" "offset" "1 1" } "3" { "color" "QualityColorSelfMade" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade" "offset" "1 1" } "3" { "color" "QualityColorSelfMade" "offset" "1 1" } } } BackpackItemGreyedOutBorder_SelfMade { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_SelfMade { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorSelfMade_GreyedOut" "offset" "1 1" } } } // Customized ------------------------------------------------------------------------------------------------ BackpackItemBorder_Customized { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCustomized" "offset" "1 1" } "3" { "color" "DimmQualityColorCustomized" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCustomized" "offset" "1 1" } "3" { "color" "DimmQualityColorCustomized" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCustomized" "offset" "1 1" } "3" { "color" "DimmQualityColorCustomized" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCustomized" "offset" "1 1" } "3" { "color" "DimmQualityColorCustomized" "offset" "1 1" } } } BackpackItemMouseOverBorder_Customized { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized" "offset" "1 1" } "3" { "color" "QualityColorCustomized" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized" "offset" "1 1" } "3" { "color" "QualityColorCustomized" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized" "offset" "1 1" } "3" { "color" "QualityColorCustomized" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized" "offset" "1 1" } "3" { "color" "QualityColorCustomized" "offset" "1 1" } } } BackpackItemGreyedOutBorder_Customized { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_Customized { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCustomized_GreyedOut" "offset" "1 1" } } } // Strange ------------------------------------------------------------------------------------------------ BackpackItemBorder_Strange { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorStrange" "offset" "1 1" } "3" { "color" "DimmQualityColorStrange" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorStrange" "offset" "1 1" } "3" { "color" "DimmQualityColorStrange" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorStrange" "offset" "1 1" } "3" { "color" "DimmQualityColorStrange" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorStrange" "offset" "1 1" } "3" { "color" "DimmQualityColorStrange" "offset" "1 1" } } } BackpackItemMouseOverBorder_Strange { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange" "offset" "1 1" } "3" { "color" "QualityColorStrange" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange" "offset" "1 1" } "3" { "color" "QualityColorStrange" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange" "offset" "1 1" } "3" { "color" "QualityColorStrange" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange" "offset" "1 1" } "3" { "color" "QualityColorStrange" "offset" "1 1" } } } BackpackItemGreyedOutBorder_Strange { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_Strange { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorStrange_GreyedOut" "offset" "1 1" } } } // Completed ------------------------------------------------------------------------------------------------ BackpackItemBorder_Completed { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCompleted" "offset" "1 1" } "3" { "color" "DimmQualityColorCompleted" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCompleted" "offset" "1 1" } "3" { "color" "DimmQualityColorCompleted" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCompleted" "offset" "1 1" } "3" { "color" "DimmQualityColorCompleted" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCompleted" "offset" "1 1" } "3" { "color" "DimmQualityColorCompleted" "offset" "1 1" } } } BackpackItemMouseOverBorder_Completed { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted" "offset" "1 1" } "3" { "color" "QualityColorCompleted" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted" "offset" "1 1" } "3" { "color" "QualityColorCompleted" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted" "offset" "1 1" } "3" { "color" "QualityColorCompleted" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted" "offset" "1 1" } "3" { "color" "QualityColorCompleted" "offset" "1 1" } } } BackpackItemGreyedOutBorder_Completed { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_Completed { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCompleted_GreyedOut" "offset" "1 1" } } } // PaintkitWeapon ------------------------------------------------------------------------------------------------ BackpackItemBorder_PaintkitWeapon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorPaintkitWeapon" "offset" "1 1" } "3" { "color" "DimmQualityColorPaintkitWeapon" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorPaintkitWeapon" "offset" "1 1" } "3" { "color" "DimmQualityColorPaintkitWeapon" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorPaintkitWeapon" "offset" "1 1" } "3" { "color" "DimmQualityColorPaintkitWeapon" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorPaintkitWeapon" "offset" "1 1" } "3" { "color" "DimmQualityColorPaintkitWeapon" "offset" "1 1" } } } BackpackItemMouseOverBorder_PaintkitWeapon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon" "offset" "1 1" } } } BackpackItemGreyedOutBorder_PaintkitWeapon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_PaintkitWeapon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorPaintkitWeapon_GreyedOut" "offset" "1 1" } } } // Collector's ------------------------------------------------------------------------------------------------ BackpackItemBorder_Collectors { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCollectors" "offset" "1 1" } "3" { "color" "DimmQualityColorCollectors" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCollectors" "offset" "1 1" } "3" { "color" "DimmQualityColorCollectors" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCollectors" "offset" "1 1" } "3" { "color" "DimmQualityColorCollectors" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmQualityColorCollectors" "offset" "1 1" } "3" { "color" "DimmQualityColorCollectors" "offset" "1 1" } } } BackpackItemMouseOverBorder_Collectors { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors" "offset" "1 1" } "3" { "color" "QualityColorCollectors" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors" "offset" "1 1" } "3" { "color" "QualityColorCollectors" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors" "offset" "1 1" } "3" { "color" "QualityColorCollectors" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors" "offset" "1 1" } "3" { "color" "QualityColorCollectors" "offset" "1 1" } } } BackpackItemGreyedOutBorder_Collectors { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_Collectors { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } "3" { "color" "QualityColorCollectors_GreyedOut" "offset" "1 1" } } } // Rarity Default BackpackItemBorder_RarityDefault { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityDefault" "offset" "1 1" } "3" { "color" "DimmItemRarityDefault" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityDefault" "offset" "1 1" } "3" { "color" "DimmItemRarityDefault" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityDefault" "offset" "1 1" } "3" { "color" "DimmItemRarityDefault" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityDefault" "offset" "1 1" } "3" { "color" "DimmItemRarityDefault" "offset" "1 1" } } } BackpackItemMouseOverBorder_RarityDefault { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault" "offset" "1 1" } "3" { "color" "ItemRarityDefault" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault" "offset" "1 1" } "3" { "color" "ItemRarityDefault" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault" "offset" "1 1" } "3" { "color" "ItemRarityDefault" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault" "offset" "1 1" } "3" { "color" "ItemRarityDefault" "offset" "1 1" } } } BackpackItemGreyedOutBorder_RarityDefault { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_RarityDefault { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityDefault_GreyedOut" "offset" "1 1" } } } BackpackItemBorder_RarityCommon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityCommon" "offset" "1 1" } "3" { "color" "DimmItemRarityCommon" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityCommon" "offset" "1 1" } "3" { "color" "DimmItemRarityCommon" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityCommon" "offset" "1 1" } "3" { "color" "DimmItemRarityCommon" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityCommon" "offset" "1 1" } "3" { "color" "DimmItemRarityCommon" "offset" "1 1" } } } BackpackItemMouseOverBorder_RarityCommon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon" "offset" "1 1" } "3" { "color" "ItemRarityCommon" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon" "offset" "1 1" } "3" { "color" "ItemRarityCommon" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon" "offset" "1 1" } "3" { "color" "ItemRarityCommon" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon" "offset" "1 1" } "3" { "color" "ItemRarityCommon" "offset" "1 1" } } } BackpackItemGreyedOutBorder_RarityCommon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_RarityCommon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityCommon_GreyedOut" "offset" "1 1" } } } BackpackItemBorder_RarityUncommon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityUncommon" "offset" "1 1" } "3" { "color" "DimmItemRarityUncommon" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityUncommon" "offset" "1 1" } "3" { "color" "DimmItemRarityUncommon" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityUncommon" "offset" "1 1" } "3" { "color" "DimmItemRarityUncommon" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityUncommon" "offset" "1 1" } "3" { "color" "DimmItemRarityUncommon" "offset" "1 1" } } } BackpackItemMouseOverBorder_RarityUncommon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon" "offset" "1 1" } "3" { "color" "ItemRarityUncommon" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon" "offset" "1 1" } "3" { "color" "ItemRarityUncommon" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon" "offset" "1 1" } "3" { "color" "ItemRarityUncommon" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon" "offset" "1 1" } "3" { "color" "ItemRarityUncommon" "offset" "1 1" } } } BackpackItemGreyedOutBorder_RarityUncommon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_RarityUncommon { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityUncommon_GreyedOut" "offset" "1 1" } } } BackpackItemBorder_RarityRare { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityRare" "offset" "1 1" } "3" { "color" "DimmItemRarityRare" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityRare" "offset" "1 1" } "3" { "color" "DimmItemRarityRare" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityRare" "offset" "1 1" } "3" { "color" "DimmItemRarityRare" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityRare" "offset" "1 1" } "3" { "color" "DimmItemRarityRare" "offset" "1 1" } } } BackpackItemMouseOverBorder_RarityRare { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare" "offset" "1 1" } "3" { "color" "ItemRarityRare" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare" "offset" "1 1" } "3" { "color" "ItemRarityRare" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare" "offset" "1 1" } "3" { "color" "ItemRarityRare" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare" "offset" "1 1" } "3" { "color" "ItemRarityRare" "offset" "1 1" } } } BackpackItemGreyedOutBorder_RarityRare { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_RarityRare { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityRare_GreyedOut" "offset" "1 1" } } } BackpackItemBorder_RarityMythical { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityMythical" "offset" "1 1" } "3" { "color" "DimmItemRarityMythical" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityMythical" "offset" "1 1" } "3" { "color" "DimmItemRarityMythical" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityMythical" "offset" "1 1" } "3" { "color" "DimmItemRarityMythical" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityMythical" "offset" "1 1" } "3" { "color" "DimmItemRarityMythical" "offset" "1 1" } } } BackpackItemMouseOverBorder_RarityMythical { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical" "offset" "1 1" } "3" { "color" "ItemRarityMythical" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical" "offset" "1 1" } "3" { "color" "ItemRarityMythical" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical" "offset" "1 1" } "3" { "color" "ItemRarityMythical" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical" "offset" "1 1" } "3" { "color" "ItemRarityMythical" "offset" "1 1" } } } BackpackItemGreyedOutBorder_RarityMythical { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_RarityMythical { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityMythical_GreyedOut" "offset" "1 1" } } } // *************************************************** BackpackItemBorder_RarityLegendary { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityLegendary" "offset" "1 1" } "3" { "color" "DimmItemRarityLegendary" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityLegendary" "offset" "1 1" } "3" { "color" "DimmItemRarityLegendary" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityLegendary" "offset" "1 1" } "3" { "color" "DimmItemRarityLegendary" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityLegendary" "offset" "1 1" } "3" { "color" "DimmItemRarityLegendary" "offset" "1 1" } } } BackpackItemMouseOverBorder_RarityLegendary { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary" "offset" "1 1" } "3" { "color" "ItemRarityLegendary" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary" "offset" "1 1" } "3" { "color" "ItemRarityLegendary" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary" "offset" "1 1" } "3" { "color" "ItemRarityLegendary" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary" "offset" "1 1" } "3" { "color" "ItemRarityLegendary" "offset" "1 1" } } } BackpackItemGreyedOutBorder_RarityLegendary { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_RarityLegendary { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityLegendary_GreyedOut" "offset" "1 1" } } } //********************************************* BackpackItemBorder_RarityAncient { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityAncient" "offset" "1 1" } "3" { "color" "DimmItemRarityAncient" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityAncient" "offset" "1 1" } "3" { "color" "DimmItemRarityAncient" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityAncient" "offset" "1 1" } "3" { "color" "DimmItemRarityAncient" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "DimmItemRarityAncient" "offset" "1 1" } "3" { "color" "DimmItemRarityAncient" "offset" "1 1" } } } BackpackItemMouseOverBorder_RarityAncient { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient" "offset" "1 1" } "3" { "color" "ItemRarityAncient" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient" "offset" "1 1" } "3" { "color" "ItemRarityAncient" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient" "offset" "1 1" } "3" { "color" "ItemRarityAncient" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient" "offset" "1 1" } "3" { "color" "ItemRarityAncient" "offset" "1 1" } } } BackpackItemGreyedOutBorder_RarityAncient { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } } } BackpackItemGreyedOutSelectedBorder_RarityAncient { "inset" "0 0 0 0" Left { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } } Right { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } } Top { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } } Bottom { "1" { "color" "0 0 0 0" "offset" "1 1" } "2" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } "3" { "color" "ItemRarityAncient_GreyedOut" "offset" "1 1" } } } StoreItemBorder { "inset" "0 0 0 0" "backgroundtype" "2" Left { "1" { "color" "Blank" "offset" "0 0" } } Right { "1" { "color" "Blank" "offset" "0 0" } } Top { "1" { "color" "Blank" "offset" "0 0" } } Bottom { "1" { "color" "Blank" "offset" "0 0" } } } StoreItemBorderMouseOver { "inset" "0 0 0 0" "backgroundtype" "2" Left { "1" { "color" "Blank" "offset" "0 0" } } Right { "1" { "color" "Blank" "offset" "0 0" } } Top { "1" { "color" "Blank" "offset" "0 0" } } Bottom { "1" { "color" "Blank" "offset" "0 0" } } } StoreItemBorderSelected { "inset" "0 0 0 0" "backgroundtype" "2" Left { "1" { "color" "Blank" "offset" "0 0" } } Right { "1" { "color" "Blank" "offset" "0 0" } } Top { "1" { "color" "Blank" "offset" "0 0" } } Bottom { "1" { "color" "Blank" "offset" "0 0" } } } NotificationDefault { "bordertype" "scalable_image" "backgroundtype" "2" "image" "alert_rect" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } NotificationHighPriority { "bordertype" "scalable_image" "backgroundtype" "2" "image" "button_holder_central" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuButtonGlow { "bordertype" "scalable_image" "backgroundtype" "2" "color" "178 83 22 255" "image" "button_glow" "src_corner_height" "4" // pixels inside the image "src_corner_width" "4" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuButtonGlow2 { "bordertype" "scalable_image" "backgroundtype" "2" "color" "238 103 17 255" "image" "button_glow" "src_corner_height" "4" // pixels inside the image "src_corner_width" "4" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuButtonDepressed { "bordertype" "scalable_image" "backgroundtype" "2" "image" "button_central_depressed" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuButtonDepressedArmed { "bordertype" "scalable_image" "backgroundtype" "2" "image" "button_central_depressed_armed" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuButtonDefault { "bordertype" "scalable_image" "backgroundtype" "2" "image" "button_central" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuButtonArmed { "bordertype" "scalable_image" "backgroundtype" "2" "image" "button_central_hover" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuButtonDisabled { "bordertype" "scalable_image" "backgroundtype" "2" "image" "button_central_disabled" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuMiniButtonDefault { "bordertype" "scalable_image" "backgroundtype" "2" "image" "button_central_adv" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuMiniButtonArmed { "bordertype" "scalable_image" "backgroundtype" "2" "image" "button_central_adv_hover" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuBGBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "replay/thumbnails/mmbg" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuBGBorderAlpha { "bordertype" "scalable_image" "backgroundtype" "2" "image" "button_holder_central_alpha" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuBlogTabBG { "bordertype" "scalable_image" "backgroundtype" "2" "image" "blog_tabby" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } MainMenuHighlightBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "callout_bubble" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } TrainingResultsBG { "bordertype" "scalable_image" "backgroundtype" "2" "image" "button_holder_central" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StoreInnerShadowBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "store/innershadow_border" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StoreNewBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "new_corner" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StoreHighlightedBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "featured_corner" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StoreHighlightedBackgroundBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "store/store_featured_item_bg01" "src_corner_height" "80" // pixels inside the image "src_corner_width" "30" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StoreDiscountBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "sale_corner" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StorePreviewBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "store/store_inspector_bg_small" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StoreAddToCart { "bordertype" "scalable_image" "backgroundtype" "2" "image" "store/store_add_to_cart" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StorePreviewTabSelected { "bordertype" "scalable_image" "backgroundtype" "2" "image" "store/store_tab_selected" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StorePreviewTabUnselected { "bordertype" "scalable_image" "backgroundtype" "2" "image" "store/store_tab_unselected" "src_corner_height" "32" // pixels inside the image "src_corner_width" "32" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } StorePromotion { "bordertype" "scalable_image" "backgroundtype" "2" "image" "store/store_coupon_border" "src_corner_height" "16" // pixels inside the image "src_corner_width" "16" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ArmoryScrollbarBox { "bordertype" "scalable_image" "backgroundtype" "2" "image" "scroll_button_off" "src_corner_height" "16" // pixels inside the image "src_corner_width" "16" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ArmoryScrollbarWell { "bordertype" "scalable_image" "backgroundtype" "2" "image" "scroll_well" "src_corner_height" "16" // pixels inside the image "src_corner_width" "16" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } QuickplayBorder { "inset" "0 0 0 0" Left { "1" { "color" "DarkGrey" "offset" "0 0" } } Right { "1" { "color" "DarkGrey" "offset" "0 0" } } Top { "1" { "color" "DarkGrey" "offset" "0 0" } } Bottom { "1" { "color" "DarkGrey" "offset" "0 0" } } } SortCategoryBorder { "inset" "0 0 1 1" Right { "1" { "color" "TanDark" "offset" "1 0" } } } SteamWorkshopBorder { "inset" "0 0 0 0" Left { "1" { "color" "Blank" "offset" "0 0" } } Right { "1" { "color" "Blank" "offset" "0 0" } } Top { "1" { "color" "Blank" "offset" "0 0" } } Bottom { "1" { "color" "Blank" "offset" "0 0" } } } ReplayFatLineBorderRedBGOpaque { "bordertype" "scalable_image" "backgroundtype" "2" "image" "replay/fatlineborder_red" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ReplayFatLineBorderOpaque { "bordertype" "scalable_image" "backgroundtype" "2" "image" "replay/fatlineborder" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ReplayGrayDialogBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "replay/graydialogborder" "src_corner_height" "24" // pixels inside the image "src_corner_width" "24" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ReplayOutlinedGreyBox { "bordertype" "scalable_image" "backgroundtype" "2" "image" "replay/outlinedgreybox" "src_corner_height" "24" // pixels inside the image "src_corner_width" "24" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ReplayOutlinedDullGreyBox { "bordertype" "scalable_image" "backgroundtype" "2" "image" "replay/dullgreybox" "src_corner_height" "24" // pixels inside the image "src_corner_width" "24" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ReplayThinLineBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "../hud/tournament_panel_brown" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ReplayDefaultBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "replay/panel_scalable_default" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ReplayHighlightBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "replay/panel_scalable_highlight" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ReplayBalloonBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "replay/panel_scalable_balloon" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } ReplayBrowser.ScrollBar.SliderButton.Border { } QuestStatusBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "replay/panel_scalable_transparent" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "7" // screen size of the corners ( and sides ), proportional "draw_corner_height" "7" } RedWithThinBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "../hud/panel_scalable_red" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "7" // screen size of the corners ( and sides ), proportional "draw_corner_height" "7" } BlueWithThinBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "../hud/panel_scalable_blue" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "7" // screen size of the corners ( and sides ), proportional "draw_corner_height" "7" } InnerShadowBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "inner_shadow_border" "src_corner_height" "5" // pixels inside the image "src_corner_width" "5" "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional "draw_corner_height" "5" } InnerShadowBorderThin { "bordertype" "scalable_image" "backgroundtype" "2" "image" "inner_shadow_border" "src_corner_height" "5" // pixels inside the image "src_corner_width" "5" "draw_corner_width" "4" // screen size of the corners ( and sides ), proportional "draw_corner_height" "4" } OuterShadowBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "outer_shadow_border" "src_corner_height" "8" // pixels inside the image "src_corner_width" "8" "draw_corner_width" "8" // screen size of the corners ( and sides ), proportional "draw_corner_height" "8" } OuterShadowBorderThin { "bordertype" "scalable_image" "backgroundtype" "2" "image" "outer_shadow_border" "src_corner_height" "8" // pixels inside the image "src_corner_width" "8" "draw_corner_width" "4" // screen size of the corners ( and sides ), proportional "draw_corner_height" "4" } CYOAScreenBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "cyoa/cyoa_map_screen_border" "src_corner_height" "63" // pixels inside the image "src_corner_width" "63" "draw_corner_width" "26" // screen size of the corners ( and sides ), proportional "draw_corner_height" "26" } CYOANodeViewBorder { "bordertype" "scalable_image" "backgroundtype" "2" "image" "cyoa/node_view_border" "src_corner_height" "127" // pixels inside the image "src_corner_width" "127" "draw_corner_width" "24" // screen size of the corners ( and sides ), proportional "draw_corner_height" "24" } CYOANodeViewBorder_Active { "bordertype" "scalable_image" "backgroundtype" "2" "image" "cyoa/node_view_border_active" "src_corner_height" "127" // pixels inside the image "src_corner_width" "127" "draw_corner_width" "24" // screen size of the corners ( and sides ), proportional "draw_corner_height" "24" } CYOANodeViewBorder_Inactive { "bordertype" "scalable_image" "backgroundtype" "2" "image" "cyoa/node_view_border_inactive" "src_corner_height" "127" // pixels inside the image "src_corner_width" "127" "draw_corner_width" "24" // screen size of the corners ( and sides ), proportional "draw_corner_height" "24" } CYOANodeViewBorder_TurnIn { "bordertype" "scalable_image" "backgroundtype" "2" "image" "cyoa/node_view_border_turnin" "src_corner_height" "127" // pixels inside the image "src_corner_width" "127" "draw_corner_width" "24" // screen size of the corners ( and sides ), proportional "draw_corner_height" "24" } CYOAPopupBorder { "inset" "0 0 1 1" Left { "1" { "color" "QuestMap_ActiveOrange" "offset" "0 1" } "2" { "color" "QuestMap_ActiveOrange" "offset" "0 1" } } Right { "1" { "color" "QuestMap_ActiveOrange" "offset" "1 0" } "2" { "color" "QuestMap_ActiveOrange" "offset" "1 0" } } Top { "1" { "color" "QuestMap_ActiveOrange" "offset" "0 0" } "2" { "color" "QuestMap_ActiveOrange" "offset" "0 0" } } Bottom { "1" { "color" "QuestMap_ActiveOrange" "offset" "0 0" } "2" { "color" "QuestMap_ActiveOrange" "offset" "0 0" } } } FriendHighlightBorder { "inset" "0 0 1 1" Left { "1" { "color" "CreditsGreen" "offset" "0 1" } } Right { "1" { "color" "CreditsGreen" "offset" "1 0" } } Top { "1" { "color" "CreditsGreen" "offset" "0 0" } } Bottom { "1" { "color" "CreditsGreen" "offset" "0 0" } } } FriendHighlightBorderThick { "inset" "0 0 1 1" Left { "1" { "color" "CreditsGreen" "offset" "0 1" } "2" { "color" "CreditsGreen" "offset" "0 1" } } Right { "1" { "color" "CreditsGreen" "offset" "1 0" } "2" { "color" "CreditsGreen" "offset" "1 0" } } Top { "1" { "color" "CreditsGreen" "offset" "0 0" } "2" { "color" "CreditsGreen" "offset" "0 0" } } Bottom { "1" { "color" "CreditsGreen" "offset" "0 0" } "2" { "color" "CreditsGreen" "offset" "0 0" } } } } } ================================================ FILE: resource/scheme/clientscheme_colors.res ================================================ Scheme { //////////////////////// COLORS /////////////////////////// Colors { //--------------------------------------------- // HUD COLORS //--------------------------------------------- "Yellow" "92 122 90 255" "DullWhite" "132 132 132 255" "Grey" "51 47 46 255" "DarkGrey" "27 27 27 255" "DarkerGrey" "22 22 22 255" "NeonGreen" "0 225 0 255" "NeonRed" "200 10 20 255" "TextColor" "117 107 94 255" "NeutralWhite" "235 226 202 255" "BGBlack" "16 16 16 135" "ComfigGreen" "67 147 136 255" //--------------------------------------------- // GAMEPLAY //--------------------------------------------- "Overheal" "0 191 121 255" "OverhealShadow" "0 100 75 255" "LowHealth" "215 25 25 255" "LowHealthShadow" "115 12 12 255" "LowAmmo" "215 25 25 255" "LowAmmoShadow" "115 12 12 255" "TargetHealth" "0 225 165 255" "TargetDamage" "255 255 0 255" "BlueTeam" "75 112 130 255" "RedTeam" "158 65 65 255" //--------------------------------------------- // CROSSHAIR COLORS //--------------------------------------------- "Crosshair" "242 242 242 255" // Default "CrosshairDamage" "255 0 0 255" // Hitmarker //--------------------------------------------- // ÜBERCHARGE //--------------------------------------------- "UberCharge" "0 225 165 255" "UberChargePulse" "0 165 125 255" //--------------------------------------------- // CLASS GRADIENT //--------------------------------------------- "MenuScout" "75 112 130 255" "MenuSoldier" "80 105 120 255" "MenuPyro" "95 100 110 255" "MenuDemoman" "100 95 100 255" "MenuHeavy" "110 90 90 255" "MenuEngineer" "120 80 80 255" "MenuMedic" "130 75 75 255" "MenuSniper" "140 70 70 255" "MenuSpy" "158 65 65 255" //--------------------------------------------- // CUSTOMIZATIONS //--------------------------------------------- "MenuWhite" "255 255 255 255" "MenuTan" "235 226 202 255" "MenuGrey" "150 152 154 255" "MenuBlack" "0 0 0 255" "MenuMaroon" "150 50 50 255" "MenuRed" "255 0 0 255" "MenuSalmon" "250 125 115 255" "MenuOrange" "255 155 75 255" "MenuYellow" "255 190 0 255" "MenuOlive" "180 200 100 255" "MenuGreen" "0 215 0 255" "MenuForest" "0 135 55 255" "MenuTeal" "100 180 170 255" "MenuCyan" "0 195 200 255" "MenuBlue" "0 170 255 255" "MenuNavy" "90 120 200 255" "MenuPurple" "150 50 235 255" "MenuViolet" "190 150 210 255" "MenuPink" "250 185 240 255" "MenuMagenta" "255 0 127 255" //--------------------------------------------- // DEFAULT COLORS //--------------------------------------------- "Orange" "178 82 22 255" "OrangeDim" "178 82 22 120" "LightOrange" "188 112 0 128" "GoalOrange" "255 133 0 255" "TFOrange" "145 73 59 255" "Purple" "137 69 99 255" "HalloweenThemeColor2015_Light" "238 126 17 255" "HalloweenThemeColor2015" "135 54 16 255" "HalloweenThemeColor2015_Dark" "108 49 21 255" "QuestGold" "208 147 75 255" "QuestUncommitted" "183 147 100 255" "QuestMap_Bonus" "222 217 166 255" "QuestMap_ActiveOrange" "212 127 25 255" "QuestMap_InactiveGrey" "100 100 100 255" "QuestMap_BGImages" "56 58 60 255" "PartyMember1" "124 173 255 255" "PartyMember2" "99 232 167 255" "PartyMember3" "229 255 121 255" "PartyMember4" "232 184 99 255" "PartyMember5" "255 118 108 255" "PartyMember6" "255 133 255 255" "White" "220 220 220 255" "RedSolid" "158 65 65 255" "BlueSolid" "0 28 162 255" "TransparentYellow" "251 235 202 140" "GreenSolid" "76 107 34 255" "Black" "29 29 29 255" "Transparent" "0 0 0 0" "TransparentBlack" "0 0 0 230" "TransparentLightBlack" "0 0 0 90" "FooterBGBlack" "52 48 55 255" "HUDBlueTeam" "75 112 130 155" "HUDRedTeam" "157 49 47 155" "HUDSpectator" "124 124 124 127" "HUDBlueTeamSolid" "75 112 130 255" "HUDRedTeamSolid" "157 49 47 255" "HUDBlueTeamDark" "44 66 76 255" "HUDRedTeamDark" "76 23 22 255" "HUDDeathWarning" "255 0 0 255" "HudWhite" "255 255 255 255" "HudOffWhite" "200 187 161 255" "HudBlack" "16 16 16 185" "ProgressBarBlue" "91 122 142 255" "CreditsGreen" "94 150 49 255" "Gray" "178 178 178 255" "Blank" "0 0 0 0" "ForTesting" "255 0 0 32" "ForTesting_Magenta" "255 0 255 255" "ForTesting_MagentaDim" "255 0 255 120" "HudPanelForeground" "123 110 59 184" "HudPanelBackground" "123 110 59 184" "HudPanelBorder" "255 255 255 102" "HudProgressBarActive" "240 207 78 255" "HudProgressBarInActive" "140 120 73 255" "HudProgressBarActiveLow" "240 30 30 255" "HudProgressBarInActiveLow" "240 30 30 99" "HudTimerProgressActive" "251 235 202 255" "HudTimerProgressInActive" "52 48 45 255" "HudTimerProgressWarning" "240 30 30 255" // Training "HudTrainingHint" "212 160 23 255" "TanDark" "117 107 94 255" "TanLight" "235 226 202 255" "TanDarker" "46 43 42 255" "StoreDarkTan" "131 121 104 255" "StoreGreen" "76 107 34 255" // Building HUD Specific "LowHealthRed" "255 0 0 255" "ProgressOffWhite" "251 235 202 255" "ProgressBackground" "250 234 201 51" "HealthBgGrey" "72 71 69 255" "LabelDark" "48 43 42 255" "LabelTransparent" "109 96 80 180" "BuildMenuActive" "248 231 198 255" "DisguiseMenuIconRed" "192 56 63 255" "DisguiseMenuIconBlue" "92 128 166 255" "ProgressOffWhiteTransparent" "251 235 202 128" "MatchmakingDialogTitleColor" "200 184 151 255" "MatchmakingMenuItemBackground" "46 43 42 255" "MatchmakingMenuItemBackgroundActive" "150 71 0 255" "MatchmakingMenuItemTitleColor" "200 184 151 255" "MatchmakingMenuItemDescriptionColor" "200 184 151 255" "HTMLBackground" "95 92 101 255" "ItemAttribLevel" "117 107 94 255" "ItemAttribNeutral" "235 226 202 255" "ItemAttribPositive" "153 204 255 255" "ItemAttribNegative" "255 64 64 255" "ItemSetName" "225 255 15 255" "ItemSetItemEquipped" "149 175 12 255" "ItemSetItemMissing" "139 137 137 255" "ItemIsotope" "225 255 15 255" "ItemBundleItem" "149 175 12 255" "ItemLimitedUse" "0 160 0 255" "ItemFlags" "117 107 94 255" "ItemLimitedQuantity" "225 209 0 255" "QualityColorNormal" "178 178 178 255" "QualityColorrarity1" "77 116 85 255" "QualityColorrarity2" "141 131 75 255" "QualityColorrarity3" "204 204 250 255" "QualityColorrarity4" "134 80 172 255" "QualityColorVintage" "71 98 145 255" "QualityColorUnique" "255 215 0 255" "QualityColorCommunity" "112 176 74 255" "QualityColorDeveloper" "165 15 121 255" "QualityColorSelfMade" "112 176 74 255" "QualityColorCustomized" "71 98 145 255" "QualityColorStrange" "207 106 50 255" "QualityColorCompleted" "134 80 172 255" "QualityColorHaunted" "56 243 171 255" "QualityColorCollectors" "170 0 0 255" "QualityColorPaintkitWeapon" "250 250 250 255" "DimmQualityColorNormal" "178 178 178 100" "DimmQualityColorrarity1" "77 116 85 100" "DimmQualityColorrarity2" "141 131 75 100" "DimmQualityColorrarity3" "204 204 250 100" "DimmQualityColorrarity4" "134 80 172 100" "DimmQualityColorVintage" "71 98 145 100" "DimmQualityColorUnique" "255 215 0 100" "DimmQualityColorCommunity" "112 176 74 100" "DimmQualityColorDeveloper" "165 15 121 100" "DimmQualityColorSelfMade" "112 176 74 100" "DimmQualityColorCustomized" "71 98 145 100" "DimmQualityColorStrange" "207 106 50 100" "DimmQualityColorCompleted" "134 80 172 100" "DimmQualityColorHaunted" "56 243 171 100" "DimmQualityColorCollectors" "170 0 0 100" "DimmQualityColorPaintkitWeapon" "250 250 250 100" "ItemRarityDefault" "131 126 119 255" "ItemRarityCommon" "176 195 217 255" "ItemRarityUncommon" "94 152 217 255" "ItemRarityRare" "75 105 255 255" "ItemRarityMythical" "136 71 255 255" "ItemRarityLegendary" "211 44 230 255" "ItemRarityAncient" "235 75 75 255" "DimmItemRarityDefault" "131 126 119 100" "DimmItemRarityCommon" "176 195 217 100" "DimmItemRarityUncommon" "94 152 217 100" "DimmItemRarityRare" "75 105 255 100" "DimmItemRarityMythical" "136 71 255 100" "DimmItemRarityLegendary" "211 44 230 100" "DimmItemRarityAncient" "235 75 75 100" "ItemRarityDefault_GreyedOut" "44 42 40 255" "ItemRarityCommon_GreyedOut" "59 65 72 255" "ItemRarityUncommon_GreyedOut" "31 50 72 255" "ItemRarityRare_GreyedOut" "25 35 85 255" "ItemRarityMythical_GreyedOut" "45 24 85 255" "ItemRarityLegendary_GreyedOut" "70 15 77 255" "ItemRarityAncient_GreyedOut" "78 25 25 255" "QualityColorNormal_GreyedOut" "44 44 44 255" "QualityColorrarity1_GreyedOut" "20 29 21 255" "QualityColorrarity2_GreyedOut" "35 33 19 255" "QualityColorrarity3_GreyedOut" "51 51 62 255" "QualityColorrarity4_GreyedOut" "36 20 43 255" "QualityColorVintage_GreyedOut" "18 25 36 255" "QualityColorUnique_GreyedOut" "64 54 0 255" "QualityColorCommunity_GreyedOut" "28 44 19 255" "QualityColorDeveloper_GreyedOut" "41 4 30 255" "QualityColorSelfMade_GreyedOut" "28 44 74 255" "QualityColorCustomized_GreyedOut" "71 98 19 255" "QualityColorStrange_GreyedOut" "52 27 13 255" "QualityColorCompleted_GreyedOut" "34 20 43 255" "QualityColorHaunted_GreyedOut" "14 61 43 255" "QualityColorCollectors_GreyedOut" "60 0 0 255" "QualityColorPaintkitWeapon_GreyedOut" "60 60 60 255" "SaleGreen" "76 107 34 255" "LightRed" "200 80 60 255" "LighterRed" "220 100 80 255" "LighterDarkBrown" "59 54 48 255" "DarkBrown" "41 37 38 255" "UpgradeDefaultFg" "87 82 74 255" "UpgradeDefaultBg" "111 104 94 255" "UpgradeArmedFg" "194 96 47 255" "UpgradeArmedBg" "239 128 73 255" "UpgradeDepressedFg" "204 106 57 255" "UpgradeDepressedBg" "249 138 83 255" "UpgradeSelectedFg" "204 106 57 255" "UpgradeSelectedBg" "249 138 83 255" "UpgradeDisabledFg" "64 59 52 255" "UpgradeDisabledBg" "79 77 68 255" } } ================================================ FILE: resource/scheme/clientscheme_fonts.res ================================================ Scheme { //////////////////////// FONTS ///////////////////////////// // // describes all the fonts Fonts { // CUSTOM "FontBold50" { "1" { "name" "TF2 Build" "tall" "50" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold37" { "1" { "name" "TF2 Build" "tall" "37" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold22" { "1" { "name" "TF2 Build" "tall" "22" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold20Outline" { "1" { "name" "TF2 Build" "tall" "20" "weight" "0" "additive" "0" "antialias" "1" "outline" "1" } } "FontBold20" { "1" { "name" "TF2 Build" "tall" "20" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold18" { "1" { "name" "TF2 Build" "tall" "18" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold16" { "1" { "name" "TF2 Build" "tall" "16" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold14Outline" { "1" { "name" "TF2 Build" "tall" "14" "weight" "0" "additive" "0" "antialias" "1" "outline" "1" } } "FontBold14" { "1" { "name" "TF2 Build" "tall" "14" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold12" { "1" { "name" "TF2 Build" "tall" "12" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold10" { "1" { "name" "TF2 Build" "tall" "10" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold9" { "1" { "name" "TF2 Build" "tall" "9" "weight" "0" "additive" "0" "antialias" "1" } } "FontRegular20" { "1" { "name" "TF2 Secondary" "tall" "20" "additive" "0" "antialias" "1" } } "FontRegular15" { "1" { "name" "TF2 Secondary" "tall" "15" "additive" "0" "antialias" "1" } } "FontRegular14" { "1" { "name" "TF2 Secondary" "tall" "14" "additive" "0" "antialias" "1" } } "FontRegular12" { "1" { "name" "TF2 Secondary" "tall" "12" "additive" "0" "antialias" "1" } } "FontRegular11" { "1" { "name" "TF2 Secondary" "tall" "11" "additive" "0" "antialias" "1" } } "FontRegular10" { "1" { "name" "TF2 Secondary" "tall" "10" "additive" "0" "antialias" "1" } } "FontRegular9" { "1" { "name" "TF2 Secondary" "tall" "9" "additive" "0" "antialias" "1" } } "FontRegular8" { "1" { "name" "TF2 Secondary" "tall" "8" "additive" "0" "antialias" "1" } } "ScanlineShadow" { "1" { "name" "TF2 Build" "tall" "50" "weight" "0" "additive" "0" "antialias" "1" "scanlines" "2" "blur" "3" } } "ScanlineShadowSmall" { "1" { "name" "TF2 Build" "tall" "22" "weight" "0" "additive" "0" "antialias" "1" "scanlines" "2" "blur" "3" } } "Showcase_TF2_Build" { "1" { "name" "TF2 Build" "tall" "24" "antialias" "1" } } "Showcase_TF2_Secondary" { "1" { "name" "TF2 Secondary" "tall" "20" "antialias" "1" } } "Showcase_Code_Pro_Bold" { "1" { "name" "Code Pro Bold" "tall" "24" "antialias" "1" } } "Showcase_Code_Pro_LC" { "1" { "name" "Code Pro LC" "tall" "18" "antialias" "1" } } // DEFAULT "Default" { "1" { "name" "TF2 Secondary" "tall" "11" "additive" "0" "antialias" "1" } "2" { "name" "TF2 Secondary" "tall" "11" "range" "0x0000 0x00FF" "weight" "800" } } "DefaultOutline" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "900" "range" "0x0000 0x017F" "outline" "1" } } "DefaultUnderline" { "1" { "name" "TF2 Secondary" "tall" "12" "weight" "500" "underline" "1" "range" "0x0000 0x017F" } "2" { "name" "TF2 Secondary" "tall" "11" "range" "0x0000 0x00FF" "weight" "800" } } "DefaultSmall" { "1" { "name" "TF2 Secondary" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "TF2 Secondary" "tall" "13" "weight" "0" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "TF2 Secondary" "tall" "14" "weight" "0" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "TF2 Secondary" "tall" "20" "weight" "0" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "TF2 Secondary" "tall" "9" "weight" "0" "range" "0x0000 0x017F" "antialias" "1" } "6" { "name" "TF2 Secondary" "tall" "12" "range" "0x0000 0x00FF" "weight" "0" } } "DefaultVerySmall" { "1" { "name" "TF2 Secondary" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "TF2 Secondary" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "TF2 Secondary" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "TF2 Secondary" "tall" "14" "weight" "0" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "TF2 Secondary" "tall" "9" "weight" "0" "range" "0x0000 0x017F" "antialias" "1" } } "DefaultLarge" { "1" { "name" "TF2 Secondary" "tall" "18" "weight" "900" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "TF2 Secondary" "tall" "21" "weight" "900" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "TF2 Secondary" "tall" "22" "weight" "900" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "TF2 Secondary" "tall" "28" "weight" "900" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "TF2 Secondary" "tall" "18" "weight" "900" "range" "0x0000 0x017F" "antialias" "1" } "6" { "name" "TF2 Secondary" "tall" "20" "range" "0x0000 0x00FF" "weight" "900" } "7" { "name" "TF2 Secondary" "tall" "20" "range" "0x0000 0x00FF" "weight" "800" } } "CenterPrintText" { "1" { "name" "TF2 Build" "tall" "14" "weight" "900" "antialias" "1" "additive" "1" } } "PlayerPanelPlayerName" { "1" { "name" "Verdana" "tall" "6" "weight" "500" "additive" "0" "antialias" "1" } } "HudHintText" { "1" { "name" "Verdana" "tall" "12" "weight" "700" "yres" "480 599" } "2" { "name" "Verdana" "tall" "13" "weight" "700" "yres" "600 767" } "3" { "name" "Verdana" "tall" "14" "weight" "700" "yres" "768 1023" } "4" { "name" "Verdana" "tall" "20" "weight" "700" "yres" "1024 1199" } "5" { "name" "Verdana" "tall" "12" "weight" "700" "antialias" "1" } } "HudFontGiant" { "1" { "name" "TF2 Secondary" "tall" "24" "tall_lodef" "80" "weight" "500" "additive" "0" "antialias" "1" "yres" "480 599" } "2" { "name" "TF2 Secondary" "tall" "32" "tall_hidef" "120" "weight" "500" "additive" "0" "antialias" "1" "yres" "600 767" } "3" { "name" "TF2 Secondary" "tall" "44" "weight" "500" "additive" "0" "antialias" "1" "yres" "768 1023" } "4" { "name" "TF2 Secondary" "tall" "48" "weight" "500" "additive" "0" "antialias" "1" "yres" "1024 1199" } "5" { "name" "TF2 Secondary" "tall" "24" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontGiantBold" { "1" { "name" "TF2 Build" "tall" "44" "tall_lodef" "52" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontBiggerBold" { "1" { "name" "TF2 Build" "tall" "35" "tall_lodef" "40" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontBig" { "1" { "name" "TF2 Secondary" "tall" "36" "tall_hidef" "48" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumBig" { "1" { "name" "TF2 Secondary" "tall" "30" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumBigBold" { "1" { "name" "TF2 Build" "tall" "30" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMedium" { "1" { "name" "TF2 Secondary" "tall" "24" "tall_lodef" "28" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumSecondary" { "1" { "name" "TF2 Secondary" "tall" "24" "weight" "500" "yres" "1 1199" "additive" "0" "antialias" "1" } "2" { "name" "TF2 Secondary" "tall" "10" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumBold" { "1" { "name" "TF2 Build" "tall" "24" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumSmallBold" { "1" { "name" "TF2 Build" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumSmall" { "1" { "name" "TF2 Secondary" "tall" "18" "tall_hidef" "24" "tall_lodef" "18" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumSmallSecondary" { "1" { "name" "TF2 Secondary" "tall" "18" "tall_hidef" "24" "tall_lodef" "20" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontSmall" { "1" { "name" "TF2 Secondary" "tall" "14" "tall_lodef" "16" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontSmallishBold" { "1" { "name" "TF2 Build" "tall" "16" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontSmallBold" { "1" { "name" "TF2 Build" "tall" "14" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontSmallBoldShadow" { "1" { "name" "TF2 Build" "tall" "14" "weight" "500" "additive" "0" "antialias" "1" "dropshadow" "1" } } "HudFontSmallest" { "1" { "name" "TF2 Secondary" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontSmallestShadow" { "1" { "name" "TF2 Secondary" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" "dropshadow" "1" } } "HudFontSmallestBold" { "1" { "name" "TF2 Build" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "PerformanceModeSmall" { "1" { "name" "TF2 Secondary" "tall" "4" "weight" "500" "additive" "0" "antialias" "1" } } "StorePromotionsTitle" { "1" { "name" "TF2 Secondary" "tall" "10" "additive" "0" "antialias" "1" } } "FontCartPrice" { "1" { "name" "TF2 Secondary" "tall" "16" //"weight" "500" "additive" "0" "antialias" "1" } } "FontStorePrice" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "0" "additive" "0" "antialias" "1" } } "FontStoreOriginalPrice" { "1" { "name" "TF2 Secondary" "tall" "9" "weight" "0" "additive" "0" "antialias" "1" } } "FontStorePriceSmall" { "1" { "name" "TF2 Secondary" "tall" "9" "weight" "0" "additive" "0" "antialias" "1" } } "FontStorePromotion" { "1" { "name" "TF2 Secondary" "tall" "12" "weight" "400" "additive" "0" "antialias" "1" } } "TextTooltipFont" { "1" { "name" "TF2 Secondary" "tall" "12" "weight" "500" "additive" "0" "antialias" "1" } } "GameUIButtons" { "1" //[$X360] { "bitmap" "1" "name" "Buttons" "scalex" "0.5" "scaley" "0.5" } } "GameUIButtonsSmall" { "1" [$X360] { "bitmap" "1" "name" "Buttons" "scalex" "0.5" "scaley" "0.5" } } "GameUIButtonsSmallest" { "1" [$X360] { "bitmap" "1" "name" "Buttons" "scalex" "0.4" "scaley" "0.4" } } "GameUIButtonsSteamController" { "1" { "bitmap" "1" "name" "ButtonsSC" "scalex" "0.5" "scaley" "0.5" } } "GameUIButtonsSteamControllerSmall" { "1" { "bitmap" "1" "name" "ButtonsSC" "scalex" "0.25" "scaley" "0.25" } } "GameUIButtonsSteamControllerSmallest" { "1" { "bitmap" "1" "name" "ButtonsSC" "scalex" "0.15" "scaley" "0.15" } } "GameUIButtonText" { "1" { "name" "TF2 Secondary" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } "HudClassHealth" { "1" { "name" "TF2 Build" "tall" "16" "weight" "500" "additive" "0" "antialias" "1" } } "SpectatorKeyHints" { "1" { "name" "Verdana" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } "ClockSubText" { "1" { "name" "Verdana" "tall" "9" "weight" "500" "additive" "0" "antialias" "1" } } "ClockSubTextSuddenDeath" { "1" { "name" "Verdana" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } "ClockSubTextTiny" { "1" { "name" "Verdana" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } "HudSelectionText" { "1" { "name" "TF2 Secondary" "tall" "15" "weight" "700" "antialias" "1" "yres" "1 599" "range" "0x0000 0x017F" "additive" "1" } "2" { "name" "TF2 Secondary" "tall" "15" "weight" "700" "antialias" "1" "yres" "600 767" "range" "0x0000 0x017F" "additive" "1" } "3" { "name" "TF2 Secondary" "tall" "18" "weight" "900" "antialias" "1" "yres" "768 1023" "range" "0x0000 0x017F" } "4" { "name" "TF2 Secondary" "tall" "21" "weight" "900" "antialias" "1" "yres" "1024 1199" "range" "0x0000 0x017F" } "5" { "name" "TF2 Secondary" "tall" "24" "weight" "1000" "antialias" "1" "yres" "1200 10000" "range" "0x0000 0x017F" } } "DebugOverlay" { "1" { "name" "Courier New" "tall" "14" "weight" "400" "outline" "1" "range" "0x0000 0x017F" } } "TFTypeDeath" { "1" { "name" "tfd" "tall" "28" "weight" "0" "additive" "0" "antialias" "1" } } "Icons" { "1" { "name" "Team Fortress" "tall" "28" "weight" "0" "additive" "1" "antialias" "1" } } "BetaFont" { "1" { "name" "Courier New" "tall" "90" "weight" "900" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "HudNumbers" { "1" { "name" "Team Fortress" "tall" "28" "weight" "0" "additive" "1" "antialias" "1" } "2" { "name" "Verdana" "tall" "28" "weight" "0" "additive" "1" "antialias" "1" } } "CloseCaption" { "1" { "name" "TF2 Build" "tall" "10" "antialias" "1" "weight" "500" "range" "0x0000 0x017F" } } "CloseCaption_Italic" { "1" { "name" "TF2 Build" "tall" "10" "antialias" "1" "weight" "500" "italic" "1" "range" "0x0000 0x017F" } } "CloseCaption_Bold" { "1" { "name" "TF2 Build" "tall" "10" "antialias" "1" "weight" "900" "range" "0x0000 0x017F" } } "CloseCaption_BoldItalic" { "1" { "name" "TF2 Build" "tall" "10" "antialias" "1" "weight" "900" "italic" "1" "range" "0x0000 0x017F" } } "CloseCaption_Small" { "1" { "name" "TF2 Build" "tall" "8" "antialias" "1" "weight" "900" "range" "0x0000 0x017F" } } "Marlett" { "1" { "name" "Marlett" "tall" "20" "weight" "0" "symbol" "1" "range" "0x0000 0x007F" } } "MarlettSmall" { "1" { "name" "Marlett" "tall" "14" "weight" "0" "symbol" "1" "range" "0x0000 0x007F" } } "MenuMainTitle" { "1" { "name" "TF2 Secondary" "tall" "24" "antialias" "1" "weight" "500" } } "MenuClassBuckets" { "1" { "name" "TF2 Secondary" "tall" "11" "antialias" "1" "weight" "500" } } "MenuKeys" { "1" { "name" "TF2 Secondary" "tall" "12" "antialias" "1" "weight" "500" } } "GoalText" { "1" { "name" "TF2 Secondary" "tall" "13" "weight" "800" "additive" "0" "antialias" "1" } } "ChalkboardTitle" { "1" { "name" "TF2 Professor" "tall" "28" "antialias" "1" "custom" "1" [$OSX] "weight" "500" } } "ChalkboardTitleBig" { "1" { "name" "TF2 Professor" "tall" "40" "antialias" "1" "custom" "1" [$OSX] "weight" "500" } } "ChalkboardTitleMedium" { "1" { "name" "TF2 Professor" "tall" "24" "antialias" "1" "custom" "1" [$OSX] "weight" "500" } } "ChalkboardText" { "1" { "name" "TF2 Professor" "tall" "14" [!$OSX] "tall" "15" [$OSX] "antialias" "1" "custom" "1" [$OSX] "weight" "500" } } "ScoreboardSmallest" { "1" { "name" "Verdana" "tall" "6" "weight" "400" "additive" "0" "antialias" "1" } } "ScoreboardVerySmall" { "1" { "name" "TF2 Secondary" "tall" "8" "weight" "400" "additive" "0" "antialias" "1" } } "ScoreboardSmall" { "1" { "name" "TF2 Secondary" "tall" "9" "weight" "400" "additive" "0" "antialias" "1" } } "ScoreboardMediumSmall" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardMedium" { "1" { "name" "TF2 Secondary" "tall" "20" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardTeamName" { "1" { "name" "TF2 Secondary" "tall" "20" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardTeamCountNew" { "1" { "name" "TF2 Secondary" "tall" "14" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardTeamNameNew" { "1" { "name" "TF2 Secondary" "tall" "14" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardTeamNameLarge" { "1" { "name" "TF2 Secondary" "tall" "34" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardTeamScoreNew" { "1" { "name" "TF2 Secondary" "tall" "36" "weight" "500" "additive" "0" "antialias" "1" } } "ScoreboardTeamScore" { "1" { "name" "TF2 Secondary" "tall" "52" "range" "0x0000 0x00FF" "weight" "400" "yres" "1 599" "antialias" "1" } "2" { "name" "TF2 Secondary" "tall" "72" "range" "0x0000 0x00FF" "weight" "400" "yres" "600 767" "antialias" "1" } "3" { "name" "TF2 Secondary" "tall" "100" "range" "0x0000 0x00FF" "weight" "400" "yres" "768 1023" "antialias" "1" } "4" { "name" "TF2 Secondary" "tall" "140" "range" "0x0000 0x00FF" "weight" "400" "yres" "1024 1199" "antialias" "1" } "5" { "name" "TF2 Secondary" "tall" "180" "range" "0x0000 0x00FF" "weight" "400" "yres" "1200 10000" "antialias" "1" } } "MatchSummaryTeamScores" { "1" { "name" "TF2 Build" "tall" "36" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "MatchSummaryStatsAndMedals" { "1" { "name" "TF2 Secondary" "tall" "14" "weight" "400" "additive" "0" "antialias" "1" } } "MatchSummaryWinner" { "1" { "name" "TF2 Secondary" "tall" "20" "weight" "400" "additive" "0" "antialias" "1" } } "CompMatchStartTeamNames" { "1" { "name" "TF2 Secondary" "tall" "14" "weight" "400" "additive" "0" "antialias" "1" } } "ControlPointTimer" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "400" "additive" "0" "antialias" "1" } } "ControlPointTimerSmaller" { "1" { "name" "TF2 Secondary" "tall" "7" "weight" "400" "additive" "0" "antialias" "1" } } "Link" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "400" "additive" "0" "antialias" "1" } } "TargetID" { "1" { "name" "Verdana" "tall" "12" "weight" "700" "yres" "480 599" "dropshadow" "0" } "2" { "name" "Verdana" "tall" "13" "weight" "700" "yres" "600 767" "dropshadow" "0" } "3" { "name" "Verdana" "tall" "14" "weight" "700" "yres" "768 1023" "dropshadow" "0" } "4" { "name" "Verdana" "tall" "20" "weight" "700" "yres" "1024 1199" "dropshadow" "0" } "5" { "name" "Verdana" "tall" "24" "weight" "700" "yres" "1200 10000" "dropshadow" "0" } } "ChatFont" { "1" { "name" "Verdana" "tall" "12" "weight" "700" "yres" "480 599" "dropshadow" "1" } "2" { "name" "Verdana" "tall" "13" "weight" "700" "yres" "600 767" "dropshadow" "1" } "3" { "name" "Verdana" "tall" "14" "weight" "700" "yres" "768 1023" "dropshadow" "1" } "4" { "name" "Verdana" "tall" "20" "weight" "700" "yres" "1024 1199" "dropshadow" "1" } "5" { "name" "Verdana" "tall" "24" "weight" "700" "yres" "1200 10000" "dropshadow" "1" } } "ChatMiniFont" { "1" { "name" "Verdana" "tall" "10" "weight" "700" "yres" "480 599" "dropshadow" "1" } "2" { "name" "Verdana" "tall" "10" "weight" "700" "yres" "600 767" "dropshadow" "1" } "3" { "name" "Verdana" "tall" "13" "weight" "700" "yres" "768 1023" "dropshadow" "1" } "4" { "name" "Verdana" "tall" "14" "weight" "700" "yres" "1024 1199" "dropshadow" "1" } "5" { "name" "Verdana" "tall" "15" "weight" "700" "yres" "1200 10000" "dropshadow" "1" } } "MenuSmallestFont" { "1" { "name" "Arial Black" "tall" "8" "range" "0x0000 0x00FF" "weight" "300" "antialias" "1" } } "MenuSmallFont" { "1" { "name" "TF2 Secondary" "tall" "14" "range" "0x0000 0x00FF" "weight" "300" "antialias" "1" } } "CapPlayerFont" { "1" { "name" "TF2 Secondary" "tall" "12" "weight" "500" "range" "0x0000 0x017F" "TextColor" "Black" "antialias" "1" } } "CapPlayerFontSmall" { "1" { "name" "TF2 Secondary" "tall" "8" "weight" "500" "range" "0x0000 0x017F" "TextColor" "Black" "antialias" "1" } } "TFFontSmall" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "0" "additive" "1" "antialias" "1" } } "TFFontMedium" { "1" { "name" "TF2 Secondary" "tall" "12" "weight" "400" "additive" "0" "antialias" "1" } } "InstructionalText" { "1" { "name" "Verdana" "tall" "11" [!$OSX] "tall" "9" [$OSX] "weight" "800" "additive" "0" "antialias" "1" } } "MatchmakingDialogTitle" { "1" { "name" "TF2 Secondary" "tall" "36" "weight" "500" } } "MatchmakingDialogSessionOptionsTitle" { "1" { "name" "TF2 Secondary" "tall" "30" "weight" "500" } } "MatchmakingDialogMenuLarge" { "1" { "name" "TF2 Secondary" "tall" "28" "weight" "500" } } "MatchmakingDialogMenuBrowserHostname" { "1" { "name" "TF2 Secondary" "tall" "22" "weight" "900" } } "MatchmakingDialogMenuBrowserDetails" { "1" { "name" "TF2 Secondary" "tall" "18" "weight" "900" } } "MatchmakingDialogMenuMedium" { "1" { "name" "TF2 Secondary" "tall" "22" "weight" "500" } } "MatchmakingDialogMenuMediumSmall" { "1" { "name" "TF2 Secondary" "tall" "18" "weight" "500" } } "MatchmakingDialogMenuSmall" { "1" { "name" "TF2 Secondary" "tall" "22" "weight" "900" } } "MatchmakingDialogMenuSmallest" { "1" { "name" "TF2 Secondary" "tall" "18" "weight" "900" } } "RankingDialogHeaders" { "1" { "name" "TF2 Secondary" "tall" "15" "weight" "900" } } "TeamMenuBold" { "1" { "name" "TF2 Secondary" "tall" "36" "weight" "500" "additive" "0" "antialias" "1" } } "TeamMenu" { "1" { "name" "TF2 Secondary" "tall" "11" "weight" "600" "additive" "0" "antialias" "1" } } "IntroMenuCaption" { "1" { "name" "TF2 Secondary" "tall" "18" "weight" "400" "additive" "0" "antialias" "1" } } "AchievementNotification" { "1" { "name" "Trebuchet MS" "tall" "14" "weight" "900" "antialias" "1" } } "ImportToolSmallestBold" { "1" { "name" "Verdana" "tall" "10" "weight" "600" "additive" "0" "antialias" "1" } } "ImportToolSmallest" { "1" { "name" "Verdana" "tall" "10" "weight" "500" "additive" "0" "antialias" "1" } } "SpectatorVerySmall" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "400" "additive" "0" "antialias" "1" } } // Used by scoreboard and spectator UI for names which don't map in the normal fashion "DefaultVerySmallFallBack" { "1" { "name" "Verdana" "tall" "10" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" "antialias" "1" } "2" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "600 1199" "antialias" "1" } "3" { "name" "Verdana" "tall" "15" "weight" "0" "range" "0x0000 0x017F" "yres" "1200 6000" "antialias" "1" } } "ItemFontNameSmallest" { "1" { "name" "TF2 Build" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontNameSmall" { "1" { "name" "TF2 Build" "tall" "10" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontNameLarge" { "1" { "name" "TF2 Build" "tall" "12" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontNameLarger" { "1" { "name" "TF2 Build" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontAttribSmallest" { "1" { "name" "TF2 Secondary" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } ItemFontAttribSmallv2 { "1" { "name" "TF2 Secondary" "tall" "8" "antialias" "1" "weight" "500" } } "ItemFontAttribSmall" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontAttribLarge" { "1" { "name" "TF2 Secondary" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontAttribLarger" { "1" { "name" "TF2 Secondary" "tall" "14" "weight" "500" "additive" "0" "antialias" "1" } } "AchievementTracker_Name" { "1" { "name" "TF2 Secondary" "tall" "9" "weight" "500" "additive" "0" "antialias" "1" } } "AchievementTracker_NameGlow" { "1" { "name" "TF2 Secondary" "tall" "9" "weight" "500" "blur" "3" "additive" "1" "antialias" "1" } } "AchievementTracker_Desc" { "1" { "name" "TF2 Secondary" "tall" "7" "weight" "0" "additive" "1" "antialias" "1" } } "QuestObjectiveTracker_Desc" { "1" { "name" "Verdana" "tall" "7" [!$POSIX] "tall" "8" [$POSIX] "weight" "0" "additive" "1" "antialias" "1" } } "QuestObjectiveTracker_DescGlow" { "1" { "name" "Verdana" "tall" "7" [!$POSIX] "tall" "8" [$POSIX] "weight" "0" "antialias" "1" } } "QuestObjectiveTracker_DescBlur" { "1" { "name" "Verdana" "tall" "7" [!$POSIX] "tall" "8" [$POSIX] "weight" "0" "blur" "3" "additive" "1" "antialias" "1" } } "ItemTrackerScore_InGame" { "1" { "name" "Verdana" "tall" "7" "weight" "0" "antialias" "1" } } "QuestFlavorText" { "1" { "name" "ocra" "tall" "10" "weight" "400" "yres" "480 599" "additive" "0" "antialias" "1" } "2" { "name" "ocra" "tall" "14" "weight" "400" "additive" "0" "yres" "600 1023" "antialias" "1" } "3" { "name" "ocra" "tall" "18" "weight" "400" "additive" "0" "yres" "1024 6000" "antialias" "1" } } "QuestObjectiveText" { "1" { "name" "ocra" "tall" "10" "weight" "800" "yres" "480 599" "additive" "0" "antialias" "1" } "2" { "name" "ocra" "tall" "14" "weight" "800" "additive" "0" "yres" "600 1023" "antialias" "1" } "3" { "name" "ocra" "tall" "18" "weight" "800" "additive" "0" "yres" "1024 6000" "antialias" "1" } } "QuestLargeText" { "1" { "name" "ocra" "tall" "16" "weight" "400" "additive" "0" "antialias" "1" } } "QuestStickyText" { "1" { "name" "TF2 Professor" "tall" "20" "antialias" "1" "custom" "1" [$OSX] "weight" "500" } } "QuestInstructionText_Merasmus" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "400" "yres" "480 599" "additive" "0" "antialias" "1" } "2" { "name" "TF2 Secondary" "tall" "14" "weight" "400" "additive" "0" "yres" "600 1023" "antialias" "1" } "3" { "name" "TF2 Secondary" "tall" "22" "weight" "400" "additive" "0" "yres" "1024 6000" "antialias" "1" } } "QuestFlavorText_Merasmus" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "400" "yres" "480 599" "additive" "0" "antialias" "1" "italic" "1" } "2" { "name" "TF2 Secondary" "tall" "14" "weight" "400" "additive" "0" "yres" "600 1023" "antialias" "1" "italic" "1" } "3" { "name" "TF2 Secondary" "tall" "22" "weight" "400" "additive" "0" "yres" "1024 6000" "antialias" "1" "italic" "1" } } "QuestObjectiveText_Merasmus" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "800" "yres" "480 599" "additive" "0" "antialias" "1" } "2" { "name" "TF2 Secondary" "tall" "14" "weight" "800" "additive" "0" "yres" "600 1023" "antialias" "1" } "3" { "name" "TF2 Secondary" "tall" "18" "weight" "800" "additive" "0" "yres" "1024 6000" "antialias" "1" } } "QuestMediumText_Merasmus" { "1" { "name" "TF2 Secondary" "tall" "13" "weight" "400" "additive" "0" "antialias" "1" } } "QuestLargeText_Merasmus" { "1" { "name" "TF2 Secondary" "tall" "16" "weight" "400" "additive" "0" "antialias" "1" } } "AdFont_ItemName" { "1" { "name" "TF2 Secondary" "tall" "12" "weight" "400" "additive" "0" "antialias" "1" } } "AdFont_AdText" { "1" { "name" "Verdana" "tall" "8" "weight" "400" "additive" "0" "antialias" "1" } } "AdFont_PurchaseButton" { "1" { "name" "Verdana" "tall" "8" "weight" "0" "antialias" "1" } } "TradeUp_Text" { "1" { "name" "Verdana" "tall" "8" "weight" "400" "antialias" "1" "additive" "0" } } "TradeUp_Quote" { "1" { "name" "Trebuchet MS" "tall" "9" "weight" "400" "antialias" "1" "additive" "0" "italic" "1" } } //////////////////// REPLAY FONTS ////////////////////////////// "ReplayVerySmall" { "1" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "Verdana" "tall" "14" "weight" "0" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "Verdana" "tall" "16" "weight" "0" "range" "0x0000 0x017F" "yres" "1200 6000" "antialias" "1" } } "ReplayBrowserSmallest" { "1" { "name" "TF2 Secondary" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "ReplaySmaller" { "1" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "Verdana" "tall" "13" "weight" "0" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "Verdana" "tall" "14" "weight" "0" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "Verdana" "tall" "20" "weight" "0" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "Verdana" "tall" "22" "weight" "0" "range" "0x0000 0x017F" "yres" "1200 6000" "antialias" "1" } "6" { "name" "Arial" "tall" "12" "range" "0x0000 0x00FF" "weight" "0" } } "ReplayMediumSmall" { "1" { "name" "TF2 Secondary" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "ReplayMedium" { "1" { "name" "TF2 Secondary" "tall" "14" "weight" "500" "additive" "0" "antialias" "1" } } "ReplayMediumBig" { "1" { "name" "TF2 Secondary" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } "ReplayBrowserTab" { "1" { "name" "TF2 Secondary" "tall" "24" "weight" "500" "additive" "0" "antialias" "1" } } "ReplayLarger" { "1" { "name" "TF2 Secondary" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } //////////////////// ECON FONTS ////////////////////////////// "EconFontSmall" { "1" { "name" "TF2 Secondary" "tall" "14" "weight" "500" "additive" "0" "antialias" "1" } } "EconFontMedium" { "1" { "name" "TF2 Secondary" "tall" "24" "weight" "500" "additive" "0" "antialias" "1" } } ControllerHintText { "1" { "name" "TF2 Secondary" "tall" "15" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "MMenuPlayListDesc" { "1" { "name" "TF2 Secondary" "tall" "9" "weight" "400" "additive" "0" "antialias" "1" } } "XPSource" { "1" { "name" "TF2 Secondary" "tall" "11" "weight" "500" "antialias" "1" "custom" "1" } } "XPSource_Glow" { "1" { "name" "TF2 Secondary" "tall" "11" "weight" "500" "blur" "3" "additive" "1" "antialias" "1" } } "MapVotesPercentage" { "1" { "name" "TF2 Secondary" "tall" "12" "weight" "500" "additive" "0" "antialias" "1" "dropshadow" "1" } } "QuestMap_Small_Blur" { "1" { "name" "TF2 Secondary" "tall" "7" "weight" "0" "blur" "3" "additive" "1" "antialias" "1" } } "QuestMap_Small" { "1" { "name" "TF2 Secondary" "tall" "7" "weight" "400" "additive" "0" "antialias" "1" } } "QuestMap_Medium" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "400" "additive" "0" "antialias" "1" } } "QuestMap_Large" { "1" { "name" "TF2 Secondary" "tall" "14" "weight" "400" "additive" "0" "antialias" "1" } } "QuestMap_Huge" { "1" { "name" "TF2 Secondary" "tall" "30" "weight" "400" "additive" "0" "antialias" "1" } } } BitmapFontFiles { // UI buttons, custom font, (256x64) "Buttons" "materials/vgui/fonts/buttons_32.vbf" } } ================================================ FILE: resource/scheme/clientscheme_fonts_paths.res ================================================ Scheme { //////////////////////// CUSTOM FONT FILES ///////////////////////////// // // specifies all the custom (non-system) font files that need to be loaded to service the above described fonts // Range specificies the characters to be used from the custom font before falling back to a default font // characters in the range not specificed in the font will appear empty // For TF2: Any special character will need to be added to our font file CustomFontFiles { "1" "resource/tf.ttf" "2" "resource/tfd.ttf" "3" { "font" "resource/tf2.ttf" "name" "TF2" "russian" { "range" "0x0000 0xFFFF" } "polish" { "range" "0x0000 0xFFFF" } } "4" { "font" "resource/tf2secondary.ttf" "name" "TF2 Secondary" "russian" { "range" "0x0000 0xFFFF" } "polish" { "range" "0x0000 0xFFFF" } } "5" { "font" "resource/tf2professor.ttf" "name" "TF2 Professor" "russian" { "range" "0x0000 0x00FF" } "polish" { "range" "0x0000 0x00FF" } } "6" { "font" "resource/tf2build.ttf" "name" "TF2 Build" "russian" { "range" "0x0000 0xFFFF" } "polish" { "range" "0x0000 0xFFFF" } "turkish" { "range" "0x0000 0xFFFF" } } "7" { "font" "resource/ocra.ttf" "name" "ocra" "turkish" { "range" "0x0000 0x007E" } "swedish" { "range" "0x0000 0x007E" } "spanish" { "range" "0x0000 0x007E" } "romanian" { "range" "0x0000 0x007E" } "polish" { "range" "0x0000 0x007E" } "norwegian" { "range" "0x0000 0x007E" } "danish" { "range" "0x0000 0x007E" } "hungarian" { "range" "0x0000 0x007E" } "german" { "range" "0x0000 0x007E" } "french" { "range" "0x0000 0x007E" } "finnish" { "range" "0x0000 0x007E" } "czech" { "range" "0x0000 0x007E" } "bulgarian" { "range" "0x0000 0x007E" } "russian" { "range" "0x0000 0x007E" } } "8" { "font" "resource/fonts/code-pro-bold.otf" "name" "Code Pro Bold" } "9" { "font" "resource/fonts/code-pro-lc.otf" "name" "Code Pro LC" } "10" "resource/linux_fonts/dejavusans.ttf" "11" "resource/linux_fonts/dejavusans-bold.ttf" "12" "resource/linux_fonts/dejavusans-boldoblique.ttf" "13" "resource/linux_fonts/dejavusans-oblique.ttf" "14" "resource/linux_fonts/liberationsans-regular.ttf" "15" "resource/linux_fonts/liberationsans-bold.ttf" "16" "resource/linux_fonts/liberationmono-regular.ttf" "17" "resource/linux_fonts/firasans-regular.ttf" "18" { "font" "resource/fonts/icons.ttf" "name" "TF2Icons" } "19" { "font" "resource/fonts/crosshairs.ttf" "name" "TF2Crosshairs" } "20" { "font" "resource/fonts/streamer-mode.ttf" "name" "Streamer Mode" } } } ================================================ FILE: resource/scheme/clientscheme_fonts_pro.res ================================================ Scheme { //////////////////////// FONTS ///////////////////////////// // // describes all the fonts Fonts { // CUSTOM "FontBold50" { "1" { "name" "Code Pro Bold" "tall" "50" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold37" { "1" { "name" "Code Pro Bold" "tall" "37" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold22" { "1" { "name" "Code Pro Bold" "tall" "22" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold20Outline" { "1" { "name" "Code Pro Bold" "tall" "20" "weight" "0" "additive" "0" "antialias" "1" "outline" "1" } } "FontBold20" { "1" { "name" "Code Pro Bold" "tall" "20" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold18" { "1" { "name" "Code Pro Bold" "tall" "18" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold16" { "1" { "name" "Code Pro Bold" "tall" "16" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold14Outline" { "1" { "name" "Code Pro Bold" "tall" "14" "weight" "0" "additive" "0" "antialias" "1" "outline" "1" } } "FontBold14" { "1" { "name" "Code Pro Bold" "tall" "14" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold12" { "1" { "name" "Code Pro Bold" "tall" "12" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold10" { "1" { "name" "Code Pro Bold" "tall" "10" "weight" "0" "additive" "0" "antialias" "1" } } "FontBold9" { "1" { "name" "Code Pro Bold" "tall" "9" "weight" "0" "additive" "0" "antialias" "1" } } "FontRegular20" { "1" { "name" "Code Pro LC" "tall" "20" "additive" "0" "antialias" "1" } } "FontRegular15" { "1" { "name" "Code Pro LC" "tall" "15" "additive" "0" "antialias" "1" } } "FontRegular14" { "1" { "name" "Code Pro LC" "tall" "14" "additive" "0" "antialias" "1" } } "FontRegular12" { "1" { "name" "Code Pro LC" "tall" "12" "additive" "0" "antialias" "1" } } "FontRegular11" { "1" { "name" "Code Pro LC" "tall" "10" "additive" "0" "antialias" "1" } } "FontRegular10" { "1" { "name" "Code Pro LC" "tall" "10" "additive" "0" "antialias" "1" } } "FontRegular9" { "1" { "name" "Code Pro LC" "tall" "9" "additive" "0" "antialias" "1" } } "FontRegular8" { "1" { "name" "Code Pro LC" "tall" "8" "additive" "0" "antialias" "1" } } "ScanlineShadow" { "1" { "name" "Code Pro Bold" "tall" "50" "weight" "0" "additive" "0" "antialias" "1" "scanlines" "2" "blur" "3" } } "ScanlineShadowSmall" { "1" { "name" "Code Pro Bold" "tall" "22" "weight" "0" "additive" "0" "antialias" "1" "scanlines" "2" "blur" "3" } } "Showcase_TF2_Build" { "1" { "name" "TF2 Build" "tall" "24" "antialias" "1" } } "Showcase_TF2_Secondary" { "1" { "name" "TF2 Secondary" "tall" "20" "antialias" "1" } } "Showcase_Code_Pro_Bold" { "1" { "name" "Code Pro Bold" "tall" "24" "antialias" "1" } } "Showcase_Code_Pro_LC" { "1" { "name" "Code Pro LC" "tall" "20" "antialias" "1" } } // DEFAULT "Default" { "1" { "name" "Code Pro LC" "tall" "11" "additive" "0" "antialias" "1" } "2" { "name" "Code Pro LC" "tall" "11" "range" "0x0000 0x00FF" "weight" "800" } } "DefaultOutline" { "1" { "name" "Code Pro LC" "tall" "10" "weight" "900" "range" "0x0000 0x017F" "outline" "1" } } "DefaultUnderline" { "1" { "name" "Code Pro LC" "tall" "12" "weight" "500" "underline" "1" "range" "0x0000 0x017F" } "2" { "name" "Code Pro LC" "tall" "11" "range" "0x0000 0x00FF" "weight" "800" } } "DefaultSmall" { "1" { "name" "Code Pro LC" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "Code Pro LC" "tall" "13" "weight" "0" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "Code Pro LC" "tall" "14" "weight" "0" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "Code Pro LC" "tall" "20" "weight" "0" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "Code Pro LC" "tall" "9" "weight" "0" "range" "0x0000 0x017F" "antialias" "1" } "6" { "name" "Code Pro LC" "tall" "12" "range" "0x0000 0x00FF" "weight" "0" } } "DefaultVerySmall" { "1" { "name" "Code Pro LC" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "Code Pro LC" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "Code Pro LC" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "Code Pro LC" "tall" "14" "weight" "0" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "Code Pro LC" "tall" "9" "weight" "0" "range" "0x0000 0x017F" "antialias" "1" } } "DefaultLarge" { "1" { "name" "Code Pro LC" "tall" "18" "weight" "900" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "Code Pro LC" "tall" "21" "weight" "900" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "Code Pro LC" "tall" "22" "weight" "900" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "Code Pro LC" "tall" "28" "weight" "900" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "Code Pro LC" "tall" "18" "weight" "900" "range" "0x0000 0x017F" "antialias" "1" } "6" { "name" "Code Pro LC" "tall" "20" "range" "0x0000 0x00FF" "weight" "900" } "7" { "name" "Code Pro LC" "tall" "20" "range" "0x0000 0x00FF" "weight" "800" } } "CenterPrintText" { "1" { "name" "Code Pro Bold" "tall" "14" "weight" "900" "antialias" "1" "additive" "1" } } "PlayerPanelPlayerName" { "1" { "name" "Verdana" "tall" "6" "weight" "500" "additive" "0" "antialias" "1" } } "HudHintText" { "1" { "name" "Verdana" "tall" "12" "weight" "700" "yres" "480 599" } "2" { "name" "Verdana" "tall" "13" "weight" "700" "yres" "600 767" } "3" { "name" "Verdana" "tall" "14" "weight" "700" "yres" "768 1023" } "4" { "name" "Verdana" "tall" "20" "weight" "700" "yres" "1024 1199" } "5" { "name" "Verdana" "tall" "12" "weight" "700" "antialias" "1" } } "HudFontGiant" { "1" { "name" "Code Pro LC" "tall" "24" "tall_lodef" "80" "weight" "500" "additive" "0" "antialias" "1" "yres" "480 599" } "2" { "name" "Code Pro LC" "tall" "32" "tall_hidef" "120" "weight" "500" "additive" "0" "antialias" "1" "yres" "600 767" } "3" { "name" "Code Pro LC" "tall" "44" "weight" "500" "additive" "0" "antialias" "1" "yres" "768 1023" } "4" { "name" "Code Pro LC" "tall" "48" "weight" "500" "additive" "0" "antialias" "1" "yres" "1024 1199" } "5" { "name" "Code Pro LC" "tall" "24" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontGiantBold" { "1" { "name" "Code Pro LC" "tall" "44" "tall_lodef" "52" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontBiggerBold" { "1" { "name" "Code Pro LC" "tall" "35" "tall_lodef" "40" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontBig" { "1" { "name" "Code Pro LC" "tall" "36" "tall_hidef" "48" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumBig" { "1" { "name" "Code Pro LC" "tall" "30" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumBigBold" { "1" { "name" "Code Pro LC" "tall" "30" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMedium" { "1" { "name" "Code Pro LC" "tall" "24" "tall_lodef" "28" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumSecondary" { "1" { "name" "Code Pro LC" "tall" "24" "weight" "500" "yres" "1 1199" "additive" "0" "antialias" "1" } "2" { "name" "Code Pro LC" "tall" "10" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumBold" { "1" { "name" "Code Pro LC" "tall" "24" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumSmallBold" { "1" { "name" "Code Pro LC" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumSmall" { "1" { "name" "Code Pro LC" "tall" "18" "tall_hidef" "24" "tall_lodef" "18" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontMediumSmallSecondary" { "1" { "name" "Code Pro LC" "tall" "18" "tall_hidef" "24" "tall_lodef" "20" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontSmall" { "1" { "name" "Code Pro LC" "tall" "14" "tall_lodef" "16" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontSmallishBold" { "1" { "name" "Code Pro LC" "tall" "16" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontSmallBold" { "1" { "name" "Code Pro LC" "tall" "14" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontSmallBoldShadow" { "1" { "name" "Code Pro LC" "tall" "14" "weight" "500" "additive" "0" "antialias" "1" "dropshadow" "1" } } "HudFontSmallest" { "1" { "name" "Code Pro LC" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "HudFontSmallestShadow" { "1" { "name" "Code Pro LC" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" "dropshadow" "1" } } "HudFontSmallestBold" { "1" { "name" "Code Pro LC" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "PerformanceModeSmall" { "1" { "name" "Code Pro LC" "tall" "4" "weight" "500" "additive" "0" "antialias" "1" } } "StorePromotionsTitle" { "1" { "name" "Code Pro LC" "tall" "10" "additive" "0" "antialias" "1" } } "FontCartPrice" { "1" { "name" "Code Pro LC" "tall" "16" //"weight" "500" "additive" "0" "antialias" "1" } } "FontStorePrice" { "1" { "name" "Code Pro LC" "tall" "12" "weight" "0" "additive" "0" "antialias" "1" } } "FontStoreOriginalPrice" { "1" { "name" "Code Pro LC" "tall" "9" "weight" "0" "additive" "0" "antialias" "1" } } "FontStorePriceSmall" { "1" { "name" "Code Pro LC" "tall" "9" "weight" "0" "additive" "0" "antialias" "1" } } "FontStorePromotion" { "1" { "name" "Code Pro LC" "tall" "12" "weight" "400" "additive" "0" "antialias" "1" } } "TextTooltipFont" { "1" { "name" "Code Pro LC" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "GameUIButtons" { "1" //[$X360] { "bitmap" "1" "name" "Buttons" "scalex" "0.5" "scaley" "0.5" } } "GameUIButtonsSmall" { "1" [$X360] { "bitmap" "1" "name" "Buttons" "scalex" "0.5" "scaley" "0.5" } } "GameUIButtonsSmallest" { "1" [$X360] { "bitmap" "1" "name" "Buttons" "scalex" "0.4" "scaley" "0.4" } } "GameUIButtonsSteamController" { "1" { "bitmap" "1" "name" "ButtonsSC" "scalex" "0.5" "scaley" "0.5" } } "GameUIButtonsSteamControllerSmall" { "1" { "bitmap" "1" "name" "ButtonsSC" "scalex" "0.25" "scaley" "0.25" } } "GameUIButtonsSteamControllerSmallest" { "1" { "bitmap" "1" "name" "ButtonsSC" "scalex" "0.15" "scaley" "0.15" } } "GameUIButtonText" { "1" { "name" "Code Pro LC" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } "HudClassHealth" { "1" { "name" "Code Pro Bold" "tall" "16" "weight" "500" "additive" "0" "antialias" "1" } } "SpectatorKeyHints" { "1" { "name" "Verdana" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } "ClockSubText" { "1" { "name" "Verdana" "tall" "9" "weight" "500" "additive" "0" "antialias" "1" } } "ClockSubTextSuddenDeath" { "1" { "name" "Verdana" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } "ClockSubTextTiny" { "1" { "name" "Verdana" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } "HudSelectionText" { "1" { "name" "Code Pro LC" "tall" "15" "weight" "700" "antialias" "1" "yres" "1 599" "range" "0x0000 0x017F" "additive" "1" } "2" { "name" "Code Pro LC" "tall" "15" "weight" "700" "antialias" "1" "yres" "600 767" "range" "0x0000 0x017F" "additive" "1" } "3" { "name" "Code Pro LC" "tall" "18" "weight" "900" "antialias" "1" "yres" "768 1023" "range" "0x0000 0x017F" } "4" { "name" "Code Pro LC" "tall" "21" "weight" "900" "antialias" "1" "yres" "1024 1199" "range" "0x0000 0x017F" } "5" { "name" "Code Pro LC" "tall" "24" "weight" "1000" "antialias" "1" "yres" "1200 10000" "range" "0x0000 0x017F" } } "DebugOverlay" { "1" { "name" "Courier New" "tall" "14" "weight" "400" "outline" "1" "range" "0x0000 0x017F" } } "TFTypeDeath" { "1" { "name" "tfd" "tall" "28" "weight" "0" "additive" "0" "antialias" "1" } } "Icons" { "1" { "name" "Team Fortress" "tall" "28" "weight" "0" "additive" "1" "antialias" "1" } } "BetaFont" { "1" { "name" "Courier New" "tall" "90" "weight" "900" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "HudNumbers" { "1" { "name" "Team Fortress" "tall" "28" "weight" "0" "additive" "1" "antialias" "1" } "2" { "name" "Verdana" "tall" "28" "weight" "0" "additive" "1" "antialias" "1" } } "CloseCaption" { "1" { "name" "Code Pro LC" "tall" "10" "antialias" "1" "weight" "500" "range" "0x0000 0x017F" } } "CloseCaption_Italic" { "1" { "name" "Code Pro LC" "tall" "10" "antialias" "1" "weight" "500" "italic" "1" "range" "0x0000 0x017F" } } "CloseCaption_Bold" { "1" { "name" "Code Pro LC" "tall" "10" "antialias" "1" "weight" "900" "range" "0x0000 0x017F" } } "CloseCaption_BoldItalic" { "1" { "name" "Code Pro LC" "tall" "10" "antialias" "1" "weight" "900" "italic" "1" "range" "0x0000 0x017F" } } "CloseCaption_Small" { "1" { "name" "Code Pro LC" "tall" "8" "antialias" "1" "weight" "900" "range" "0x0000 0x017F" } } "Marlett" { "1" { "name" "Marlett" "tall" "20" "weight" "0" "symbol" "1" "range" "0x0000 0x007F" } } "MarlettSmall" { "1" { "name" "Marlett" "tall" "14" "weight" "0" "symbol" "1" "range" "0x0000 0x007F" } } "MenuMainTitle" { "1" { "name" "Code Pro LC" "tall" "24" "antialias" "1" "weight" "500" } } "MenuClassBuckets" { "1" { "name" "Code Pro LC" "tall" "11" "antialias" "1" "weight" "500" } } "MenuKeys" { "1" { "name" "Code Pro LC" "tall" "12" "antialias" "1" "weight" "500" } } "GoalText" { "1" { "name" "Code Pro LC" "tall" "13" "weight" "800" "additive" "0" "antialias" "1" } } "ChalkboardTitle" { "1" { "name" "TF2 Professor" "tall" "28" "antialias" "1" "custom" "1" [$OSX] "weight" "500" } } "ChalkboardTitleBig" { "1" { "name" "TF2 Professor" "tall" "40" "antialias" "1" "custom" "1" [$OSX] "weight" "500" } } "ChalkboardTitleMedium" { "1" { "name" "TF2 Professor" "tall" "24" "antialias" "1" "custom" "1" [$OSX] "weight" "500" } } "ChalkboardText" { "1" { "name" "TF2 Professor" "tall" "14" [!$OSX] "tall" "15" [$OSX] "antialias" "1" "custom" "1" [$OSX] "weight" "500" } } "ScoreboardSmallest" { "1" { "name" "Verdana" "tall" "6" "weight" "400" "additive" "0" "antialias" "1" } } "ScoreboardVerySmall" { "1" { "name" "Code Pro LC" "tall" "8" "weight" "400" "additive" "0" "antialias" "1" } } "ScoreboardSmall" { "1" { "name" "Code Pro LC" "tall" "10" "weight" "400" "additive" "0" "antialias" "1" } } "ScoreboardMediumSmall" { "1" { "name" "Code Pro LC" "tall" "10" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardMedium" { "1" { "name" "Code Pro LC" "tall" "20" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardTeamName" { "1" { "name" "Code Pro LC" "tall" "20" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardTeamCountNew" { "1" { "name" "Code Pro LC" "tall" "14" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardTeamNameNew" { "1" { "name" "Code Pro LC" "tall" "14" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardTeamNameLarge" { "1" { "name" "Code Pro LC" "tall" "34" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "ScoreboardTeamScoreNew" { "1" { "name" "Code Pro LC" "tall" "36" "weight" "500" "additive" "0" "antialias" "1" } } "ScoreboardTeamScore" { "1" { "name" "Code Pro LC" "tall" "52" "range" "0x0000 0x00FF" "weight" "400" "yres" "1 599" "antialias" "1" } "2" { "name" "Code Pro LC" "tall" "72" "range" "0x0000 0x00FF" "weight" "400" "yres" "600 767" "antialias" "1" } "3" { "name" "Code Pro LC" "tall" "100" "range" "0x0000 0x00FF" "weight" "400" "yres" "768 1023" "antialias" "1" } "4" { "name" "Code Pro LC" "tall" "140" "range" "0x0000 0x00FF" "weight" "400" "yres" "1024 1199" "antialias" "1" } "5" { "name" "Code Pro LC" "tall" "180" "range" "0x0000 0x00FF" "weight" "400" "yres" "1200 10000" "antialias" "1" } } "MatchSummaryTeamScores" { "1" { "name" "Code Pro Bold" "tall" "36" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "MatchSummaryStatsAndMedals" { "1" { "name" "Code Pro LC" "tall" "14" "weight" "400" "additive" "0" "antialias" "1" } } "MatchSummaryWinner" { "1" { "name" "Code Pro LC" "tall" "20" "weight" "400" "additive" "0" "antialias" "1" } } "CompMatchStartTeamNames" { "1" { "name" "Code Pro LC" "tall" "14" "weight" "400" "additive" "0" "antialias" "1" } } "ControlPointTimer" { "1" { "name" "Code Pro LC" "tall" "10" "weight" "400" "additive" "0" "antialias" "1" } } "ControlPointTimerSmaller" { "1" { "name" "Code Pro LC" "tall" "7" "weight" "400" "additive" "0" "antialias" "1" } } "Link" { "1" { "name" "Code Pro LC" "tall" "10" "weight" "400" "additive" "0" "antialias" "1" } } "TargetID" { "1" { "name" "Verdana" "tall" "12" "weight" "700" "yres" "480 599" "dropshadow" "0" } "2" { "name" "Verdana" "tall" "13" "weight" "700" "yres" "600 767" "dropshadow" "0" } "3" { "name" "Verdana" "tall" "14" "weight" "700" "yres" "768 1023" "dropshadow" "0" } "4" { "name" "Verdana" "tall" "20" "weight" "700" "yres" "1024 1199" "dropshadow" "0" } "5" { "name" "Verdana" "tall" "24" "weight" "700" "yres" "1200 10000" "dropshadow" "0" } } "ChatFont" { "1" { "name" "Verdana" "tall" "12" "weight" "700" "yres" "480 599" "dropshadow" "1" } "2" { "name" "Verdana" "tall" "13" "weight" "700" "yres" "600 767" "dropshadow" "1" } "3" { "name" "Verdana" "tall" "14" "weight" "700" "yres" "768 1023" "dropshadow" "1" } "4" { "name" "Verdana" "tall" "20" "weight" "700" "yres" "1024 1199" "dropshadow" "1" } "5" { "name" "Verdana" "tall" "24" "weight" "700" "yres" "1200 10000" "dropshadow" "1" } } "ChatMiniFont" { "1" { "name" "Verdana" "tall" "10" "weight" "700" "yres" "480 599" "dropshadow" "1" } "2" { "name" "Verdana" "tall" "10" "weight" "700" "yres" "600 767" "dropshadow" "1" } "3" { "name" "Verdana" "tall" "13" "weight" "700" "yres" "768 1023" "dropshadow" "1" } "4" { "name" "Verdana" "tall" "14" "weight" "700" "yres" "1024 1199" "dropshadow" "1" } "5" { "name" "Verdana" "tall" "15" "weight" "700" "yres" "1200 10000" "dropshadow" "1" } } "MenuSmallestFont" { "1" { "name" "Arial Black" "tall" "8" "range" "0x0000 0x00FF" "weight" "300" "antialias" "1" } } "MenuSmallFont" { "1" { "name" "Code Pro LC" "tall" "14" "range" "0x0000 0x00FF" "weight" "300" "antialias" "1" } } "CapPlayerFont" { "1" { "name" "Code Pro LC" "tall" "12" "weight" "500" "range" "0x0000 0x017F" "TextColor" "Black" "antialias" "1" } } "CapPlayerFontSmall" { "1" { "name" "Code Pro LC" "tall" "8" "weight" "500" "range" "0x0000 0x017F" "TextColor" "Black" "antialias" "1" } } "TFFontSmall" { "1" { "name" "Code Pro LC" "tall" "8" "weight" "0" "additive" "1" "antialias" "1" } } "TFFontMedium" { "1" { "name" "Code Pro LC" "tall" "9" "weight" "400" "additive" "0" "antialias" "1" } } "InstructionalText" { "1" { "name" "Verdana" "tall" "11" [!$OSX] "tall" "9" [$OSX] "weight" "800" "additive" "0" "antialias" "1" } } "MatchmakingDialogTitle" { "1" { "name" "Code Pro LC" "tall" "36" "weight" "500" } } "MatchmakingDialogSessionOptionsTitle" { "1" { "name" "Code Pro LC" "tall" "30" "weight" "500" } } "MatchmakingDialogMenuLarge" { "1" { "name" "Code Pro LC" "tall" "28" "weight" "500" } } "MatchmakingDialogMenuBrowserHostname" { "1" { "name" "Code Pro LC" "tall" "22" "weight" "900" } } "MatchmakingDialogMenuBrowserDetails" { "1" { "name" "Code Pro LC" "tall" "18" "weight" "900" } } "MatchmakingDialogMenuMedium" { "1" { "name" "Code Pro LC" "tall" "22" "weight" "500" } } "MatchmakingDialogMenuMediumSmall" { "1" { "name" "Code Pro LC" "tall" "18" "weight" "500" } } "MatchmakingDialogMenuSmall" { "1" { "name" "Code Pro LC" "tall" "22" "weight" "900" } } "MatchmakingDialogMenuSmallest" { "1" { "name" "Code Pro LC" "tall" "18" "weight" "900" } } "RankingDialogHeaders" { "1" { "name" "Code Pro LC" "tall" "15" "weight" "900" } } "TeamMenuBold" { "1" { "name" "Code Pro LC" "tall" "36" "weight" "500" "additive" "0" "antialias" "1" } } "TeamMenu" { "1" { "name" "Code Pro LC" "tall" "11" "weight" "600" "additive" "0" "antialias" "1" } } "IntroMenuCaption" { "1" { "name" "Code Pro LC" "tall" "18" "weight" "400" "additive" "0" "antialias" "1" } } "AchievementNotification" { "1" { "name" "Trebuchet MS" "tall" "14" "weight" "900" "antialias" "1" } } "ImportToolSmallestBold" { "1" { "name" "Verdana" "tall" "10" "weight" "600" "additive" "0" "antialias" "1" } } "ImportToolSmallest" { "1" { "name" "Verdana" "tall" "10" "weight" "500" "additive" "0" "antialias" "1" } } "SpectatorVerySmall" { "1" { "name" "Code Pro LC" "tall" "10" "weight" "400" "additive" "0" "antialias" "1" } } // Used by scoreboard and spectator UI for names which don't map in the normal fashion "DefaultVerySmallFallBack" { "1" { "name" "Verdana" "tall" "10" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" "antialias" "1" } "2" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "600 1199" "antialias" "1" } "3" { "name" "Verdana" "tall" "15" "weight" "0" "range" "0x0000 0x017F" "yres" "1200 6000" "antialias" "1" } } "ItemFontNameSmallest" { "1" { "name" "Code Pro Bold" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontNameSmall" { "1" { "name" "Code Pro Bold" "tall" "10" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontNameLarge" { "1" { "name" "Code Pro Bold" "tall" "12" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontNameLarger" { "1" { "name" "Code Pro Bold" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontAttribSmallest" { "1" { "name" "Code Pro LC" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } ItemFontAttribSmallv2 { "1" { "name" "Code Pro LC" "tall" "8" "antialias" "1" "weight" "500" } } "ItemFontAttribSmall" { "1" { "name" "Code Pro LC" "tall" "8" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontAttribLarge" { "1" { "name" "Code Pro LC" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "ItemFontAttribLarger" { "1" { "name" "Code Pro LC" "tall" "14" "weight" "500" "additive" "0" "antialias" "1" } } "AchievementTracker_Name" { "1" { "name" "Code Pro LC" "tall" "9" "weight" "500" "additive" "0" "antialias" "1" } } "AchievementTracker_NameGlow" { "1" { "name" "Verdana" "tall" "9" "weight" "500" "blur" "3" "additive" "1" "antialias" "1" } } "AchievementTracker_Desc" { "1" { "name" "Verdana" "tall" "7" "weight" "0" "additive" "1" "antialias" "1" } } "QuestObjectiveTracker_Desc" { "1" { "name" "Verdana" "tall" "7" [!$POSIX] "tall" "8" [$POSIX] "weight" "0" "additive" "1" "antialias" "1" } } "QuestObjectiveTracker_DescGlow" { "1" { "name" "Verdana" "tall" "7" [!$POSIX] "tall" "8" [$POSIX] "weight" "0" "antialias" "1" } } "QuestObjectiveTracker_DescBlur" { "1" { "name" "Verdana" "tall" "7" [!$POSIX] "tall" "8" [$POSIX] "weight" "0" "blur" "3" "additive" "1" "antialias" "1" } } "ItemTrackerScore_InGame" { "1" { "name" "Verdana" "tall" "7" "weight" "0" "antialias" "1" } } "QuestFlavorText" { "1" { "name" "ocra" "tall" "10" "weight" "400" "yres" "480 599" "additive" "0" "antialias" "1" } "2" { "name" "ocra" "tall" "14" "weight" "400" "additive" "0" "yres" "600 1023" "antialias" "1" } "3" { "name" "ocra" "tall" "18" "weight" "400" "additive" "0" "yres" "1024 6000" "antialias" "1" } } "QuestObjectiveText" { "1" { "name" "ocra" "tall" "10" "weight" "800" "yres" "480 599" "additive" "0" "antialias" "1" } "2" { "name" "ocra" "tall" "14" "weight" "800" "additive" "0" "yres" "600 1023" "antialias" "1" } "3" { "name" "ocra" "tall" "18" "weight" "800" "additive" "0" "yres" "1024 6000" "antialias" "1" } } "QuestLargeText" { "1" { "name" "ocra" "tall" "16" "weight" "400" "additive" "0" "antialias" "1" } } "QuestStickyText" { "1" { "name" "TF2 Professor" "tall" "20" "antialias" "1" "custom" "1" [$OSX] "weight" "500" } } "QuestInstructionText_Merasmus" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "400" "yres" "480 599" "additive" "0" "antialias" "1" } "2" { "name" "TF2 Secondary" "tall" "14" "weight" "400" "additive" "0" "yres" "600 1023" "antialias" "1" } "3" { "name" "TF2 Secondary" "tall" "22" "weight" "400" "additive" "0" "yres" "1024 6000" "antialias" "1" } } "QuestFlavorText_Merasmus" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "400" "yres" "480 599" "additive" "0" "antialias" "1" "italic" "1" } "2" { "name" "TF2 Secondary" "tall" "14" "weight" "400" "additive" "0" "yres" "600 1023" "antialias" "1" "italic" "1" } "3" { "name" "TF2 Secondary" "tall" "22" "weight" "400" "additive" "0" "yres" "1024 6000" "antialias" "1" "italic" "1" } } "QuestObjectiveText_Merasmus" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "800" "yres" "480 599" "additive" "0" "antialias" "1" } "2" { "name" "TF2 Secondary" "tall" "14" "weight" "800" "additive" "0" "yres" "600 1023" "antialias" "1" } "3" { "name" "TF2 Secondary" "tall" "18" "weight" "800" "additive" "0" "yres" "1024 6000" "antialias" "1" } } "QuestMediumText_Merasmus" { "1" { "name" "TF2 Secondary" "tall" "13" "weight" "400" "additive" "0" "antialias" "1" } } "QuestLargeText_Merasmus" { "1" { "name" "TF2 Secondary" "tall" "16" "weight" "400" "additive" "0" "antialias" "1" } } "AdFont_ItemName" { "1" { "name" "TF2 Secondary" "tall" "10" "weight" "400" "additive" "0" "antialias" "1" } } "AdFont_AdText" { "1" { "name" "Verdana" "tall" "8" "weight" "400" "additive" "0" "antialias" "1" } } "AdFont_PurchaseButton" { "1" { "name" "Verdana" "tall" "8" "weight" "0" "antialias" "1" } } "TradeUp_Text" { "1" { "name" "Verdana" "tall" "8" "weight" "400" "antialias" "1" "additive" "0" } } "TradeUp_Quote" { "1" { "name" "Trebuchet MS" "tall" "9" "weight" "400" "antialias" "1" "additive" "0" "italic" "1" } } //////////////////// REPLAY FONTS ////////////////////////////// "ReplayVerySmall" { "1" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "Verdana" "tall" "14" "weight" "0" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "Verdana" "tall" "16" "weight" "0" "range" "0x0000 0x017F" "yres" "1200 6000" "antialias" "1" } } "ReplayBrowserSmallest" { "1" { "name" "Code Pro LC" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "ReplaySmaller" { "1" { "name" "Verdana" "tall" "12" "weight" "0" "range" "0x0000 0x017F" "yres" "480 599" } "2" { "name" "Verdana" "tall" "13" "weight" "0" "range" "0x0000 0x017F" "yres" "600 767" } "3" { "name" "Verdana" "tall" "14" "weight" "0" "range" "0x0000 0x017F" "yres" "768 1023" "antialias" "1" } "4" { "name" "Verdana" "tall" "20" "weight" "0" "range" "0x0000 0x017F" "yres" "1024 1199" "antialias" "1" } "5" { "name" "Verdana" "tall" "22" "weight" "0" "range" "0x0000 0x017F" "yres" "1200 6000" "antialias" "1" } "6" { "name" "Arial" "tall" "12" "range" "0x0000 0x00FF" "weight" "0" } } "ReplayMediumSmall" { "1" { "name" "Code Pro LC" "tall" "11" "weight" "500" "additive" "0" "antialias" "1" } } "ReplayMedium" { "1" { "name" "Code Pro LC" "tall" "14" "weight" "500" "additive" "0" "antialias" "1" } } "ReplayMediumBig" { "1" { "name" "Code Pro LC" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } "ReplayBrowserTab" { "1" { "name" "Code Pro LC" "tall" "24" "weight" "500" "additive" "0" "antialias" "1" } } "ReplayLarger" { "1" { "name" "Code Pro LC" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } //////////////////// ECON FONTS ////////////////////////////// "EconFontSmall" { "1" { "name" "Code Pro LC" "tall" "14" "weight" "500" "additive" "0" "antialias" "1" } } "EconFontMedium" { "1" { "name" "Code Pro LC" "tall" "24" "weight" "500" "additive" "0" "antialias" "1" } } ControllerHintText { "1" { "name" "Code Pro LC" "tall" "15" "weight" "500" "range" "0x0000 0x007F" "antialias" "1" "additive" "0" } } "MMenuPlayListDesc" { "1" { "name" "Code Pro LC" "tall" "9" "weight" "400" "additive" "0" "antialias" "1" } } "XPSource" { "1" { "name" "Code Pro LC" "tall" "11" "weight" "500" "antialias" "1" "custom" "1" } } "XPSource_Glow" { "1" { "name" "Code Pro LC" "tall" "11" "weight" "500" "blur" "3" "additive" "1" "antialias" "1" } } "MapVotesPercentage" { "1" { "name" "Code Pro LC" "tall" "12" "weight" "500" "additive" "0" "antialias" "1" "dropshadow" "1" } } "QuestMap_Small_Blur" { "1" { "name" "Code Pro LC" "tall" "7" "weight" "0" "blur" "3" "additive" "1" "antialias" "1" } } "QuestMap_Small" { "1" { "name" "Code Pro LC" "tall" "7" "weight" "400" "additive" "0" "antialias" "1" } } "QuestMap_Medium" { "1" { "name" "Code Pro LC" "tall" "10" "weight" "400" "additive" "0" "antialias" "1" } } "QuestMap_Large" { "1" { "name" "Code Pro LC" "tall" "14" "weight" "400" "additive" "0" "antialias" "1" } } "QuestMap_Huge" { "1" { "name" "Code Pro LC" "tall" "30" "weight" "400" "additive" "0" "antialias" "1" } } } BitmapFontFiles { // UI buttons, custom font, (256x64) "Buttons" "materials/vgui/fonts/buttons_32.vbf" } } ================================================ FILE: resource/scheme/clientscheme_icons.res ================================================ Scheme { Fonts { "LargeIcons" { "1" { "name" "TF2Icons" "tall" "50" "weight" "0" "additive" "0" "antialias" "1" } } "MediumIcons" { "1" { "name" "TF2Icons" "tall" "25" "weight" "0" "additive" "0" "antialias" "1" } } "MediumSmallIcons" { "1" { "name" "TF2Icons" "tall" "20" "weight" "0" "additive" "0" "antialias" "1" } } "SmallIcons" { "1" { "name" "TF2Icons" "tall" "16" "weight" "0" "additive" "0" "antialias" "1" } } "SmallerIcons" { "1" { "name" "TF2Icons" "tall" "12" "weight" "0" "additive" "0" "antialias" "1" } } "StreamerMode" { "1" { "name" "Streamer Mode" "tall" "15" "weight" "0" "additive" "0" "antialias" "1" } } } } ================================================ FILE: resource/scheme/clientscheme_settings.res ================================================ Scheme { ///////////////////// BASE SETTINGS //////////////////////// // default settings for all panels // controls use these to determine their settings BaseSettings { // vgui_controls color specifications ReplayBrowser.BgColor "DarkGrey" ReplayBrowser.Details.TitleEdit.Carat.FgColor "LightRed" ReplayBrowser.Button.ArmedBgColor "HudWhite" ReplayBrowser.Button.DepressedBgColor "HudBlack" ReplayBrowser.CollectionTitle.FgColor "LightRed" ReplayBrowser.Warning.FgColor "LightRed" ReplayBrowser.ScrollBar.SliderButton.FgColor "TransparentYellow" ReplayBrowser.Search.BgColor "Black" ReplayBrowser.Search.FgColor "TanLight" Replay.RenderDialog.BgColor "DarkGrey" Econ.Dialog.BgColor "Blank" Econ.Button.BgColor "HudBlack" Econ.Button.FgColor "HudWhite" Econ.Button.ArmedBgColor "HudWhite" Econ.Button.ArmedFgColor "HudBlack" Econ.Button.DepressedBgColor "HudBlack" Econ.Button.DepressedFgColor "Black" Econ.Button.PresetDefaultColorFg "TanLight" Econ.Button.PresetArmedColorFg "Black" Econ.Button.PresetDepressedColorFg "TanLight" Econ.Button.PresetDefaultColorBg "Yellow" Econ.Button.PresetArmedColorBg "HudWhite" Econ.Button.PresetDepressedColorBg "HudWhite" Econ.Button.Border.Default "TanDark" Econ.Button.Border.Armed "TanLight" Border.Bright "Blank" Border.Dark "Black" Border.Selection "Gray" Button.TextColor "TanLight" Button.BgColor "HudBlack" Button.ArmedTextColor "TanLight" Button.ArmedBgColor "TanDark" Button.SelectedTextColor "TanDark" Button.SelectedBgColor "TanLight" Button.DepressedTextColor "TanDark" Button.DepressedBgColor "TanDarker" CheckButton.TextColor "TanLight" CheckButton.SelectedTextColor "TanLight" CheckButton.BgColor "TransparentBlack" CheckButton.Border1 "TanLight" // the left checkbutton border CheckButton.Border2 "TanLight" // the right checkbutton border CheckButton.Check "TanLight" // color of the check itself CheckButton.HighlightFgColor "TanLight" ComboBoxButton.ArrowColor "TanDark" ComboBoxButton.ArmedArrowColor "TanLight" ComboBoxButton.BgColor "Blank" ComboBoxButton.DisabledBgColor "Blank" Frame.BgColor "TransparentBlack" Frame.OutOfFocusBgColor "TransparentBlack" Frame.FocusTransitionEffectTime "0.0" Frame.TransitionEffectTime "0.0" Frame.AutoSnapRange "0" FrameGrip.Color1 "Blank" FrameGrip.Color2 "Blank" FrameTitleButton.FgColor "Blank" FrameTitleButton.BgColor "Blank" FrameTitleButton.DisabledFgColor "Blank" FrameTitleButton.DisabledBgColor "Blank" FrameSystemButton.FgColor "Blank" FrameSystemButton.BgColor "Blank" FrameSystemButton.Icon "" FrameSystemButton.DisabledIcon "" FrameTitleBar.TextColor "Orange" FrameTitleBar.BgColor "Blank" FrameTitleBar.DisabledTextColor "Orange" FrameTitleBar.DisabledBgColor "Blank" GraphPanel.FgColor "Orange" GraphPanel.BgColor "TransparentBlack" Label.TextDullColor "TanDark" Label.TextColor "TanLight" Label.TextBrightColor "TanLight" Label.SelectedTextColor "TanLight" Label.BgColor "Blank" Label.DisabledFgColor1 "Blank" Label.DisabledFgColor2 "White" ListPanel.TextColor "Orange" ListPanel.BgColor "TransparentBlack" ListPanel.SelectedTextColor "Black" ListPanel.SelectedBgColor "HUDRedTeamSolid" ListPanel.SelectedOutOfFocusBgColor "HUDRedTeamSolid" ListPanel.EmptyListInfoTextColor "Orange" Menu.TextColor "TanLight" Menu.BgColor "DarkGrey" Menu.ArmedTextColor "TanDark" Menu.ArmedBgColor "DarkGrey" Menu.TextInset "6" Chat.TypingText "Orange" Panel.FgColor "Gray" Panel.BgColor "Blank" HTML.BgColor "Blank" ProgressBar.FgColor "ProgressOffWhite" ProgressBar.BgColor "ProgressBackground" CircularProgressBar.FgColor "TanLight" CircularProgressBar.BgColor "TanDark" "BuildingHealthBar.BgColor" "HealthBgGrey" "BuildingHealthBar.Health" "ProgressOffWhite" "BuildingHealthBar.LowHealth" "LowHealthRed" PropertySheet.TextColor "Orange" PropertySheet.SelectedTextColor "Orange" PropertySheet.TransitionEffectTime "0.25" // time to change from one tab to another RadioButton.TextColor "Yellow" RadioButton.SelectedTextColor "Yellow" RichText.TextColor "Gray" RichText.BgColor "Blank" RichText.SelectedTextColor "Gray" RichText.SelectedBgColor "HUDRedTeamSolid" ScrollBarButton.FgColor "Gray" ScrollBarButton.BgColor "Blank" ScrollBarButton.ArmedFgColor "Gray" ScrollBarButton.ArmedBgColor "Blank" ScrollBarButton.DepressedFgColor "Black" ScrollBarButton.DepressedBgColor "Blank" ScrollBarSlider.FgColor "Gray" // nob color ScrollBarSlider.BgColor "Blank" // slider background color SectionedListPanel.HeaderTextColor "Orange" SectionedListPanel.HeaderBgColor "Blank" SectionedListPanel.DividerColor "Black" SectionedListPanel.TextColor "Orange" SectionedListPanel.BrightTextColor "Orange" SectionedListPanel.BgColor "TransparentLightBlack" SectionedListPanel.SelectedTextColor "Black" SectionedListPanel.SelectedBgColor "HUDRedTeamSolid" SectionedListPanel.OutOfFocusSelectedTextColor "Black" SectionedListPanel.OutOfFocusSelectedBgColor "255 255 255 32" Slider.NobColor "108 108 108 255" Slider.TextColor "127 140 127 255" Slider.TrackColor "31 31 31 255" Slider.DisabledTextColor1 "117 117 117 255" Slider.DisabledTextColor2 "30 30 30 255" TextEntry.TextColor "Gray" TextEntry.BgColor "Blank" TextEntry.CursorColor "Gray" TextEntry.DisabledTextColor "Gray" TextEntry.DisabledBgColor "Blank" TextEntry.SelectedTextColor "TanLight" TextEntry.SelectedBgColor "Gray" TextEntry.OutOfFocusSelectedBgColor "Blank" TextEntry.FocusEdgeColor "Blank" ToggleButton.SelectedTextColor "Yellow" Tooltip.TextColor "TransparentBlack" Tooltip.BgColor "HUDRedTeamSolid" TreeView.BgColor "TransparentBlack" WizardSubPanel.BgColor "Blank" TimerProgress.Active "HudTimerProgressActive" TimerProgress.InActive "HudTimerProgressInActive" TimerProgress.Warning "HudTimerProgressWarning" HudObjectives.FgColor "HudPanelForeground" HudObjectives.BgColor "HudPanelBackground" HudObjectives.BorderColor "HudPanelBorder" HudProgressBar.Active "HudProgressBarActive" HudProgressBar.InActive "HudProgressBarInActive" HudCaptureIcon.Active "HudProgressBarActive" HudCaptureIcon.InActive "HudProgressBarInActive" HudCaptureProgressBar.Active "HudProgressBarActive" HudCaptureProgressBar.InActive "HudProgressBarInActive" // Scheme-Specific Colors "FgColor" "Orange" "BgColor" "TransparentBlack" "ViewportBG" "Blank" "TeamSpec" "204 204 204 255" "TeamRed" "255 64 64 255" "TeamBlue" "153 204 255 255" "MapDescriptionText" "Gray" // the text used in the map description window "HudIcon_Green" "0 160 0 255" "HudIcon_Red" "160 0 0 255" // CHudMenu "ItemColor" "255 167 42 200" // default 255 167 42 255 "MenuColor" "255 255 255 255" "MenuBoxBg" "HudBlack" // Weapon Selection Colors "SelectionNumberFg" "251 235 202 255" "SelectionTextFg" "251 235 202 255" "SelectionEmptyBoxBg" "0 0 0 80" "SelectionBoxBg" "0 0 0 80" "SelectionSelectedBoxBg" "0 0 0 190" // Hint Message Colors "HintMessageFg" "255 255 255 255" "HintMessageBg" "0 0 0 60" "ProgressBarFg" "255 30 13 255" // Top-left corner of the menu on the main screen "Main.Menu.X" "32" "Main.Menu.Y" "248" // Blank space to leave beneath the menu on the main screen "Main.BottomBorder" "32" "VguiScreenCursor" "255 208 64 255" } } ================================================ FILE: resource/scheme/clientscheme_xhairs.res ================================================ Scheme { Fonts { "Size_10" { "1" { "name" "TF2Crosshairs" "tall" "10" "weight" "0" "antialias" "1" } } "Size_11" { "1" { "name" "TF2Crosshairs" "tall" "11" "weight" "0" "antialias" "1" } } "Size_12" { "1" { "name" "TF2Crosshairs" "tall" "12" "weight" "0" "antialias" "1" } } "Size_13" { "1" { "name" "TF2Crosshairs" "tall" "13" "weight" "0" "antialias" "1" } } "Size_14" { "1" { "name" "TF2Crosshairs" "tall" "14" "weight" "0" "antialias" "1" } } "Size_15" { "1" { "name" "TF2Crosshairs" "tall" "15" "weight" "0" "antialias" "1" } } "Size_16" { "1" { "name" "TF2Crosshairs" "tall" "16" "weight" "0" "antialias" "1" } } "Size_17" { "1" { "name" "TF2Crosshairs" "tall" "17" "weight" "0" "antialias" "1" } } "Size_18" { "1" { "name" "TF2Crosshairs" "tall" "18" "weight" "0" "antialias" "1" } } "Size_19" { "1" { "name" "TF2Crosshairs" "tall" "19" "weight" "0" "antialias" "1" } } "Size_20" { "1" { "name" "TF2Crosshairs" "tall" "20" "weight" "0" "antialias" "1" } } "Size_21" { "1" { "name" "TF2Crosshairs" "tall" "21" "weight" "0" "antialias" "1" } } "Size_22" { "1" { "name" "TF2Crosshairs" "tall" "22" "weight" "0" "antialias" "1" } } "Size_23" { "1" { "name" "TF2Crosshairs" "tall" "23" "weight" "0" "antialias" "1" } } "Size_24" { "1" { "name" "TF2Crosshairs" "tall" "24" "weight" "0" "antialias" "1" } } "Size_25" { "1" { "name" "TF2Crosshairs" "tall" "25" "weight" "0" "antialias" "1" } } "Size_26" { "1" { "name" "TF2Crosshairs" "tall" "26" "weight" "0" "antialias" "1" } } "Size_27" { "1" { "name" "TF2Crosshairs" "tall" "27" "weight" "0" "antialias" "1" } } "Size_28" { "1" { "name" "TF2Crosshairs" "tall" "28" "weight" "0" "antialias" "1" } } "Size_29" { "1" { "name" "TF2Crosshairs" "tall" "29" "weight" "0" "antialias" "1" } } "Size_30" { "1" { "name" "TF2Crosshairs" "tall" "30" "weight" "0" "antialias" "1" } } } } ================================================ FILE: resource/sourcescheme.res ================================================ #base "sourceschemebase.res" Scheme { //////////////////////// COLORS /////////////////////////// // color details // this is a list of all the colors used by the scheme Colors { // HUD COLORS //--------------------------------------------- "Yellow" "169 123 53 255" "White" "242 242 242 255" "DullWhite" "132 132 132 255" "DarkGrey" "27 27 27 255" "Black" "17 17 17 255" "Blank" "0 0 0 0" "HudBlack" "0 0 0 200" // BASE COLORS //--------------------------------------------- "TFDarkBrown" "60 56 53 255" "TFDarkBrownTransparent" "60 56 53 190" "TFTanBright" "236 227 203 150" "TFTanLight" "201 188 162 150" "TFTanMedium" "131 121 104 150" "TFTanLightBright" "229 223 211 90" "TFTanLightDark" "96 90 78 90" "TFOrangeBright" "156 82 33 255" "TFTextBright" "251 236 203 150" "TFTextLight" "201 188 162 255" "TFTextMedium" "131 121 104 255" "TFTextMediumDark" "104 96 83 255" "TFTextBlack" "42 39 37 255" "TFTextDull" "131 121 104 255" "TFMediumBrown" "69 64 58 255" "QuickListBGDeselected" "0 0 0 0" "QuickListBGSelected" "169 123 53 255" "Blank" "0 0 0 0" "ControlBG" "76 88 68 255" // background color of controls "ControlDarkBG" "90 106 80 255" // darker background color; used for background of scrollbars "WindowBG" "62 70 55 255" // background color of text edit panes (chat, text entries, etc.) "SelectionBG" "90 84 75 255" // background color of any selected text or menu item "SelectionBG2" "69 64 57 255" // selection background in window w/o focus "ListBG" "39 36 34 255" // background of server browser, buddy list, etc. } BaseSettings { // scheme-specific colors Border.Bright "Blank" Border.Dark "Blank" Border.Selection "Blank" Border.DarkSolid "32 32 32 255" Button.TextColor "White" Button.BgColor "Black" Button.ArmedTextColor "White" Button.ArmedBgColor "Yellow" Button.DepressedTextColor "White" Button.DepressedBgColor "Yellow" Button.FocusBorderColor "Blank" CheckButton.TextColor "DullWhite" CheckButton.SelectedTextColor "White" CheckButton.BgColor "Black" CheckButton.HighlightFgColor "Yellow" CheckButton.ArmedBgColor "Blank" CheckButton.DepressedBgColor "Blank" CheckButton.Border1 "Border.Dark" CheckButton.Border2 "Border.Bright" CheckButton.Check "White" CheckButton.DisabledBgColor "Blank" ToggleButton.SelectedTextColor "White" ComboBoxButton.ArrowColor "DullWhite" ComboBoxButton.ArmedArrowColor "White" ComboBoxButton.BgColor "Blank" ComboBoxButton.DisabledBgColor "Blank" RadioButton.TextColor "DullWhite" RadioButton.SelectedTextColor "White" RadioButton.ArmedTextColor "TFTextMedium" Frame.BgColor "DarkGrey" Frame.OutOfFocusBgColor "DarkGrey" FrameGrip.Color1 "TFTanMedium" FrameGrip.Color2 "White" FrameTitleButton.FgColor "White" FrameTitleBar.Font "UiBold" [!$OSX] FrameTitleBar.TextColor "White" FrameTitleBar.DisabledTextColor "DullWhite" Label.TextDullColor "DullWhite" Label.TextColor "White" Label.TextBrightColor "White" Label.SelectedTextColor "White" Label.BgColor "Blank" Label.DisabledFgColor1 "DullWhite" Label.DisabledFgColor2 "Blank" ListPanel.TextColor "White" ListPanel.BgColor "HudBlack" ListPanel.SelectedBgColor "White" ListPanel.SelectedOutOfFocusBgColor "DullWhite" MainMenu.TextColor "DullWhite" [!$OSX] MainMenu.ArmedTextColor "White" [!$OSX] MainMenu.Inset "32" Menu.TextInset "6" Menu.FgColor "White" Menu.BgColor "HudBlack" Menu.ArmedFgColor "Black" Menu.ArmedBgColor "White" Menu.DividerColor "Border.Dark" ScrollBarButton.FgColor "White" ScrollBarButton.BgColor "Black" ScrollBarButton.ArmedFgColor "Black" ScrollBarButton.ArmedBgColor "White" ScrollBarButton.DepressedFgColor "Black" ScrollBarButton.DepressedBgColor "White" ScrollBarSlider.BgColor "Black" ScrollBarSlider.FgColor "White" Slider.NobColor "TFTanLight" Slider.TextColor "White" Slider.TrackColor "HudBlack" Slider.DisabledTextColor1 "TFTextMediumDark" Slider.DisabledTextColor2 "Blank" TextEntry.TextColor "White" TextEntry.DisabledTextColor "DullWhite" TextEntry.SelectedBgColor "White" } Borders { BaseBorder SubtleBorder ButtonBorder RaisedBorder ComboBoxBorder DepressedBorder MenuBorder SubtleBorder BrowserBorder DepressedBorder PropertySheetBorder RaisedBorder FrameBorder { Left { "1" { "color" "Border.DarkSolid" "offset" "0 0" } "2" { "color" "Border.DarkSolid" "offset" "0 0" } } Right { "1" { "color" "Border.DarkSolid" "offset" "0 0" } "2" { "color" "Border.DarkSolid" "offset" "0 0" } } Top { "1" { "color" "Border.DarkSolid" "offset" "0 0" } "2" { "color" "Border.DarkSolid" "offset" "0 0" } } Bottom { "1" { "color" "Border.DarkSolid" "offset" "0 0" } "2" { "color" "Border.DarkSolid" "offset" "0 0" } } } } Fonts { "Trebuchet24" { "1" { "name" "TF2 Build" "tall" "24" "weight" "900" "antialias" "1" "dropshadow" "1" } } "Trebuchet20" { "1" { "name" "TF2 Build" "tall" "20" "weight" "900" "antialias" "1" "dropshadow" "1" } } "Trebuchet18" { "1" { "name" "TF2 Build" "tall" "18" "weight" "900" "antialias" "1" "dropshadow" "1" } } "MainMenuFont" { "1" [!$OSX] { "name" "TF2 Build" "tall" "18" "weight" "500" "additive" "0" "antialias" "1" } } "MenuLarge" { "1" [disabled] { "tall_disabled" "24" } } "ServerBrowserTitle" { "1" { "name" "TF2 Build" "tall" "35" "tall_lodef" "40" "weight" "500" "additive" "0" "antialias" "1" "dropshadow" "1" } } "Default" [disabled] { "1" { "name" "Verdana" "tall" "14" "weight" "500" } } "ServerBrowserSmall" { "1" { "name" "Tahoma" "tall" "16" "weight" "0" "range" "0x0000 0x017F" // Basic Latin, Latin-1 Supplement, Latin Extended-A "yres" "480 599" } "2" { "name" "Tahoma" "tall" "16" "weight" "0" "range" "0x0000 0x017F" // Basic Latin, Latin-1 Supplement, Latin Extended-A "yres" "600 767" } "3" { "name" "Tahoma" "tall" "16" "weight" "0" "range" "0x0000 0x017F" // Basic Latin, Latin-1 Supplement, Latin Extended-A "yres" "768 1023" "antialias" "1" } "4" { "name" "Tahoma" "tall" "19" "weight" "0" "range" "0x0000 0x017F" // Basic Latin, Latin-1 Supplement, Latin Extended-A "yres" "1024 1199" "antialias" "1" } "5" { "name" "Tahoma" "tall" "19" "weight" "0" "range" "0x0000 0x017F" // Basic Latin, Latin-1 Supplement, Latin Extended-A "yres" "1200 6000" "antialias" "1" } } AchievementItemTitle [!$OSX] { "1" { "name" "Arial" [!$OSX] "name" "Verdana Bold" [disabled] "weight" "1500" "tall" "16" [!$OSX] "tall" "18" [disabled] "antialias" "1" } } AchievementItemTitleLarge [!$OSX] { "1" { "name" "Arial" [!$OSX] "name" "Verdana Bold" [disabled] "weight" "1500" "tall" "18" [!$OSX] "tall" "19" [disabled] "antialias" "1" } } AchievementItemDescription [!$OSX] { "1" { "name" "Arial" [!$OSX] "name" "Verdana" [disabled] "weight" "1000" "tall" "14" [!$OSX] "tall" "12" [disabled] "antialias" "1" [!$OSX] } } "DefaultFixedOutline" //edited by INsane 2010 for small netgraph font on all screen sizes { "1" //For screen heights between 480 and 599 (eg 4:3 aspect Width 640x480 High, Width 720x576 High. 16:10 aspect Width 720x480 High) { "name" "Arial" [$WINDOWS] // Standard is "Lucida Console" Options are "Microsoft Sans Serif" "Georgia" "Impact" "Arial MT" and the best for small = "Haettenschweiler" but is a MS office and Win7 font, can be downloaded, google "Haettenschweiler" and install in C:/Windows/Fonts "name" "Lucida Console" [$X360] //"Lucida Console" "name" "Georgia" [$POSIX] // Apple Mac OS "Verdana" (default) Best small font = "Georgia" Mac Installation location: /Library/Fonts and is default on Mac OS "tall" "11" [$POSIX] // "11" "tall" "10" //good positioning is ... "net_graphpos 183" and "net_graphheight 30" and ensure you select "antialias" "1" with all others off with "Georgia" font. "weight" "0" //"0" // This is the thickness, like a bold setting max is about 700. Small fonts will look better as "0". "range" "0x0000 0x017F" //Basic Latin, Latin-1 Supplement, Latin Extended-A "yres" "480 599" "outline" "0" //"1" //Adds a black outline around the text, good for standing out... that is, if the font allows it, use with caution on smaller fonts. "additive" "0" //not default added //This adds white to font...sort of a glow effect on coloured fonts and gives a washed out pastel look "antialias" "1" //not default added //smoothing the edges. } "2" //For screen heights between 600 and 767 (eg 4:3 aspect Width 800X600 High, ... 16:9 aspect Width 1152x648 High.) { "name" "Arial" [$WINDOWS] // Standard is "Lucida Console" Options are "Microsoft Sans Serif" "Georgia" "Impact" "Arial MT" and the best for small = "Haettenschweiler" but is a MS office and Win7 font, can be downloaded, google "Haettenschweiler" and install in C:/Windows/Fonts "name" "Lucida Console" [$X360] //"Lucida Console" "name" "Georgia" [$POSIX] // Apple Mac OS "Verdana" (default) Best small font = "Georgia" Mac Installation location: /Library/Fonts and is default on Mac OS "tall" "12" [$POSIX] // "11" "tall" "12" //good positioning is ... "net_graphpos 190" and "net_graphheight 45" and ensure you select "antialias" "1" with all others off with "Georgia" font. "weight" "0" "range" "0x0000 0x017F" //Basic Latin, Latin-1 Supplement, Latin Extended-A "yres" "600 767" "outline" "0" //"1" //Adds a black outline around the text, good for standing out... that is, if the font allows it, use with caution on smaller fonts. "additive" "0" //not default added //This adds white to font...sort of a glow effect on coloured fonts and gives a washed out pastel look "antialias" "1" //not default added //smoothing the edges. } "3" //For screen heights between 768 and 1023 (eg 4:3 aspect Width 1024X768 High... 16:9 aspect Width 1360x768 High, 16:9 aspect Width 1776x1000 High... 16:10 aspect Width 1280x768 High, 16:10 aspect Width 1280x800 High, 16:10 aspect Width 1400x900 High.) { "name" "Arial" [$WINDOWS] // Standard is "Lucida Console" Options are "Microsoft Sans Serif" "Georgia" "Impact" "Arial MT" and the best for small = "Haettenschweiler" but is a MS office and Win7 font, can be downloaded, google "Haettenschweiler" and install in C:/Windows/Fonts "name" "Lucida Console" [$X360] //"Lucida Console" "name" "Verdana" [$POSIX] // Apple Mac OS "Verdana" (default) Best small font = "Georgia" Mac Installation location: /Library/Fonts and is default on Mac OS "tall" "13" [$POSIX] // "11" "tall" "13" //good positioning is ... "net_graphpos 203" and "net_graphheight 85" and ensure you select "outline" "1" with all others off with "Microsoft Sans Serif" font. "weight" "0" "range" "0x0000 0x017F" //Basic Latin, Latin-1 Supplement, Latin Extended-A "yres" "768 1023" "outline" "1" //"1" //Adds a black outline around the text, good for standing out... that is, if the font allows it, use with caution on smaller fonts. "additive" "0" //not default added //This adds white to font...sort of a glow effect on coloured fonts and gives a washed out pastel look "antialias" "0" //not default added //smoothing the edges. } "4" //For screen heights between 1024 and 1199 (eg 4:3 aspect Width 1280X1024 High, Width 1400X1050 High... 16:9 aspect Width 1920x1080 High... 16:10 aspect Width 1680x1050 High.) { "name" "Arial" [$WINDOWS] // Standard is "Lucida Console" Options are "Microsoft Sans Serif" "Georgia" "Impact" "Arial MT" and the best for small = "Haettenschweiler" but is a MS office and Win7 font, can be downloaded, google "Haettenschweiler" and install in C:/Windows/Fonts "name" "Lucida Console" [$X360] //"Lucida Console" "name" "Arial" [$POSIX] // Apple Mac OS "Verdana" (default) Best small font = "Georgia" Mac Installation location: /Library/Fonts and is default on Mac OS "tall" "19" [$POSIX] // "11" "tall" "19" // good positioning is ... net_graphheight 87 and net_graphpos 210 and ensure you select "outline" "1" with all others off with Ariel font. "weight" "0" "range" "0x0000 0x017F" //Basic Latin, Latin-1 Supplement, Latin Extended-A "yres" "1024 1199" "outline" "1" //"1" //Adds a black outline around the text, good for standing out... that is, if the font allows it, use with caution on smaller fonts. "additive" "0" //not default added //This adds white to font...sort of a glow effect on coloured fonts and gives a washed out pastel look "antialias" "0" //not default added //smoothing the edges. } "5" //For screen heights between 1200 and 6000 (6000...wow that's freaking huge!) (eg 4:3 aspect Width 1600X1200 High... 16:10 aspect Width 1920x1200 High.... and beyond) { "name" "Arial" [$WINDOWS] // Standard is "Lucida Console" Options are "Microsoft Sans Serif" "Georgia" "Impact" "Arial MT" and the best for small = "Haettenschweiler" but is a MS office and Win7 font, can be downloaded, google "Haettenschweiler" and install in C:/Windows/Fonts "name" "Lucida Console" [$X360] //"Lucida Console" "name" "Arial" [$POSIX] // Apple Mac OS "Verdana" (default) Best small font = "Georgia" and "Arial" Mac Installation location: /Library/Fonts and is default on Mac OS "tall" "19" [$POSIX] // "11" "tall" "19" // good positioning is ... net_graphheight 95 and net_graphpos 225 and ensure you select "outline" "1" with all others off with Ariel font. "weight" "0" "range" "0x0000 0x017F" //Basic Latin, Latin-1 Supplement, Latin Extended-A "yres" "1200 6000" "outline" "1" //"1" //Adds a black outline around the text, good for standing out... that is, if the font allows it, use with caution on smaller fonts. "additive" "0" //not default added //This adds white to font...sort of a glow effect on coloured fonts and gives a washed out pastel look "antialias" "0" //not default added //smoothing the edges. } } } CustomFontFiles { "6" { "font" "resource/tf2build.ttf" "name" "TF2 Build" "turkish" { "range" "0x0000 0x015F" } "swedish" { "range" "0x0000 0x00F6" } "spanish" { "range" "0x0000 0x00FC" } "romanian" { "range" "0x0000 0x021B" } "polish" { "range" "0x0000 0x017C" } "norwegian" { "range" "0x0000 0x00F8" } "danish" { "range" "0x0000 0x00F8" } "hungarian" { "range" "0x0000 0x0171" } "german" { "range" "0x0000 0x00FC" } "french" { "range" "0x0000 0x0178" } "finnish" { "range" "0x0000 0x017E" } "czech" { "range" "0x0000 0x017E" } "bulgarian" { "range" "0x0000 0x0451" } "russian" { "range" "0x0000 0x0451" } } "10" "resource/linux_fonts/dejavusans.ttf" "11" "resource/linux_fonts/dejavusans-bold.ttf" "12" "resource/linux_fonts/dejavusans-boldoblique.ttf" "13" "resource/linux_fonts/dejavusans-oblique.ttf" "14" "resource/linux_fonts/liberationsans-regular.ttf" "15" "resource/linux_fonts/liberationsans-bold.ttf" "16" "resource/linux_fonts/liberationmono-regular.ttf" "17" "resource/linux_fonts/firasans-regular.ttf" } } ================================================ FILE: resource/support.res ================================================ "resource/ui/statsummary_embedded.res" { "TopLine" { "ControlName" "ImagePanel" "fieldName" "TopLine" "xpos" "c-305" "ypos" "263" "zpos" "2" "wide" "612" "tall" "10" "visible" "1" "enabled" "1" "image" "loadout_dotted_line" "tileImage" "1" "tileVertically" "0" } "SupportersPanel" { "ControlName" "EditablePanel" "fieldname" "SupportersPanel" "xpos" "-10" "ypos" "5" "zpos" "0" "wide" "595" "tall" "70" "visible" "1" "bgcolor_override" "TransparentLightBlack" "PaintBackgroundType" "2" "pin_to_sibling" "TopLine" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "SupportersTitle" { "ControlName" "CExLabel" "fieldName" "SupportersTitle" "font" "FontBold18" "labelText" "Supporters" "textAlignment" "center" "xpos" "0" "ypos" "-5" "zpos" "1" "wide" "595" "tall" "15" "visible" "0" "enabled" "0" "fgcolor_override" "White" } "DonationInfo" { "ControlName" "CExLabel" "fieldName" "DonationInfo" "xpos" "0" "ypos" "5" "zpos" "1" "wide" "595" "tall" "10" "font" "FontRegular10" "labelText" "#FH_supporters_info" "visible" "1" "enabled" "1" "paintBackground" "0" "textAlignment" "south" "fgcolor_override" "Yellow" "proportionaltoparent" "1" } "DonationLink" { "ControlName" "URLLabel" "fieldName" "DonationLink" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "595" "tall" "10" "font" "FontRegular10" "labelText" "#FH_supporters_list" "visible" "1" "enabled" "1" "paintBackground" "0" "textAlignment" "south" "fgcolor_override" "Yellow" "proportionaltoparent" "1" "urlText" "https://github.com/sponsors/CriticalFlaw" } "Supporters" { "ControlName" "CExLabel" "fieldName" "Supporters" "font" "FontRegular12" "labelText" "Admiral Bread Crumbs ★ agrastiOs ★ availax ★ berry-jordan ★ ca7x3 ★ DrummingFish ★ Foxydapirate12 ★ Kybrid96 ★ Kykoda ★ LazarusDemitri ★ nigiri emoji ★ omgitrealcasey ★ Owlgod ★ Pazer ★ Revan ★ RoseyLemonz ★ realcasey ★ TemmieKaz ★ Zeesastrous ★ 7eventy7" "textAlignment" "center" "xpos" "20" "ypos" "20" "zpos" "1" "wide" "555" "tall" "50" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "White" } } } ================================================ FILE: resource/ui/basechat.res ================================================ "resource/ui/basechat.res" { "HudChat" { "ControlName" "EditablePanel" "fieldName" "HudChat" "visible" "1" "enabled" "1" "xpos" "5" "ypos" "20" "wide" "250" "tall" "100" "PaintBackgroundType" "0" "bgcolor_override" "0 0 0 255" } "ChatInputLine" { "ControlName" "EditablePanel" "fieldName" "ChatInputLine" "visible" "1" "enabled" "1" "xpos" "10" "ypos" "395" "wide" "195" "tall" "0" "PaintBackgroundType" "0" } "ChatFiltersButton" { "ControlName" "Button" "fieldName" "ChatFiltersButton" "xpos" "210" "ypos" "86" "wide" "33" "tall" "8" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#chat_filterbutton" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Default" "0" } "HudChatHistory" { "ControlName" "RichText" "fieldName" "HudChatHistory" "xpos" "0" "ypos" "0" "wide" "250" "tall" "75" "wrap" "1" "autoResize" "1" "pinCorner" "1" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "south-west" "font" "ChatFont" "maxchars" "-1" } } ================================================ FILE: resource/ui/build_menu/base_active.res ================================================ "resource/ui/build_menu/base_active.res" { "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontRegular11" "xpos" "0" "ypos" "4" "zpos" "1" "wide" "55" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Object_Sentry" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ItemBackground" { "ControlName" "CIconPanel" "fieldName" "ItemBackground" "xpos" "4" "ypos" "14" "zpos" "0" "wide" "98" "tall" "105" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_item_bg" "iconColor" "Black" } "BuildingIcon" { "ControlName" "CIconPanel" "fieldName" "BuildingIcon" "xpos" "10" "ypos" "19" "zpos" "2" "wide" "34" "tall" "34" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "hud_menu_sentry_build" "iconColor" "White" } "MetalIcon" { "ControlName" "CIconPanel" "fieldName" "MetalIcon" "xpos" "10" "ypos" "18" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_metal" "iconColor" "White" } "CostLabel" { "ControlName" "CExLabel" "fieldName" "CostLabel" "font" "FontBold20" "fgcolor" "TanLight" "xpos" "10" "ypos" "20" "zpos" "4" "wide" "34" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%metal%" "textAlignment" "center" } "CostLabelShadow" { "ControlName" "CExLabel" "fieldName" "CostLabelShadow" "font" "FontBold20" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "3" "wide" "34" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%metal%" "textAlignment" "center" "pin_to_sibling" "CostLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ModeLabel" { "ControlName" "CExLabel" "fieldName" "ModeLabel" "font" "DefaultSmall" "fgcolor" "TanDarker" "xpos" "33" "ypos" "17" "zpos" "1" "wide" "44" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "East" } "NumberBg" { "ControlName" "CIconPanel" "fieldName" "NumberBg" "xpos" "41" "ypos" "99" "zpos" "0" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "White" } "NumberLabel" { "ControlName" "CExLabel" "fieldName" "NumberLabel" "font" "FontBold10" "fgcolor" "TanLight" "xpos" "11" "ypos" "14" "zpos" "10" "wide" "55" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "1" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } } ================================================ FILE: resource/ui/build_menu/base_active_teleport_target.res ================================================ "resource/ui/build_menu/base_active_teleport_target.res" { "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontRegular11" "xpos" "0" "ypos" "4" "zpos" "1" "wide" "55" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Object_Sentry" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ItemBackground" { "ControlName" "CIconPanel" "fieldName" "ItemBackground" "xpos" "4" "ypos" "14" "zpos" "0" "wide" "98" "tall" "105" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_item_bg" "iconColor" "ProgressOffWhite" } "BuildingIcon" { "ControlName" "CIconPanel" "fieldName" "BuildingIcon" "xpos" "10" "ypos" "19" "zpos" "2" "wide" "34" "tall" "34" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "hud_menu_sentry_build" "iconColor" "White" } "ModeLabel" { "ControlName" "CExLabel" "fieldName" "ModeLabel" "font" "DefaultSmall" "fgcolor" "TanDarker" "xpos" "33" "ypos" "17" "zpos" "1" "wide" "44" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "East" } "NumberBg" { "ControlName" "CIconPanel" "fieldName" "NumberBg" "xpos" "41" "ypos" "99" "zpos" "0" "wide" "18" "tall" "18" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "White" } "NumberLabel" { "ControlName" "CExLabel" "fieldName" "NumberLabel" "font" "FontBold10" "fgcolor" "TanLight" "xpos" "24" "ypos" "58" "zpos" "1" "wide" "7" "tall" "7" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "1" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } } ================================================ FILE: resource/ui/build_menu/base_already_built.res ================================================ "resource/ui/build_menu/base_already_built.res" { "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontRegular11" "xpos" "0" "ypos" "4" "zpos" "1" "wide" "55" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Object_Sentry" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ItemBackground" { "ControlName" "CIconPanel" "fieldName" "ItemBackground" "xpos" "4" "ypos" "14" "zpos" "0" "wide" "98" "tall" "105" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_item_bg_outline" "iconColor" "ProgressOffWhiteTransparent" } "CantBuildReason" { "ControlName" "CExLabel" "fieldName" "CantBuildReason" "font" "FontRegular10" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "55" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Build_Already_Built" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "fgcolor" "TanLight" } "MetalIcon" { "ControlName" "CIconPanel" "fieldName" "MetalIcon" "xpos" "13" "ypos" "58" "zpos" "1" "wide" "7" "tall" "7" "visible" "1" "enabled" "0" "scaleImage" "0" "icon" "ico_metal" "iconColor" "189 189 189 255" } "CostLabel" { "ControlName" "CExLabel" "fieldName" "CostLabel" "font" "FontBold20" "fgcolor" "189 189 189 255" "xpos" "10" "ypos" "18" "zpos" "1" "wide" "34" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "%metal%" "textAlignment" "center" } "ModeLabel" { "ControlName" "CExLabel" "fieldName" "ModeLabel" "font" "DefaultSmall" "fgcolor" "TanDark" "xpos" "33" "ypos" "17" "zpos" "1" "wide" "44" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "East" } "NumberBg" { "ControlName" "CIconPanel" "fieldName" "NumberBg" "xpos" "41" "ypos" "99" "zpos" "0" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "White" } "NumberLabel" { "ControlName" "CExLabel" "fieldName" "NumberLabel" "font" "FontBold10" "fgcolor" "189 189 189 255" "xpos" "-40" "ypos" "-2" "zpos" "1" "wide" "100" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "1" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } } ================================================ FILE: resource/ui/build_menu/base_cant_afford.res ================================================ "resource/ui/build_menu/base_cant_afford.res" { "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontRegular11" "xpos" "0" "ypos" "4" "zpos" "1" "wide" "55" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Object_Sentry" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ItemBackground" { "ControlName" "CIconPanel" "fieldName" "ItemBackground" "xpos" "4" "ypos" "14" "zpos" "0" "wide" "98" "tall" "105" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_item_bg_outline" "iconColor" "0 0 0 196" } "BuildingIcon" { "ControlName" "CIconPanel" "fieldName" "BuildingIcon" "xpos" "10" "ypos" "19" "zpos" "2" "wide" "34" "tall" "34" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_sentry_build" "iconColor" "NeonRed" } "CantBuildReason" { "ControlName" "CExLabel" "fieldName" "CantBuildReason" "font" "FontRegular10" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "55" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Build_Cant_Afford" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "fgcolor" "NeonRed" } "MetalIcon" { "ControlName" "CIconPanel" "fieldName" "MetalIcon" "xpos" "13" "ypos" "58" "zpos" "1" "wide" "7" "tall" "7" "visible" "1" "enabled" "0" "scaleImage" "0" "icon" "ico_metal" "iconColor" "NeonRed" "textAlignment" "center" } "CostLabel" { "ControlName" "CExLabel" "fieldName" "CostLabel" "font" "FontBold20" "fgcolor" "NeonRed" "xpos" "10" "ypos" "18" "zpos" "4" "wide" "34" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "%metal%" "textAlignment" "center" } "CostLabelShadow" { "ControlName" "CExLabel" "fieldName" "CostLabelShadow" "font" "FontBold20" "fgcolor" "Black" "xpos" "-1" "ypos" "-1" "zpos" "3" "wide" "34" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "%metal%" "textAlignment" "center" "pin_to_sibling" "CostLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ModeLabel" { "ControlName" "CExLabel" "fieldName" "ModeLabel" "font" "DefaultSmall" "fgcolor" "NeonRed" "xpos" "33" "ypos" "17" "zpos" "1" "wide" "44" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "East" } "NumberBg" { "ControlName" "CIconPanel" "fieldName" "NumberBg" "xpos" "41" "ypos" "99" "zpos" "0" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "NeonRed" } "NumberLabel" { "ControlName" "CExLabel" "fieldName" "NumberLabel" "font" "FontBold10" "fgcolor" "NeonRed" "xpos" "0" "ypos" "52" "zpos" "1" "wide" "55" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "1" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } } ================================================ FILE: resource/ui/build_menu/base_unavailable.res ================================================ "resource/ui/build_menu/base_unavailable.res" { "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontRegular11" "xpos" "0" "ypos" "4" "zpos" "1" "wide" "55" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Object_Sentry" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ItemBackground" { "ControlName" "CIconPanel" "fieldName" "ItemBackground" "xpos" "4" "ypos" "14" "zpos" "0" "wide" "98" "tall" "105" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_item_bg_outline" "iconColor" "0 0 0 196" } "BuildingIcon" { "ControlName" "CIconPanel" "fieldName" "BuildingIcon" "xpos" "10" "ypos" "19" "zpos" "2" "wide" "34" "tall" "34" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_sentry_build" "iconColor" "NeonRed" } "CantBuildReason" { "ControlName" "CExLabel" "fieldName" "CantBuildReason" "font" "FontRegular10" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "55" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Build_Unavailable" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "fgcolor" "NeonRed" } "MetalIcon" { "ControlName" "CIconPanel" "fieldName" "MetalIcon" "xpos" "13" "ypos" "58" "zpos" "1" "wide" "7" "tall" "7" "visible" "1" "enabled" "0" "scaleImage" "0" "icon" "ico_metal" "iconColor" "NeonRed" "textAlignment" "center" } "CostLabel" { "ControlName" "CExLabel" "fieldName" "CostLabel" "font" "FontBold20" "fgcolor" "NeonRed" "xpos" "10" "ypos" "18" "zpos" "4" "wide" "34" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%metal%" "textAlignment" "center" } "CostLabelShadow" { "ControlName" "CExLabel" "fieldName" "CostLabelShadow" "font" "FontBold20" "fgcolor" "Black" "xpos" "-1" "ypos" "-1" "zpos" "3" "wide" "34" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%metal%" "textAlignment" "center" "pin_to_sibling" "CostLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ModeLabel" { "ControlName" "CExLabel" "fieldName" "ModeLabel" "font" "DefaultSmall" "fgcolor" "NeonRed" "xpos" "33" "ypos" "17" "zpos" "1" "wide" "44" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "East" } "NumberBg" { "ControlName" "CIconPanel" "fieldName" "NumberBg" "xpos" "41" "ypos" "99" "zpos" "0" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "NeonRed" } "NumberLabel" { "ControlName" "CExLabel" "fieldName" "NumberLabel" "font" "FontBold10" "fgcolor" "NeonRed" "xpos" "0" "ypos" "52" "zpos" "1" "wide" "55" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "1" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } } ================================================ FILE: resource/ui/build_menu/base_unavailable_teleport_target.res ================================================ "resource/ui/build_menu/base_unavailable_teleport_target.res" { "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontRegular11" "xpos" "0" "ypos" "4" "zpos" "1" "wide" "55" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Object_Sentry" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ItemBackground" { "ControlName" "CIconPanel" "fieldName" "ItemBackground" "xpos" "4" "ypos" "14" "zpos" "0" "wide" "98" "tall" "105" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_item_bg" "iconColor" "ProgressOffWhite" } "CantBuildReason" { "ControlName" "CExLabel" "fieldName" "CantBuildReason" "font" "FontRegular8" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "55" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Build_Unavailable" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ModeLabel" { "ControlName" "CExLabel" "fieldName" "ModeLabel" "font" "DefaultSmall" "fgcolor" "TanDark" "xpos" "33" "ypos" "17" "zpos" "1" "wide" "44" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "East" } "NumberBg" { "ControlName" "CIconPanel" "fieldName" "NumberBg" "xpos" "41" "ypos" "99" "zpos" "0" "wide" "18" "tall" "18" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "White" } "NumberLabel" { "ControlName" "CExLabel" "fieldName" "NumberLabel" "font" "FontBold10" "fgcolor" "TanLight" "xpos" "25" "ypos" "58" "zpos" "1" "wide" "7" "tall" "7" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "1" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } } ================================================ FILE: resource/ui/build_menu/hudmenuengybuild.res ================================================ "resource/ui/build_menu/hudmenuengybuild.res" { "MainBackground" { "ControlName" "EditablePanel" "fieldName" "MainBackground" "xpos" "9999" } "BuildIcon" { "ControlName" "CIconPanel" "fieldName" "BuildIcon" "xpos" "9999" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "xpos" "0" "ypos" "1" "zpos" "2" "wide" "125" "tall" "22" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_menu_build_title" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "TitleLabelDropshadow" { "ControlName" "CExLabel" "fieldName" "TitleLabelDropshadow" "font" "FontBold22" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "2" "wide" "125" "tall" "22" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_menu_build_title" "textAlignment" "center" "dulltext" "1" "brighttext" "0" "pin_to_sibling" "TitleLabel" } "CancelLabel" { "ControlName" "CExLabel" "fieldName" "CancelLabel" "font" "HudFontSmallest" "xpos" "0" "ypos" "130" "zpos" "1" "wide" "125" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Build_Cancel" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "active_item_1" { "ControlName" "EditablePanel" "fieldName" "active_item_1" "xpos" "5" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "active_item_2" { "ControlName" "EditablePanel" "fieldName" "active_item_2" "xpos" "65" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "active_item_3" { "ControlName" "EditablePanel" "fieldName" "active_item_3" "xpos" "5" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "active_item_4" { "ControlName" "EditablePanel" "fieldName" "active_item_4" "xpos" "65" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "already_built_item_1" { "ControlName" "EditablePanel" "fieldName" "already_built_item_1" "xpos" "5" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "already_built_item_2" { "ControlName" "EditablePanel" "fieldName" "already_built_item_2" "xpos" "65" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "already_built_item_3" { "ControlName" "EditablePanel" "fieldName" "already_built_item_3" "xpos" "5" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "already_built_item_4" { "ControlName" "EditablePanel" "fieldName" "already_built_item_4" "xpos" "65" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "cant_afford_item_1" { "ControlName" "EditablePanel" "fieldName" "cant_afford_item_1" "xpos" "5" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "cant_afford_item_2" { "ControlName" "EditablePanel" "fieldName" "cant_afford_item_2" "xpos" "65" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "cant_afford_item_3" { "ControlName" "EditablePanel" "fieldName" "cant_afford_item_3" "xpos" "5" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "cant_afford_item_4" { "ControlName" "EditablePanel" "fieldName" "cant_afford_item_4" "xpos" "65" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "unavailable_item_1" { "ControlName" "EditablePanel" "fieldName" "unavailable_item_1" "xpos" "5" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "unavailable_item_2" { "ControlName" "EditablePanel" "fieldName" "unavailable_item_2" "xpos" "65" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "unavailable_item_3" { "ControlName" "EditablePanel" "fieldName" "unavailable_item_3" "xpos" "5" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "unavailable_item_4" { "ControlName" "EditablePanel" "fieldName" "unavailable_item_4" "xpos" "65" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "MenuBG" { "ControlName" "EditablePanel" "fieldName" "MenuBG" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "125" "tall" "110" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } } ================================================ FILE: resource/ui/build_menu/hudmenueurekaeffect.res ================================================ "resource/ui/build_menu/hudmenueurekaeffect.res" { "MainBackground" { "ControlName" "CIconPanel" "fieldName" "MainBackground" "xpos" "0" "ypos" "10" "zpos" "0" "wide" "250" "tall" "170" "visible" "0" "enabled" "0" "scaleImage" "1" "paintbackground" "0" } "BuildIcon" { "ControlName" "CIconPanel" "fieldName" "BuildIcon" "xpos" "9999" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "xpos" "0" "ypos" "1" "zpos" "2" "wide" "150" "tall" "22" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Teleport_Title" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "TitleLabelDropshadow" { "ControlName" "CExLabel" "fieldName" "TitleLabelDropshadow" "font" "FontBold22" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "1" "wide" "150" "tall" "22" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Teleport_Title" "textAlignment" "center" "dulltext" "1" "brighttext" "0" "pin_to_sibling" "TitleLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "CancelLabel" { "ControlName" "CExLabel" "fieldName" "CancelLabel" "font" "SpectatorKeyHints" "xpos" "9999" "ypos" "9999" "zpos" "1" "wide" "200" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "#Hud_Menu_Build_Cancel" "textAlignment" "East" "dulltext" "0" "brighttext" "0" } "available_target_1" { "ControlName" "EditablePanel" "fieldName" "available_target_1" "xpos" "18" "ypos" "17" "zpos" "10" "wide" "100" "tall" "124" "visible" "1" } "available_target_2" { "ControlName" "EditablePanel" "fieldName" "available_target_2" "xpos" "78" "ypos" "17" "zpos" "1" "wide" "100" "tall" "124" "visible" "1" } "unavailable_target_1" { "ControlName" "EditablePanel" "fieldName" "unavailable_target_1" "xpos" "18" "ypos" "17" "zpos" "1" "wide" "100" "tall" "124" "visible" "0" } "unavailable_target_2" { "ControlName" "EditablePanel" "fieldName" "unavailable_target_2" "xpos" "78" "ypos" "17" "zpos" "1" "wide" "100" "tall" "124" "visible" "0" } "MenuBG" { "ControlName" "EditablePanel" "fieldName" "MenuBG" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "150" "tall" "88" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } } ================================================ FILE: resource/ui/build_menu/pipboy/base_active.res ================================================ #base "../base_active.res" "resource/ui/build_menu/base_active.res" { "ItemNameLabel" { "fgcolor" "NeonGreen" } "BuildingIcon" { "iconColor" "NeonGreen" } "MetalIcon" { "iconColor" "NeonGreen" } "CostLabel" { "fgcolor" "NeonGreen" } "NumberLabel" { "fgcolor" "NeonGreen" } } ================================================ FILE: resource/ui/build_menu/pipboy/base_active_teleport_target.res ================================================ #base "../base_active_teleport_target.res" "resource/ui/build_menu/base_active_teleport_target.res" { "ItemNameLabel" { "fgcolor" "NeonGreen" } "BuildingIcon" { "iconColor" "NeonGreen" } "NumberLabel" { "fgcolor" "NeonGreen" } } ================================================ FILE: resource/ui/build_menu/pipboy/base_already_built.res ================================================ #base "../base_already_built.res" "resource/ui/build_menu/base_already_built.res" { "ItemNameLabel" { "fgcolor" "NeonGreen" } "MetalIcon" { "iconColor" "NeonGreen" } "CantBuildReason" { "fgcolor" "NeonGreen" } } ================================================ FILE: resource/ui/build_menu/pipboy/base_cant_afford.res ================================================ #base "../base_cant_afford.res" "resource/ui/build_menu/base_cant_afford.res" { "ItemNameLabel" { "fgcolor" "NeonGreen" } } ================================================ FILE: resource/ui/build_menu/pipboy/base_unavailable.res ================================================ #base "../base_unavailable.res" "resource/ui/build_menu/base_unavailable.res" { "ItemNameLabel" { "fgcolor" "NeonGreen" } } ================================================ FILE: resource/ui/build_menu/pipboy/base_unavailable_teleport_target.res ================================================ #base "../base_unavailable_teleport_target.res" "resource/ui/build_menu/base_unavailable_teleport_target.res" { "ItemNameLabel" { "fgcolor" "NeonGreen" } "CantBuildReason" { "fgcolor" "NeonGreen" } } ================================================ FILE: resource/ui/build_menu/pipboy/hudmenuengybuild.res ================================================ #base "../hudmenuengybuild.res" "resource/ui/build_menu/hudmenuengybuild.res" { "ItemBackground" { "ControlName" "CTFImagePanel" "fieldName" "ItemBackground" "xpos" "0" "ypos" "20" "zpos" "0" "wide" "125" "tall" "110" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "pipboy_overlay" "tileImage" "1" "drawcolor" "192 192 192 255" } "BackgroundEngineer" { "ControlName" "CTFImagePanel" "fieldName" "BackgroundEngineer" "xpos" "80" "ypos" "145" "zpos" "-1" "wide" "40" "tall" "40" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "pipboy_engineer" "tileImage" "0" "tileVertically" "0" } "BuildIcon" { "iconColor" "NeonGreen" } "TitleLabel" { "fgcolor" "NeonGreen" } "CancelLabel" { "fgcolor" "NeonGreen" } } ================================================ FILE: resource/ui/build_menu/pipboy/hudmenueurekaeffect.res ================================================ #base "../hudmenueurekaeffect.res" "resource/ui/build_menu/hudmenueurekaeffect.res" { "ItemBackground" { "ControlName" "CTFImagePanel" "fieldName" "ItemBackground" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "150" "tall" "88" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "pipboy_overlay" "tileImage" "1" "drawcolor" "192 192 192 255" } "BuildIcon" { "iconColor" "NeonGreen" } "TitleLabel" { "fgcolor" "NeonGreen" } "CancelLabel" { "fgcolor" "NeonGreen" } } ================================================ FILE: resource/ui/build_menu_360/base_active.res ================================================ #base "../build_menu/base_active.res" "resource/ui/build_menu/base.res" { } ================================================ FILE: resource/ui/build_menu_360/base_active_teleport_target.res ================================================ #base "../build_menu/base_active_teleport_target.res" "resource/ui/build_menu/base_active_teleport_target.res" { } ================================================ FILE: resource/ui/build_menu_360/base_already_built.res ================================================ #base "../build_menu/base_already_built.res" "resource/ui/build_menu/base_already_built.res" { } ================================================ FILE: resource/ui/build_menu_360/base_cant_afford.res ================================================ #base "../build_menu/base_cant_afford.res" "resource/ui/build_menu/base_cant_afford.res" { } ================================================ FILE: resource/ui/build_menu_360/base_unavailable.res ================================================ #base "../build_menu/base_unavailable.res" "resource/ui/build_menu/base_unavailable.res" { } ================================================ FILE: resource/ui/build_menu_360/base_unavailable_teleport_target.res ================================================ #base "../build_menu/base_unavailable_teleport_target.res" "resource/ui/build_menu/base_unavailable.res" { } ================================================ FILE: resource/ui/build_menu_360/hudmenuengybuild.res ================================================ #base "../build_menu/hudmenuengybuild.res" "resource/ui/build_menu/hudmenuengybuild.res" { } ================================================ FILE: resource/ui/build_menu_360/hudmenueurekaeffect.res ================================================ #base "../build_menu/hudmenueurekaeffect.res" "resource/ui/build_menu/hudmenueurekaeffect.res" { } ================================================ FILE: resource/ui/build_menu_360/pipboy/base_active.res ================================================ #base "../../build_menu/base_active.res" "resource/ui/build_menu/base_active.res" { } ================================================ FILE: resource/ui/build_menu_360/pipboy/base_active_teleport_target.res ================================================ #base "../../build_menu/base_active_teleport_target.res" "resource/ui/build_menu/base_active_teleport_target.res" { } ================================================ FILE: resource/ui/build_menu_360/pipboy/base_already_built.res ================================================ #base "../../build_menu/base_already_built.res" "resource/ui/build_menu/base_already_built.res" { } ================================================ FILE: resource/ui/build_menu_360/pipboy/base_cant_afford.res ================================================ #base "../../build_menu/base_cant_afford.res" "resource/ui/build_menu/base_cant_afford.res" { } ================================================ FILE: resource/ui/build_menu_360/pipboy/base_unavailable.res ================================================ #base "../../build_menu/base_unavailable.res" "resource/ui/build_menu/base_unavailable.res" { } ================================================ FILE: resource/ui/build_menu_360/pipboy/base_unavailable_teleport_target.res ================================================ #base "../../build_menu/base_unavailable_teleport_target.res" "resource/ui/build_menu/base_unavailable_teleport_target.res" { } ================================================ FILE: resource/ui/build_menu_360/pipboy/hudmenuengybuild.res ================================================ #base "../../build_menu/hudmenuengybuild.res" "resource/ui/build_menu/hudmenuengybuild.res" { } ================================================ FILE: resource/ui/build_menu_360/pipboy/hudmenueurekaeffect.res ================================================ #base "../../build_menu/hudmenueurekaeffect.res" "resource/ui/build_menu/hudmenueurekaeffect.res" { } ================================================ FILE: resource/ui/build_menu_sc/base_active.res ================================================ #base "../build_menu/base_active.res" "resource/ui/build_menu/base_active.res" { } ================================================ FILE: resource/ui/build_menu_sc/base_active_teleport_target.res ================================================ #base "../build_menu/base_active_teleport_target.res" "resource/ui/build_menu/base_active_teleport_target.res" { } ================================================ FILE: resource/ui/build_menu_sc/base_already_built.res ================================================ #base "../build_menu/base_already_built.res" "resource/ui/build_menu/base_already_built.res" { } ================================================ FILE: resource/ui/build_menu_sc/base_cant_afford.res ================================================ #base "../build_menu/base_cant_afford.res" "resource/ui/build_menu/base_cant_afford.res" { } ================================================ FILE: resource/ui/build_menu_sc/base_unavailable.res ================================================ #base "../build_menu/base_unavailable.res" "resource/ui/build_menu/base_unavailable.res" { } ================================================ FILE: resource/ui/build_menu_sc/base_unavailable_teleport_target.res ================================================ #base "../build_menu/base_unavailable_teleport_target.res" "resource/ui/build_menu/base_unavailable_teleport_target.res" { } ================================================ FILE: resource/ui/build_menu_sc/hudmenuengybuild.res ================================================ #base "../build_menu/hudmenuengybuild.res" "resource/ui/build_menu/hudmenuengybuild.res" { } ================================================ FILE: resource/ui/build_menu_sc/hudmenueurekaeffect.res ================================================ #base "../build_menu/hudmenueurekaeffect.res" "resource/ui/build_menu/hudmenueurekaeffect.res" { } ================================================ FILE: resource/ui/build_menu_sc/pipboy/base_active.res ================================================ #base "../../build_menu/base_active.res" "resource/ui/build_menu/base_active.res" { } ================================================ FILE: resource/ui/build_menu_sc/pipboy/base_active_teleport_target.res ================================================ #base "../../build_menu/base_active_teleport_target.res" "resource/ui/build_menu/base_active_teleport_target.res" { } ================================================ FILE: resource/ui/build_menu_sc/pipboy/base_already_built.res ================================================ #base "../../build_menu/base_already_built.res" "resource/ui/build_menu/base_already_built.res" { } ================================================ FILE: resource/ui/build_menu_sc/pipboy/base_cant_afford.res ================================================ #base "../../build_menu/base_cant_afford.res" "resource/ui/build_menu/base_cant_afford.res" { } ================================================ FILE: resource/ui/build_menu_sc/pipboy/base_unavailable.res ================================================ #base "../../build_menu/base_unavailable.res" "resource/ui/build_menu/base_unavailable.res" { } ================================================ FILE: resource/ui/build_menu_sc/pipboy/base_unavailable_teleport_target.res ================================================ #base "../../build_menu/base_unavailable_teleport_target.res" "resource/ui/build_menu/base_unavailable_teleport_target.res" { } ================================================ FILE: resource/ui/build_menu_sc/pipboy/hudmenuengybuild.res ================================================ #base "../../build_menu/hudmenuengybuild.res" "resource/ui/build_menu/hudmenuengybuild.res" { } ================================================ FILE: resource/ui/build_menu_sc/pipboy/hudmenueurekaeffect.res ================================================ #base "../../build_menu/hudmenueurekaeffect.res" "resource/ui/build_menu/hudmenueurekaeffect.res" { } ================================================ FILE: resource/ui/charinfoarmorysubpanel.res ================================================ "resource/ui/charinfoarmorysubpanel.res" { "armory_panel" { "ControlName" "Frame" "fieldName" "armory_panel" "wide" "f0" "zpos" "501" "visible" "1" "autoResize" "0" "pinCorner" "0" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "bgcolor_override" "DarkGrey" "infocus_bgcolor_override" "DarkGrey" "outoffocus_bgcolor_override" "DarkGrey" "thumbnail_bgcolor" "Grey" "thumbnail_bgcolor_mouseover" "156 146 128 255" "thumbnail_bgcolor_selected" "176 166 148 255" "thumbnails_rows" "4" "thumbnails_columns" "4" "thumbnails_x" "c-300" "thumbnails_y" "60" "thumbnails_delta_x" "8" "thumbnails_delta_y" "8" "thumbnail_modelpanels_kv" { "ControlName" "CItemModelPanel" "zpos" "13" "wide" "70" "tall" "49" "visible" "0" "bgcolor_override" "HudBlack" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "0" "model_xpos" "7" "model_ypos" "5" "model_wide" "58" "model_tall" "38" "text_ypos" "60" "text_center" "1" "name_only" "1" "inset_eq_x" "2" "inset_eq_y" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } } "CaratLabel" { "ControlName" "CExLabel" "fieldName" "CaratLabel" "xpos" "9999" } "ArmoryLabel" { "ControlName" "Label" "fieldName" "ArmoryLabel" "xpos" "9999" } "FiltersLabel" { "ControlName" "CExLabel" "fieldName" "FiltersLabel" "font" "FontRegular15" "labelText" "#Store_FilterLabel" "textAlignment" "west" "xpos" "c-300" "ypos" "32" "zpos" "1" "wide" "60" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "FilterComboBox" { "ControlName" "ComboBox" "fieldName" "FilterComboBox" "font" "FontRegular12" "xpos" "c-240" "ypos" "32" "zpos" "1" "wide" "200" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "disabledFgColor_override" "TanLight" "disabledBgColor_override" "Black" "selectionColor_override" "Black" "selectionTextColor_override" "TanLight" "defaultSelectionBG2Color_override" "Black" } "DataPanel" { "ControlName" "EditablePanel" "fieldName" "DataPanel" "xpos" "c20" "ypos" "30" "zpos" "1" "wide" "270" "tall" "253" "visible" "1" "PaintBackgroundType" "0" "paintborder" "1" "border" "NoBorder" "Data_TextRichText" { "ControlName" "CEconItemDetailsRichText" "fieldName" "Data_TextRichText" "font" "ScoreboardSmall" "labelText" "%datatext%" "textAlignment" "north-west" "xpos" "5" "ypos" "138" "wide" "260" "tall" "125" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "wrap" "1" "highlight_color" "Yellow" "itemset_color" "216 244 9 255" "link_color" "Yellow" "image_up_arrow" "scroll_up_off" "image_up_arrow_mouseover" "scroll_up_on" "image_down_arrow" "scroll_down_off" "image_down_arrow_mouseover" "scroll_down_on" "image_line" "ArmoryScrollbarWell" "image_box" "ArmoryScrollbarBox" } } "SelectedItemModelPanel" { "ControlName" "CItemModelPanel" "fieldName" "SelectedItemModelPanel" "xpos" "c25" "ypos" "40" "zpos" "1" "wide" "260" "tall" "135" "visible" "1" "PaintBackground" "0" "paintborder" "0" "model_hide" "1" "text_center" "1" "resize_to_text" "0" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "SelectedItemImageModelPanel" { "ControlName" "CItemModelPanel" "fieldName" "SelectedItemImageModelPanel" "xpos" "c-280" "ypos" "160" "zpos" "1" "wide" "290" "tall" "140" "visible" "0" "paintbackground" "0" "PaintBackgroundType" "2" "paintborder" "0" "model_ypos" "10" "model_tall" "120" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "1001" "wide" "200" "tall" "150" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_center_x" "1" "model_hide" "0" "resize_to_text" "1" "padding_height" "15" "name_only" "1" "model_ypos" "15" "model_wide" "150" "model_tall" "100" "model_center_x" "1" "hide_collection_panel" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "PrevPageButton" { "ControlName" "CExButton" "fieldName" "PrevPageButton" "xpos" "c-300" "ypos" "290" "zpos" "5" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&A" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "prevpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CurPageLabel" { "ControlName" "CExLabel" "fieldName" "CurPageLabel" "font" "FontBold14" "labelText" "%thumbnailpage%" "textAlignment" "center" "xpos" "c-270" "ypos" "290" "zpos" "5" "wide" "50" "tall" "30" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "NextPageButton" { "ControlName" "CExButton" "fieldName" "NextPageButton" "xpos" "c-220" "ypos" "290" "zpos" "5" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&D" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "WikiButton" { "ControlName" "CExButton" "fieldName" "WikiButton" "xpos" "c130" "ypos" "290" "zpos" "20" "wide" "160" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#ArmoryButton_Wiki" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "wiki" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ViewSetButton" { "ControlName" "CExButton" "fieldName" "ViewSetButton" "xpos" "c20" "ypos" "290" "zpos" "20" "wide" "100" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#ArmoryButton_SetDetails" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "viewset" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "StoreButton" { "ControlName" "CExButton" "fieldName" "StoreButton" "xpos" "c-185" "ypos" "290" "zpos" "20" "wide" "180" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#ArmoryButton_Store" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "openstore" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Wall" { "ControlName" "EditablePanel" "fieldName" "Wall" "xpos" "c-315" "ypos" "20" "wide" "618" "tall" "305" "visible" "1" "enabled" "1" "bgcolor_override" "DarkerGrey" "PaintBackgroundType" "2" } } ================================================ FILE: resource/ui/charinfoloadoutsubpanel.res ================================================ "resource/ui/charinfoloadoutsubpanel.res" { "CharInfoLoadoutSubPanel" { "ControlName" "Frame" "fieldName" "CharInfoLoadoutSubPanel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "bgcolor_override" "DarkGrey" "infocus_bgcolor_override" "DarkGrey" "outoffocus_bgcolor_override" "DarkGrey" "selectlabely_default" "0" "selectlabely_onchanges" "0" "class_ypos" "70" "class_xdelta" "10" "class_wide_min" "60" "class_wide_max" "60" "class_tall_min" "30" "class_tall_max" "30" "class_distance_min" "7" "class_distance_max" "100" "itemcountcolor" "LightRed" "itemcountcolor_noitems" "TextColor" } "scout" { "ControlName" "ImageButton" "fieldName" "scout" "xpos" "9999" "activeimage" "" "inactiveimage" "" "wide" "0" "tall" "0" } "CustomScout" { "ControlName" "CExImageButton" "fieldName" "CustomScout" "xpos" "c-310" "ypos" "c-160" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&1" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "loadout scout" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuScout" "depressedFgColor_override" "MenuScout" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "TitleScout" { "ControlName" "CExLabel" "fieldName" "TitleScout" "font" "FontBold12" "labelText" "#TF_Scout" "textAlignment" "center" "xpos" "c-310" "ypos" "c-100" "zpos" "5" "wide" "60" "tall" "15" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } "soldier" { "ControlName" "ImageButton" "fieldName" "soldier" "xpos" "9999" "activeimage" "" "inactiveimage" "" "wide" "0" "tall" "0" } "CustomSoldier" { "ControlName" "CExImageButton" "fieldName" "CustomSoldier" "xpos" "10" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&2" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "loadout soldier" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuSoldier" "depressedFgColor_override" "MenuSoldier" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "CustomScout" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TitleSoldier" { "ControlName" "CExLabel" "fieldName" "TitleSoldier" "font" "FontBold12" "labelText" "#TF_Soldier" "textAlignment" "center" "xpos" "10" "ypos" "0" "zpos" "5" "wide" "60" "tall" "15" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "pin_to_sibling" "TitleScout" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "pyro" { "ControlName" "ImageButton" "fieldName" "pyro" "xpos" "9999" "activeimage" "" "inactiveimage" "" "wide" "0" "tall" "0" } "CustomPyro" { "ControlName" "CExImageButton" "fieldName" "CustomPyro" "xpos" "10" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&3" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "loadout pyro" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuPyro" "depressedFgColor_override" "MenuPyro" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "CustomSoldier" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TitlePyro" { "ControlName" "CExLabel" "fieldName" "TitlePyro" "font" "FontBold12" "labelText" "#TF_Pyro" "textAlignment" "center" "xpos" "10" "ypos" "0" "zpos" "5" "wide" "60" "tall" "15" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "pin_to_sibling" "TitleSoldier" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "demoman" { "ControlName" "ImageButton" "fieldName" "demoman" "xpos" "9999" "activeimage" "" "inactiveimage" "" "wide" "0" "tall" "0" } "CustomDemoman" { "ControlName" "CExImageButton" "fieldName" "CustomDemoman" "xpos" "10" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&4" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "loadout demoman" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuDemoman" "depressedFgColor_override" "MenuDemoman" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "CustomPyro" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TitleDemoman" { "ControlName" "CExLabel" "fieldName" "TitleDemoman" "font" "FontBold12" "labelText" "#TF_Demoman" "textAlignment" "center" "xpos" "10" "ypos" "0" "zpos" "5" "wide" "60" "tall" "15" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "pin_to_sibling" "TitlePyro" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "heavyweapons" { "ControlName" "ImageButton" "fieldName" "heavyweapons" "xpos" "9999" "activeimage" "" "inactiveimage" "" "wide" "0" "tall" "0" } "CustomHeavy" { "ControlName" "CExImageButton" "fieldName" "CustomHeavy" "xpos" "10" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&5" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "loadout heavy" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuHeavy" "depressedFgColor_override" "MenuHeavy" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "CustomDemoman" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TitleHeavy" { "ControlName" "CExLabel" "fieldName" "TitleHeavy" "font" "FontBold12" "labelText" "#TF_HWGuy" "textAlignment" "center" "xpos" "10" "ypos" "0" "zpos" "5" "wide" "60" "tall" "15" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "pin_to_sibling" "TitleDemoman" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "engineer" { "ControlName" "ImageButton" "fieldName" "engineer" "xpos" "9999" "activeimage" "" "inactiveimage" "" "wide" "0" "tall" "0" } "CustomEngineer" { "ControlName" "CExImageButton" "fieldName" "CustomEngineer" "xpos" "10" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&6" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "loadout engineer" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuEngineer" "depressedFgColor_override" "MenuEngineer" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "CustomHeavy" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TitleEngineer" { "ControlName" "CExLabel" "fieldName" "TitleEngineer" "font" "FontBold12" "labelText" "#TF_Engineer" "textAlignment" "center" "xpos" "10" "ypos" "0" "zpos" "5" "wide" "60" "tall" "15" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "pin_to_sibling" "TitleHeavy" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "medic" { "ControlName" "ImageButton" "fieldName" "medic" "xpos" "9999" "activeimage" "" "inactiveimage" "" "wide" "0" "tall" "0" } "CustomMedic" { "ControlName" "CExImageButton" "fieldName" "CustomMedic" "xpos" "10" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&7" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "loadout medic" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuMedic" "depressedFgColor_override" "MenuMedic" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "CustomEngineer" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TitleMedic" { "ControlName" "CExLabel" "fieldName" "TitleMedic" "font" "FontBold12" "labelText" "#TF_Medic" "textAlignment" "center" "xpos" "10" "ypos" "0" "zpos" "5" "wide" "60" "tall" "15" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "pin_to_sibling" "TitleEngineer" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "sniper" { "ControlName" "ImageButton" "fieldName" "sniper" "xpos" "9999" "activeimage" "" "inactiveimage" "" "wide" "0" "tall" "0" } "CustomSniper" { "ControlName" "CExImageButton" "fieldName" "CustomSniper" "xpos" "10" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&8" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "loadout sniper" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuSniper" "depressedFgColor_override" "MenuSniper" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "CustomMedic" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TitleSniper" { "ControlName" "CExLabel" "fieldName" "TitleSniper" "font" "FontBold12" "labelText" "#TF_Sniper" "textAlignment" "center" "xpos" "10" "ypos" "0" "zpos" "5" "wide" "60" "tall" "15" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "pin_to_sibling" "TitleMedic" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "spy" { "ControlName" "ImageButton" "fieldName" "spy" "xpos" "9999" "activeimage" "" "inactiveimage" "" "wide" "0" "tall" "0" } "CustomSpy" { "ControlName" "CExImageButton" "fieldName" "CustomSpy" "xpos" "10" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&9" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "loadout spy" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuSpy" "depressedFgColor_override" "MenuSpy" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "CustomSniper" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TitleSpy" { "ControlName" "CExLabel" "fieldName" "TitleSpy" "font" "FontBold12" "labelText" "#TF_Spy" "textAlignment" "center" "xpos" "10" "ypos" "0" "zpos" "5" "wide" "60" "tall" "15" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "pin_to_sibling" "TitleSniper" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ShowBackpackButton" { "ControlName" "ImageButton" "fieldName" "ShowBackpackButton" "xpos" "9999" "wide" "0" "tall" "0" "activeimage" "" "inactiveimage" "" } "BackpackButton" { "ControlName" "CExImageButton" "fieldName" "BackpackButton" "xpos" "c-280" "ypos" "c-55" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "^" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "backpack" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuScout" "depressedFgColor_override" "MenuScout" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ShowBackpackLabel" { "ControlName" "CExLabel" "fieldName" "ShowBackpackLabel" "font" "FontBold14" "labelText" "#BackpackTitle" "textAlignment" "north" "xpos" "0" "ypos" "5" "zpos" "7" "wide" "120" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "BackpackButton" "pin_corner_to_sibling" "4" "pin_to_sibling_corner" "6" } "ShowCraftingButton" { "ControlName" "ImageButton" "fieldName" "ShowCraftingButton" "xpos" "9999" "wide" "0" "tall" "0" "activeimage" "" "inactiveimage" "" } "CraftingButton" { "ControlName" "CExImageButton" "fieldName" "CraftingButton" "xpos" "110" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "y" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "crafting" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuPyro" "depressedFgColor_override" "MenuPyro" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "BackpackButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ShowCraftingLabel" { "ControlName" "CExLabel" "fieldName" "ShowCraftingLabel" "font" "FontBold14" "labelText" "#CraftingExplanation_Title" "textAlignment" "north" "xpos" "0" "ypos" "5" "zpos" "7" "wide" "120" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "CraftingButton" "pin_corner_to_sibling" "4" "pin_to_sibling_corner" "6" } "ShowArmoryButton" { "ControlName" "ImageButton" "fieldName" "ShowArmoryButton" "xpos" "9999" "wide" "0" "tall" "0" "activeimage" "" "inactiveimage" "" } "ArmoryButton" { "ControlName" "CExImageButton" "fieldName" "ArmoryButton" "xpos" "130" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "z" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "armory" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuHeavy" "depressedFgColor_override" "MenuHeavy" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "CraftingButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ShowArmoryLabel" { "ControlName" "CExLabel" "fieldName" "ShowArmoryLabel" "font" "FontBold14" "labelText" "#Armory" "textAlignment" "north" "xpos" "0" "ypos" "5" "zpos" "7" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ArmoryButton" "pin_corner_to_sibling" "4" "pin_to_sibling_corner" "6" } "ShowTradeButton" { "ControlName" "ImageButton" "fieldName" "ShowTradeButton" "xpos" "9999" "wide" "0" "tall" "0" "activeimage" "" "inactiveimage" "" } "TradeButton" { "ControlName" "CExImageButton" "fieldName" "TradeButton" "xpos" "130" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "{" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "trading" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuMedic" "depressedFgColor_override" "MenuMedic" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "ArmoryButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ShowTradeLabel" { "ControlName" "CExLabel" "fieldName" "ShowTradeLabel" "font" "FontBold14" "labelText" "#TradingExplanation_Title" "textAlignment" "north" "xpos" "0" "ypos" "5" "zpos" "7" "wide" "120" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "pin_to_sibling" "TradeButton" "pin_corner_to_sibling" "4" "pin_to_sibling_corner" "6" } "ShowPaintkitsButton" { "ControlName" "ImageButton" "fieldName" "ShowPaintkitsButton" "xpos" "9999" "wide" "0" "tall" "0" "activeimage" "" "inactiveimage" "" } "PaintkitsButton" { "ControlName" "CExImageButton" "fieldName" "PaintkitsButton" "xpos" "130" "ypos" "0" "zpos" "10" "wide" "60" "tall" "60" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "|" "font" "LargeIcons" "textAlignment" "center" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "0" "paintbackground" "0" "Command" "paintkit_preview" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuSpy" "depressedFgColor_override" "MenuSpy" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "TradeButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ShowPaintkitsLabel" { "ControlName" "CExLabel" "fieldName" "ShowPaintkitsLabel" "font" "FontBold14" "labelText" "#PaintkitTitle" "textAlignment" "north" "xpos" "0" "ypos" "5" "zpos" "7" "wide" "120" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "pin_to_sibling" "PaintkitsButton" "pin_corner_to_sibling" "4" "pin_to_sibling_corner" "6" } "ClassLabel" { "ControlName" "Label" "fieldName" "ClassLabel" "font" "FontRegular14" "labelText" "classname" "textAlignment" "north" "xpos" "0" "ypos" "200" "zpos" "1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" } "ItemsLabel" { "ControlName" "CExLabel" "fieldName" "ItemsLabel" "font" "FontRegular10" "labelText" "classname" "textAlignment" "north" "xpos" "0" "ypos" "215" "zpos" "1" "wide" "0" "tall" "0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "fgcolor" "TransparentLightBlack" "centerwrap" "1" } "NoSteamLabel" { "ControlName" "CExLabel" "fieldName" "NoSteamLabel" "font" "FontRegular12" "labelText" "#NoSteamNoItems" "textAlignment" "north" "xpos" "0" "ypos" "250" "zpos" "1" "wide" "f0" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "fgcolor_override" "Yellow" } "NoGCLabel" { "ControlName" "CExLabel" "fieldName" "NoGCLabel" "font" "FontRegular12" "labelText" "#NoGCNoItems" "textAlignment" "north" "xpos" "0" "ypos" "250" "zpos" "1" "wide" "f0" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "fgcolor_override" "Yellow" } "SelectLabel" { "ControlName" "CExLabel" "fieldName" "SelectLabel" "font" "FontBold14" "labelText" "#SelectClassLoadout" "textAlignment" "center" "xpos" "0" "ypos" "300" "zpos" "1" "wide" "f0" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "Transparent" } "LoadoutChangesLabel" { "ControlName" "CExLabel" "fieldName" "LoadoutChangesLabel" "font" "FontRegular10" "labelText" "#LoadoutChangesUpdate" "textAlignment" "north" "xpos" "0" "ypos" "35" "zpos" "1" "wide" "f0" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "Yellow" } "class_loadout_panel" { "ControlName" "CClassLoadoutPanel" "fieldName" "class_loadout_panel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "400" "zpos" "500" "visible" "0" } "backpack_panel" { "ControlName" "CBackpackPanel" "fieldName" "backpack_panel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "400" "zpos" "500" "visible" "0" } "ShowExplanationsButton" { "ControlName" "CExButton" "fieldName" "ShowExplanationsButton" "xpos" "9999" "ypos" "9999" "zpos" "100" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" "labelText" "?" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "show_explanations" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "StartExplanation" { "ControlName" "CExplanationPopup" "fieldName" "StartExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "140" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-150" "end_y" "190" "end_wide" "300" "end_tall" "155" "callout_inparents_x" "c0" "callout_inparents_y" "150" "next_explanation" "BackpackExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#LoadoutExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#LoadoutExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "85" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "125" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "Yellow" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "260" "ypos" "125" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "nextexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "BackpackExplanation" { "ControlName" "CExplanationPopup" "fieldName" "BackpackExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "120" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-320" "end_y" "60" "end_wide" "250" "end_tall" "130" "callout_inparents_x" "c-255" "callout_inparents_y" "240" "next_explanation" "CraftingExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#BackpackExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "210" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#BackpackExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "210" "tall" "65" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "230" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "100" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "prevexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "100" "zpos" "-1" "wide" "250" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "Yellow" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "210" "ypos" "100" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "nextexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "CraftingExplanation" { "ControlName" "CExplanationPopup" "fieldName" "CraftingExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "120" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-210" "end_y" "60" "end_wide" "250" "end_tall" "140" "callout_inparents_x" "c-130" "callout_inparents_y" "240" "next_explanation" "ArmoryExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#CraftingExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "210" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#CraftingExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "210" "tall" "65" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "230" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "110" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "prevexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "110" "zpos" "-1" "wide" "250" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "Yellow" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "210" "ypos" "110" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "nextexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "ArmoryExplanation" { "ControlName" "CExplanationPopup" "fieldName" "ArmoryExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "120" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-120" "end_y" "60" "end_wide" "250" "end_tall" "140" "callout_inparents_x" "c0" "callout_inparents_y" "240" "next_explanation" "TradingExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#ArmoryExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "210" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#ArmoryExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "210" "tall" "65" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "230" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "110" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "prevexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "110" "zpos" "-1" "wide" "250" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "Yellow" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "210" "ypos" "110" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "nextexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "TradingExplanation" { "ControlName" "CExplanationPopup" "fieldName" "TradingExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "120" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-30" "end_y" "60" "end_wide" "250" "end_tall" "140" "callout_inparents_x" "c130" "callout_inparents_y" "240" "next_explanation" "PatternsExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#TradingExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "210" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#TradingExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "210" "tall" "65" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "230" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "110" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "prevexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "110" "zpos" "-1" "wide" "250" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "Yellow" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "210" "ypos" "110" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "nextexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "PatternsExplanation" { "ControlName" "CExplanationPopup" "fieldName" "PatternsExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "120" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c130" "end_y" "60" "end_wide" "250" "end_tall" "140" "callout_inparents_x" "c255" "callout_inparents_y" "240" "next_explanation" "ExplanationExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#WeaponPatternsExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "210" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#WeaponPatternsExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "35" "wide" "210" "tall" "75" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "230" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "110" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "prevexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "110" "zpos" "-1" "wide" "250" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "Yellow" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "210" "ypos" "110" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "nextexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "ExplanationExplanation" { "ControlName" "CExplanationPopup" "fieldName" "ExplanationExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "120" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c100" "end_y" "100" "end_wide" "250" "end_tall" "120" "callout_inparents_x" "c285" "callout_inparents_y" "30" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#ExplanationExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "210" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#ExplanationExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "210" "tall" "65" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "230" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "90" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "prevexplanation" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "90" "zpos" "-1" "wide" "250" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } } "armory_panel" { "ControlName" "CArmoryPanel" "fieldName" "armory_panel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "400" "zpos" "500" "visible" "0" } "InspectionPanel" { "fieldName" "InspectionPanel" "xpos" "cs-0.5" "ypos" "0" "zpos" "2000" "wide" "f0" "tall" "f100" "visible" "0" "proportionaltoparent" "1" "bgcolor_override" "DarkGrey" } "Wall" { "ControlName" "EditablePanel" "fieldName" "Wall" "xpos" "c-330" "ypos" "c-175" "wide" "655" "tall" "230" "visible" "1" "enabled" "1" "bgcolor_override" "DarkerGrey" "PaintBackgroundType" "2" } } ================================================ FILE: resource/ui/charinfopanel.res ================================================ "resource/ui/charinfopanel.res" { "character_info" { "ControlName" "EditablePanel" "fieldName" "character_info" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "1" "PaintBackgroundType" "0" "bgcolor_override" "27 27 27 0" "infocus_bgcolor_override" "27 27 27 0" "outoffocus_bgcolor_override" "27 27 27 0" "title" "#CharInfoAndSetup" "title_font" "HudFontMedium" "titletextinsetX" "40" "titletextinsetY" "0" "titlebarfgcolor_override" "HudOffWhite" "titlebardisabledfgcolor_override" "HudOffWhite" "titlebarbgcolor_override" "DarkGrey" "clientinsetx_override" "0" "sheetinset_bottom" "40" } "BackgroundHeader" { "ControlName" "ImagePanel" "fieldName" "BackgroundHeader" "xpos" "0" "ypos" "0" "zpos" "-2" "wide" "f0" "tall" "120" "visible" "1" "enabled" "1" "image" "loadout_header" "tileImage" "1" } "BackgroundHeader2" { "ControlName" "ImagePanel" "fieldName" "BackgroundHeader2" "xpos" "0" "ypos" "0" "zpos" "-2" "wide" "f0" "tall" "120" "visible" "1" "enabled" "1" "fillcolor" "27 27 27 200" "tileImage" "1" } "BackgroundFooter" { "ControlName" "ImagePanel" "fieldName" "BackgroundFooter" "xpos" "0" "ypos" "423" "zpos" "0" "wide" "f0" "tall" "60" "visible" "1" "enabled" "1" "image" "loadout_header" "tileImage" "1" } "BackgroundFooter2" { "ControlName" "ImagePanel" "fieldName" "BackgroundFooter2" "xpos" "0" "ypos" "423" "zpos" "1" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "fillcolor" "27 27 27 200" "tileImage" "1" } "FooterLine" { "ControlName" "ImagePanel" "fieldName" "FooterLine" "xpos" "9999" "wide" "0" } "Sheet" { "ControlName" "EditablePanel" "fieldName" "Sheet" "tabxindent" "80" "tabxdelta" "10" "tabwidth" "240" "tabheight" "25" "transition_time" "0" "yoffset" "14" "HeaderLine" { "ControlName" "ImagePanel" "fieldName" "HeaderLine" "xpos" "0" "ypos" "30" "zpos" "5" "wide" "f0" "tall" "10" "visible" "0" "enabled" "0" "image" "loadout_solid_line" "scaleImage" "1" } "tabskv" { "textinsetx" "40" "textAlignment" "center" "font" "FontBold18" "selectedcolor" "TanLight" "unselectedcolor" "TanDark" "defaultBgColor_override" "DarkGrey" "paintbackground" "1" "activeborder_override" "ButtonDepressedBorder" "normalborder_override" "ButtonDepressedBorder" "armedBgColor_override" "37 37 37 255" "selectedBgColor_override" "DarkGrey" } } "BackButton" { "ControlName" "CExButton" "fieldName" "BackButton" "xpos" "100" "ypos" "437" "zpos" "2" "wide" "150" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#FH_back" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "back" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "NotificationsPresentPanel" { "ControlName" "CNotificationsPresentPanel" "fieldName" "NotificationsPresentPanel" "xpos" "r200" "ypos" "10" "zpos" "10000" "wide" "190" "tall" "50" "visible" "0" "enabled" "1" } } ================================================ FILE: resource/ui/classloadoutpanel.res ================================================ "resource/ui/fullloadoutpanel.res" { "class_loadout_panel" { "ControlName" "Frame" "fieldName" "class_loadout_panel" "xpos" "0" "ypos" "0" "wide" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "bgcolor_override" "DarkGrey" "infocus_bgcolor_override" "DarkGrey" "outoffocus_bgcolor_override" "DarkGrey" "item_xpos_offcenter_a" "60" "item_xpos_offcenter_b" "188" "item_ypos" "60" "item_ydelta" "75" "item_mod_wide" "40" "item_backpack_offcenter_x" "-288" "item_backpack_xdelta" "4" "item_backpack_ydelta" "3" "button_xpos_offcenter" "175" "button_ypos" "85" "button_ydelta" "80" "button_override_delete_xpos" "0" "modelpanels_kv" { "ControlName" "CItemModelPanel" "xpos" "c-70" "ypos" "270" "wide" "125" "tall" "70" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "model_center_x" "1" "model_ypos" "5" "model_tall" "55" "model_wide" "82" "text_ypos" "0" "text_forcesize" "2" "text_center" "0" "text_yoffset" "2" "name_only" "1" "attriblabel" { "font" "ItemFontAttribLarge" "visible" "0" } "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } "inset_eq_y" "0" } "itemoptionpanels_kv" { "ControlName" "CExButton" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "20" "tall" "20" "autoResize" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "w" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintbackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "TanDark" "depressedFgColor_override" "TanLight" } } "CaratLabel" { "ControlName" "CExLabel" "fieldName" "CaratLabel" "xpos" "9999" } "ClassLabel" { "ControlName" "CExLabel" "fieldName" "ClassLabel" "font" "FontBold37" "labelText" "#ClassBeingEquipped" "textAlignment" "center" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "f0" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "TauntCaratLabel" { "ControlName" "CExLabel" "fieldName" "TauntCaratLabel" "xpos" "9999" } "TauntLabel" { "ControlName" "CExLabel" "fieldName" "TauntLabel" "xpos" "9999" } "CurrentlyEquippedLabel" { "ControlName" "CExLabel" "fieldName" "CurrentlyEquippedLabel" "xpos" "9999" } "TopLine" { "ControlName" "ImagePanel" "xpos" "9999" } "classmodelpanelanchor" { "ControlName" "EditablePanel" "fieldName" "classmodelpanelanchor" "xpos" "p.63" } "classmodelpanel" { "ControlName" "CTFPlayerModelPanel" "fieldName" "classmodelpanel" "xpos" "100" "ypos" "0" "zpos" "1" "wide" "400" "tall" "f4" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "render_texture" "0" "fov" "29" "allow_manip" "1" "pin_to_sibling" "classmodelpanelanchor" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" "model" //customclassdata overrides this { "force_pos" "1" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "280" "origin_y" "15" "origin_z" "-32" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } "customclassdata" //relative unadjusted sizes [scout < demo/engi/sniper/med/spy < soldier < heavy/demoknight < (stock)pyro] { "undefined" { } "Scout" { "fov" "35" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "180" "origin_y" "10" "origin_z" "-29" } "Sniper" { "fov" "37" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "180" "origin_y" "10" "origin_z" "-33" } "Soldier" { "fov" "38" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "180" "origin_y" "10" "origin_z" "-34" } "Demoman" { "fov" "37" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "180" "origin_y" "10" "origin_z" "-33" } "Medic" { "fov" "37" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "180" "origin_y" "10" "origin_z" "-33" } "Heavy" { "fov" "40" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "180" "origin_y" "10" "origin_z" "-36" } "Pyro" { "fov" "37" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "180" "origin_y" "10" "origin_z" "-33" } "Spy" { "fov" "37" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "180" "origin_y" "0" "origin_z" "-33" } "Engineer" { "fov" "37" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "180" "origin_y" "10" "origin_z" "-33" } } } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "paintborder" "1" "text_ypos" "15" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "PassiveAttribsLabel" { "ControlName" "CExLabel" "fieldName" "PassiveAttribsLabel" "font" "FontRegular10" "xpos" "c-55" "ypos" "139" "zpos" "2" "wide" "110" "tall" "222" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "south" "fgcolor" "255 215 0 255" "centerwrap" "1" } "loadout_preset_panel" { "ControlName" "CLoadoutPresetPanel" "FieldName" "loadout_preset_panel" "zpos" "20" "wide" "115" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "paintbackground" "0" } "PresetsExplanation" { "ControlName" "CExplanationPopup" "fieldName" "PresetsExplanation" "xpos" "9999" "wide" "0" "tall" "0" "visible" "0" } "ItemOptionsPanel" { "ControlName" "CLoadoutParticleSlider" "fieldname" "ItemOptionsPanel" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "100" "tall" "75" "autoResize" "1" "visible" "0" "border" "PanelBorder" "bgcolor_override" "DarkerGrey" "PaintBackgroundType" "0" } "TauntHintLabel" { "ControlName" "CExLabel" "fieldName" "TauntHintLabel" "xpos" "9999" } "CharacterLoadoutButton" { "ControlName" "CExImageButton" "fieldName" "CharacterLoadoutButton" "xpos" "-1" "ypos" "4" "zpos" "2" "wide" "25" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "B" "textAlignment" "center" "font" "MediumSmallIcons" "scaleImage" "1" "Command" "characterloadout" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanLight" "defaultBgColor_override" "DarkGrey" "depressedBgColor_override" "DarkGrey" "pin_to_sibling" "loadout_preset_panel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "TauntLoadoutButton" { "ControlName" "CExImageButton" "fieldName" "TauntLoadoutButton" "xpos" "3" "ypos" "0" "zpos" "2" "wide" "25" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "C" "textAlignment" "center" "font" "MediumSmallIcons" "scaleImage" "1" "Command" "tauntloadout" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanLight" "defaultBgColor_override" "DarkGrey" "depressedBgColor_override" "DarkGrey" "pin_to_sibling" "CharacterLoadoutButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TauntsExplanation" { "ControlName" "CExplanationPopup" "fieldName" "TauntsExplanation" "xpos" "9999" } "RedButton" { "ControlName" "CExImageButton" "fieldName" "RedButton" "xpos" "3" "ypos" "0" "zpos" "12" "wide" "25" "tall" "20" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "R" "textAlignment" "center" "font" "FontBold18" "scaleImage" "1" "command" "sv_cheats 1;r_skin 0" "paintbackground" "1" "defaultFgColor_override" "HUDRedTeamSolid" "armedFgColor_override" "TanLight" "armedBgColor_override" "HUDRedTeamSolid" "depressedFgColor_override" "TanLight" "depressedBgColor_override" "HUDRedTeamSolid" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "pin_to_sibling" "TauntLoadoutButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "BlueButton" { "ControlName" "CExImageButton" "fieldName" "BlueButton" "xpos" "3" "ypos" "0" "zpos" "12" "wide" "25" "tall" "20" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "B" "textAlignment" "center" "font" "FontBold18" "scaleImage" "1" "command" "sv_cheats 1;r_skin 1" "paintbackground" "1" "defaultFgColor_override" "HUDBlueTeamSolid" "armedFgColor_override" "TanLight" "armedBgColor_override" "HUDBlueTeamSolid" "depressedFgColor_override" "TanLight" "depressedBgColor_override" "HUDBlueTeamSolid" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "pin_to_sibling" "RedButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } ================================================ FILE: resource/ui/classselection.res ================================================ "resource/ui/classselection.res" { "class" { "ControlName" "Frame" "fieldName" "class" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "SysMenu" { "ControlName" "Menu" "fieldName" "SysMenu" "xpos" "9999" } "scout" { "ControlName" "CExImageButton" "fieldName" "scout" "xpos" "c101" "ypos" "c-110" "zpos" "10" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Scout" "textAlignment" "center" "Command" "joinclass scout" "Default" "0" "font" "FontBold20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuScout" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "MenuScout" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "stayselectedonclick" "1" "selectonhover" "1" "keyboardinputenabled" "0" } "scoutIcon" { "ControlName" "CExLabel" "fieldname" "scoutIcon" "xpos" "0" "ypos" "0" "zpos" "11" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "labelText" "&1" "font" "MediumIcons" "textAlignment" "north" "use_proportional_insets" "1" "Command" "loadout scout" "paintbackground" "0" "mouseinputenabled" "0" "textinsety" "-3" "pin_to_sibling" "scout" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "soldier" { "ControlName" "CExImageButton" "fieldName" "soldier" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Soldier" "textAlignment" "center" "Command" "joinclass soldier" "Default" "0" "font" "FontBold20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuSoldier" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "MenuSoldier" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "stayselectedonclick" "1" "selectonhover" "1" "keyboardinputenabled" "0" "pin_to_sibling" "scout" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "soldierIcon" { "ControlName" "CExLabel" "fieldname" "soldierIcon" "xpos" "0" "ypos" "0" "zpos" "11" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "labelText" "&2" "font" "MediumIcons" "textAlignment" "center" "use_proportional_insets" "1" "Command" "loadout soldier" "paintbackground" "0" "mouseinputenabled" "0" "textinsety" "-3" "pin_to_sibling" "soldier" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "pyro" { "ControlName" "CExImageButton" "fieldName" "pyro" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Pyro" "textAlignment" "center" "Command" "joinclass pyro" "Default" "0" "font" "FontBold20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuPyro" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "MenuPyro" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "stayselectedonclick" "1" "selectonhover" "1" "keyboardinputenabled" "0" "pin_to_sibling" "soldier" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "pyroIcon" { "ControlName" "CExLabel" "fieldname" "pyroIcon" "xpos" "0" "ypos" "0" "zpos" "11" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "labelText" "&3" "font" "MediumIcons" "textAlignment" "center" "use_proportional_insets" "1" "Command" "loadout pyro" "paintbackground" "0" "mouseinputenabled" "0" "textinsety" "-3" "pin_to_sibling" "pyro" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "demoman" { "ControlName" "CExImageButton" "fieldName" "demoman" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Demoman" "textAlignment" "center" "Command" "joinclass demoman" "Default" "0" "font" "FontBold20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuDemoman" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "MenuDemoman" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "stayselectedonclick" "1" "selectonhover" "1" "keyboardinputenabled" "0" "pin_to_sibling" "pyro" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "demomanIcon" { "ControlName" "CExLabel" "fieldname" "demomanIcon" "xpos" "0" "ypos" "0" "zpos" "11" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "labelText" "&4" "font" "MediumIcons" "textAlignment" "center" "use_proportional_insets" "1" "Command" "loadout demoman" "paintbackground" "0" "mouseinputenabled" "0" "textinsety" "-3" "pin_to_sibling" "demoman" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "heavyweapons" { "ControlName" "CExImageButton" "fieldName" "heavyweapons" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_HWGuy" "textAlignment" "center" "Command" "joinclass heavyweapons" "Default" "0" "font" "FontBold20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuHeavy" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "MenuHeavy" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "stayselectedonclick" "1" "selectonhover" "1" "keyboardinputenabled" "0" "pin_to_sibling" "demoman" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "heavyweaponsIcon" { "ControlName" "CExLabel" "fieldname" "heavyweaponsIcon" "xpos" "0" "ypos" "0" "zpos" "11" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "labelText" "&5" "font" "MediumIcons" "textAlignment" "center" "use_proportional_insets" "1" "Command" "loadout heavyweapons" "paintbackground" "0" "mouseinputenabled" "0" "textinsety" "-3" "pin_to_sibling" "heavyweapons" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "engineer" { "ControlName" "CExImageButton" "fieldName" "engineer" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Engineer" "textAlignment" "center" "Command" "joinclass engineer" "Default" "0" "font" "FontBold20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuEngineer" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "MenuEngineer" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "stayselectedonclick" "1" "selectonhover" "1" "keyboardinputenabled" "0" "pin_to_sibling" "heavyweapons" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "engineerIcon" { "ControlName" "CExLabel" "fieldname" "engineerIcon" "xpos" "0" "ypos" "0" "zpos" "11" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "labelText" "&6" "font" "MediumIcons" "textAlignment" "center" "use_proportional_insets" "1" "Command" "loadout engineer" "paintbackground" "0" "mouseinputenabled" "0" "textinsety" "-3" "pin_to_sibling" "engineer" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "medic" { "ControlName" "CExImageButton" "fieldName" "medic" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Medic" "textAlignment" "center" "Command" "joinclass medic" "Default" "0" "font" "FontBold20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuMedic" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "MenuMedic" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "stayselectedonclick" "1" "selectonhover" "1" "keyboardinputenabled" "0" "pin_to_sibling" "engineer" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "medicIcon" { "ControlName" "CExLabel" "fieldname" "medicIcon" "xpos" "0" "ypos" "0" "zpos" "11" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "labelText" "&7" "font" "MediumIcons" "textAlignment" "center" "use_proportional_insets" "1" "Command" "loadout medic" "paintbackground" "0" "mouseinputenabled" "0" "textinsety" "-3" "pin_to_sibling" "medic" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "sniper" { "ControlName" "CExImageButton" "fieldName" "sniper" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Sniper" "textAlignment" "center" "Command" "joinclass sniper" "Default" "0" "font" "FontBold20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuSniper" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "MenuSniper" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "stayselectedonclick" "1" "selectonhover" "1" "keyboardinputenabled" "0" "pin_to_sibling" "medic" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "sniperIcon" { "ControlName" "CExLabel" "fieldname" "sniperIcon" "xpos" "0" "ypos" "0" "zpos" "11" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "labelText" "&8" "font" "MediumIcons" "textAlignment" "center" "use_proportional_insets" "1" "Command" "loadout sniper" "paintbackground" "0" "mouseinputenabled" "0" "textinsety" "-3" "pin_to_sibling" "sniper" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "spy" { "ControlName" "CExImageButton" "fieldName" "spy" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Spy" "textAlignment" "center" "Command" "joinclass spy" "Default" "0" "font" "FontBold20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanLight" "armedFgColor_override" "MenuSpy" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "MenuSpy" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "stayselectedonclick" "1" "selectonhover" "1" "keyboardinputenabled" "0" "pin_to_sibling" "sniper" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "spyIcon" { "ControlName" "CExLabel" "fieldname" "spyIcon" "xpos" "0" "ypos" "0" "zpos" "11" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "labelText" "&9" "font" "MediumIcons" "textAlignment" "center" "use_proportional_insets" "1" "Command" "loadout spy" "paintbackground" "0" "mouseinputenabled" "0" "textinsety" "-3" "pin_to_sibling" "spy" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } // I believe Valve hardcoded part of this control for some reason. // Using the same control with a different name fixes it. "random" { "visible" "0" "enabled" "0" } "random2" { "ControlName" "CExButton" "fieldName" "random2" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#FH_random_class" "textAlignment" "west" "Command" "joinclass random" "Default" "1" "font" "FontRegular12" "textinsetx" "20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanDark" "selectedFgColor_override" "TanLight" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "pin_to_sibling" "spy" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "EditLoadoutButton" [$WIN32] { "ControlName" "CExButton" "fieldName" "EditLoadoutButton" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#FH_edit_loadout" "textAlignment" "west" "Command" "openloadout" "font" "FontRegular12" "textinsetx" "20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanDark" "selectedFgColor_override" "TanLight" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "pin_to_sibling" "random2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "CancelButton" [$WIN32] { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "0" "ypos" "2" "zpos" "10" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#FH_cancel_class" "textAlignment" "west" "Command" "vguicancel" "font" "FontRegular12" "textinsetx" "20" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanDark" "selectedFgColor_override" "TanLight" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "pin_to_sibling" "EditLoadoutButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "ClassMenuSelect" { "ControlName" "CExImageButton" "fieldName" "ClassMenuSelect" "xpos" "0" "ypos" "c-180" "zpos" "1" "wide" "f0" "tall" "30" "visible" "1" "enabled" "1" "labelText" "#TF_SelectAClass" "textAlignment" "center" "font" "FontBold37" "paintbackground" "0" "sound_released" "UI/secret.mp3" "sound_depressed" "" "defaultFgColor_override" "TanLight" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanLight" } "MenuBG" { "ControlName" "CModelPanel" "fieldName" "MenuBG" "xpos" "9999" } "ShadedBar" { "ControlName" "ImagePanel" "fieldName" "ShadedBar" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "PaintBackgroundType" "0" "fillcolor" "TransparentBlack" } "localPlayerImage" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "localPlayerImage" "xpos" "9999" } "localPlayerBG" { "ControlName" "CTFImagePanel" "fieldName" "localPlayerBG" "xpos" "9999" } "countImage0" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage0" "xpos" "9999" } "countImage1" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage1" "xpos" "9999" } "countImage2" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage2" "xpos" "9999" } "countImage3" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage3" "xpos" "9999" } "countImage4" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage4" "xpos" "9999" } "countImage5" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage5" "xpos" "9999" } "countImage6" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage6" "xpos" "9999" } "countImage7" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage7" "xpos" "9999" } "countImage8" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage8" "xpos" "9999" } "countImage9" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage9" "xpos" "9999" } "countImage10" [$WIN32] { "ControlName" "CTFImagePanel" "fieldName" "countImage10" "xpos" "9999" } "numScout" { "ControlName" "CExLabel" "fieldName" "numScout" "xpos" "5" "ypos" "0" "zpos" "11" "wide" "150" "tall" "25" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%numScout%" "font" "FontRegular20" "textAlignment" "west" "mouseinputenabled" "0" "pin_to_sibling" "scout" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "numSoldier" { "ControlName" "CExLabel" "fieldName" "numSoldier" "xpos" "5" "ypos" "0" "zpos" "11" "wide" "150" "tall" "25" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%numSoldier%" "font" "FontRegular20" "textAlignment" "west" "mouseinputenabled" "0" "pin_to_sibling" "soldier" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "numPyro" { "ControlName" "CExLabel" "fieldName" "numPyro" "xpos" "5" "ypos" "0" "zpos" "11" "wide" "150" "tall" "25" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%numPyro%" "font" "FontRegular20" "textAlignment" "west" "mouseinputenabled" "0" "pin_to_sibling" "pyro" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "numDemoman" { "ControlName" "CExLabel" "fieldName" "numDemoman" "xpos" "5" "ypos" "0" "zpos" "11" "wide" "150" "tall" "25" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%numDemoman%" "font" "FontRegular20" "textAlignment" "west" "mouseinputenabled" "0" "pin_to_sibling" "demoman" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "numHeavy" { "ControlName" "CExLabel" "fieldName" "numHeavy" "xpos" "5" "ypos" "0" "zpos" "11" "wide" "150" "tall" "25" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%numHeavy%" "font" "FontRegular20" "textAlignment" "west" "mouseinputenabled" "0" "pin_to_sibling" "heavyweapons" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "numEngineer" { "ControlName" "CExLabel" "fieldName" "numEngineer" "xpos" "5" "ypos" "0" "zpos" "11" "wide" "150" "tall" "25" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%numEngineer%" "font" "FontRegular20" "textAlignment" "west" "mouseinputenabled" "0" "pin_to_sibling" "engineer" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "numMedic" { "ControlName" "CExLabel" "fieldName" "numMedic" "xpos" "5" "ypos" "0" "zpos" "11" "wide" "150" "tall" "25" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%numMedic%" "font" "FontRegular20" "textAlignment" "west" "mouseinputenabled" "0" "pin_to_sibling" "medic" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "numSniper" { "ControlName" "CExLabel" "fieldName" "numSniper" "xpos" "5" "ypos" "0" "zpos" "11" "wide" "150" "tall" "25" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%numSniper%" "font" "FontRegular20" "textAlignment" "west" "mouseinputenabled" "0" "pin_to_sibling" "sniper" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "numSpy" { "ControlName" "CExLabel" "fieldName" "numSpy" "xpos" "5" "ypos" "0" "zpos" "11" "wide" "150" "tall" "25" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%numSpy%" "font" "FontRegular20" "textAlignment" "west" "mouseinputenabled" "0" "pin_to_sibling" "spy" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MvMUpgradeImageScout" { "ControlName" "ImagePanel" "fieldName" "MvMUpgradeImageScout" "xpos" "-3" "ypos" "-3" "zpos" "11" "wide" "20" "tall" "20" "visible" "0" "enabled" "1" "image" "mvm/class_upgraded" "scaleImage" "1" "mouseinputenabled" "0" "pin_to_sibling" "scout" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MvMUpgradeImageSolider" { "ControlName" "ImagePanel" "fieldName" "MvMUpgradeImageSolider" "xpos" "-3" "ypos" "-3" "zpos" "11" "wide" "20" "tall" "20" "visible" "0" "enabled" "1" "image" "mvm/class_upgraded" "scaleImage" "1" "mouseinputenabled" "0" "pin_to_sibling" "soldier" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MvMUpgradeImagePyro" { "ControlName" "ImagePanel" "fieldName" "MvMUpgradeImagePyro" "xpos" "-3" "ypos" "-3" "zpos" "11" "wide" "20" "tall" "20" "visible" "0" "enabled" "1" "image" "mvm/class_upgraded" "scaleImage" "1" "mouseinputenabled" "0" "pin_to_sibling" "pyro" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MvMUpgradeImageDemoman" { "ControlName" "ImagePanel" "fieldName" "MvMUpgradeImageDemoman" "xpos" "-3" "ypos" "-3" "zpos" "11" "wide" "20" "tall" "20" "visible" "0" "enabled" "1" "image" "mvm/class_upgraded" "scaleImage" "1" "mouseinputenabled" "0" "pin_to_sibling" "demoman" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MvMUpgradeImageHeavy" { "ControlName" "ImagePanel" "fieldName" "MvMUpgradeImageHeavy" "xpos" "-3" "ypos" "-3" "zpos" "11" "wide" "20" "tall" "20" "visible" "0" "enabled" "1" "image" "mvm/class_upgraded" "scaleImage" "1" "mouseinputenabled" "0" "pin_to_sibling" "heavyweapons" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MvMUpgradeImageEngineer" { "ControlName" "ImagePanel" "fieldName" "MvMUpgradeImageEngineer" "xpos" "-3" "ypos" "-3" "zpos" "11" "wide" "20" "tall" "20" "visible" "0" "enabled" "1" "image" "mvm/class_upgraded" "scaleImage" "1" "mouseinputenabled" "0" "pin_to_sibling" "engineer" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MvMUpgradeImageMedic" { "ControlName" "ImagePanel" "fieldName" "MvMUpgradeImageMedic" "xpos" "-3" "ypos" "-3" "zpos" "11" "wide" "20" "tall" "20" "visible" "0" "enabled" "1" "image" "mvm/class_upgraded" "scaleImage" "1" "mouseinputenabled" "0" "pin_to_sibling" "medic" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MvMUpgradeImageSniper" { "ControlName" "ImagePanel" "fieldName" "MvMUpgradeImageSniper" "xpos" "-3" "ypos" "-3" "zpos" "11" "wide" "20" "tall" "20" "visible" "0" "enabled" "1" "image" "mvm/class_upgraded" "scaleImage" "1" "mouseinputenabled" "0" "pin_to_sibling" "sniper" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MvMUpgradeImageSpy" { "ControlName" "ImagePanel" "fieldName" "MvMUpgradeImageSpy" "xpos" "-3" "ypos" "-3" "zpos" "11" "wide" "20" "tall" "20" "visible" "0" "enabled" "1" "image" "mvm/class_upgraded" "scaleImage" "1" "mouseinputenabled" "0" "pin_to_sibling" "spy" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TFPlayerModel" { "ControlName" "CTFPlayerModelPanel" "fieldName" "TFPlayerModel" "xpos" "0" "ypos" "0" "zpos" "6" "wide" "700" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "render_texture" "0" "fov" "40" "allow_rot" "1" "paintbackground" "0" "paintbackgroundenabled" "1" "bgcolor_override" "TransparentBlack" "model" { "force_pos" "1" "angles_x" "0" "angles_y" "200" "angles_z" "0" "origin_x" "250" "origin_y" "25" "origin_z" "-50" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } } "ClassTipsPanel" { "ControlName" "CTFClassTipsPanel" "fieldName" "ClassTipsPanel" "xpos" "9999" } "ClassHighlightPanel" { "ControlName" "CExplanationPopup" "fieldName" "ClassHighlightPanel" "xpos" "9999" } } ================================================ FILE: resource/ui/classselection_sc.res ================================================ #base "classselection.res" ================================================ FILE: resource/ui/compstats.res ================================================ "resource/ui/compstats.res" { "ScrollableContainer" { "ControlName" "EditablePanel" "fieldName" "ScrollableContainer" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "260" "tall" "335" "visible" "1" "proportionaltoparent" "1" "RankImage" { "ControlName" "CTFLocalPlayerBadgePanel" "fieldName" "RankImage" "xpos" "4" "ypos" "-8" "zpos" "110" "wide" "o1" "tall" "60" "visible" "0" "enabled" "1" "proportionaltoparent" "1" "mouseinputenabled" "0" "matchgroup" "MatchGroup_Ladder_6v6" } "RankPanel" { "ControlName" "CPvPRankPanel" "fieldName" "RankPanel" "xpos" "0" "ypos" "-60" "zpos" "100" "wide" "330" "tall" "92" "visible" "1" "proportionaltoparent" "1" "mouseinputenabled" "0" "matchgroup" "MatchGroup_Ladder_6v6" "show_model" "0" "show_name" "0" "show_stats" "1" "BGBorder" { "visible" "0" } } "ShowLeaderboardsButton" { "ControlName" "CExButton" "fieldName" "ShowLeaderboardsButton" "xpos" "rs1-10" "ypos" "35" "zpos" "0" "wide" "p0.45" "tall" "20" "visible" "1" "proportionaltoparent" "1" "actionsignallevel" "2" "command" "show_leaderboards" "labeltext" "#TF_Competitive_ViewLeaderboards" "font" "FontBold12" "fgcolor_override" "TanLight" "textAlignment" "center" "defaultBgColor_override" "DarkerGrey" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ShowMatchHistoryButton" { "ControlName" "CExButton" "fieldName" "ShowMatchHistoryButton" "xpos" "10" "ypos" "35" "zpos" "0" "wide" "p0.45" "tall" "20" "visible" "1" "proportionaltoparent" "1" "actionsignallevel" "2" "command" "show_match_history" "labeltext" "#TF_Competitive_ViewMatches" "font" "FontBold12" "fgcolor_override" "TanLight" "textAlignment" "center" "defaultBgColor_override" "DarkerGrey" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PlaylistBGPanel" { "ControlName" "EditablePanel" "fieldName" "PlaylistBGPanel" "xpos" "cs-0.5" "ypos" "60" "zpos" "-1" "wide" "p0.95" "tall" "p0.98" "visible" "1" "PaintBackgroundType" "2" //"border" "MainMenuBGBorder" "proportionaltoparent" "1" "pinCorner" "2" "autoResize" "1" "PlayListDropShadow" { "ControlName" "EditablePanel" "fieldName" "PlayListDropShadow" "xpos" "cs-0.5" "ypos" "0" "zpos" "100" "wide" "p0.95" "tall" "p0.98" "visible" "1" "PaintBackgroundType" "2" "border" "InnerShadowBorder" "proportionaltoparent" "1" "mouseinputenabled" "0" } "MatchHistoryCategories" { "ControlName" "EditablePanel" "fieldName" "MatchHistoryCategories" "xpos" "cs-0.5" "ypos" "0" "zpos" "10" "wide" "p0.95" "tall" "20" "visible" "1" "proportionaltoparent" "1" "BGPanel" { "ControlName" "EditablePanel" "fieldName" "BGPanel" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "-100" "wide" "p1.2" "tall" "p1.3" "visible" "1" "proportionaltoparent" "1" "border" "MainMenuBGBorder" } "SortArrow" { "ControlName" "Label" "fieldName" "SortArrow" "xpos" "0" "ypos" "0" "wide" "20" "tall" "f0" "proportionaltoparent" "1" "visible" "1" "paintbackground" "0" "mouseinputenabled" "0" "labeltext" "6" "font" "MarlettSmall" "textAlignment" "west" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanDark" "selectedFgColor_override" "TanDark" } "ResultButton" { "ControlName" "CExButton" "fieldName" "ResultButton" "xpos" "0" "ypos" "0" "wide" "p0.18" "tall" "18" "proportionaltoparent" "1" "visible" "1" "labeltext" "#TF_Competitive_Result" "font" "HudFontSmallest" "textAlignment" "west" "textinsetx" "15" "fgcolor_override" "141 63 63 255" "paintbackground" "0" "border_default" "SortCategoryBorder" "defaultFgColor_override" "TanDark" "armedFgColor_override" "Orange" "selectedFgColor_override" "TanLight" "image_selectedcolor" "TanLight" "image_armedcolor" "Transparent" "image_drawcolor" "Transparent" "command" "sort0" "actionsignallevel" "4" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "DateButton" { "ControlName" "CExButton" "fieldName" "DateButton" "xpos" "p0.18" "ypos" "0" "wide" "p0.4" "tall" "18" "proportionaltoparent" "1" "visible" "1" "paintbackground" "0" "border_default" "SortCategoryBorder" "labeltext" "#TF_Competitive_Date" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "west" "textinsetx" "15" "defaultFgColor_override" "TanDark" "armedFgColor_override" "Orange" "selectedFgColor_override" "TanLight" "image_selectedcolor" "TanLight" "image_armedcolor" "Transparent" "image_drawcolor" "Transparent" "command" "sort1" "actionsignallevel" "4" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MapButton" { "ControlName" "CExButton" "fieldName" "MapButton" "xpos" "p0.58" "ypos" "0" "wide" "p0.29" "tall" "18" "proportionaltoparent" "1" "visible" "1" "paintbackground" "0" "border_default" "SortCategoryBorder" "labeltext" "#TF_Competitive_Map" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "west" "textinsetx" "15" "defaultFgColor_override" "TanDark" "armedFgColor_override" "Orange" "selectedFgColor_override" "TanLight" "image_selectedcolor" "TanLight" "image_armedcolor" "Transparent" "image_drawcolor" "Transparent" "command" "sort2" "actionsignallevel" "4" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "KDRButton" { "ControlName" "CExButton" "fieldName" "KDRButton" "xpos" "p0.87" "ypos" "0" "wide" "p0.12" "tall" "18" "proportionaltoparent" "1" "visible" "1" "paintbackground" "0" "labeltext" "#TF_Competitive_KDR" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "west" "defaultFgColor_override" "TanDark" "armedFgColor_override" "Orange" "selectedFgColor_override" "TanLight" "image_selectedcolor" "TanLight" "image_armedcolor" "Transparent" "image_drawcolor" "Transparent" "command" "sort3" "actionsignallevel" "4" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } "MatchHistoryContainer" { "ControlName" "CScrollableList" "fieldName" "MatchHistoryContainer" "xpos" "cs-0.5" "ypos" "20" "wide" "p0.95" "tall" "p0.78" "visible" "1" "proportionaltoparent" "1" "restrict_width" "0" "ScrollBar" { "ControlName" "ScrollBar" "FieldName" "ScrollBar" "xpos" "rs1-1" "ypos" "0" "tall" "f0" "wide" "5" // This gets slammed from client schme. GG. "zpos" "1000" "nobuttons" "1" "proportionaltoparent" "1" "Slider" { "fgcolor_override" "TanDark" } "UpButton" { "ControlName" "Button" "FieldName" "UpButton" "visible" "0" } "DownButton" { "ControlName" "Button" "FieldName" "DownButton" "visible" "0" } } } "Leaderboard" { "ControlName" "CLadderLobbyLeaderboard" "fieldName" "Leaderboard" "xpos" "cs-0.5" "ypos" "7" "wide" "p0.95" "tall" "p0.98" "visible" "0" "enabled" "1" "mouseinputenabled" "1" "scaleImage" "1" "entry_step" "23" "proportionaltoparent" "1" } } } } ================================================ FILE: resource/ui/controlpointcountdown.res ================================================ "resource/ui/controlpointcountdown.res" { "CapCountdownLabel" { "ControlName" "CExLabel" "fieldName" "CapCountdownLabel" "font" "FontBold12" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "labelText" "%capturetime%" "textAlignment" "center" "fgcolor" "NeutralWhite" "bgcolor" "NeutralWhite" } } ================================================ FILE: resource/ui/controlpointicon.res ================================================ "resource/ui/controlpointicon.res" { "ControlPointIcon" { "ControlName" "EditablePanel" "fieldName" "ControlPointIcon" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "26" "tall" "26" "visible" "1" "enabled" "1" } "Countdown" { "ControlName" "CControlPointCountdown" "fieldName" "Countdown" "xpos" "0" "ypos" "0" "zpos" "4" "wide" "26" "tall" "26" "visible" "1" "enabled" "1" } "CapPlayerImage" { "ControlName" "ImagePanel" "fieldName" "CapPlayerImage" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "8" "tall" "16" "visible" "0" "enabled" "1" "image" "capture_icon" "scaleImage" "1" } "CapNumPlayers" { "ControlName" "Label" "fieldName" "CapNumPlayers" "font" "FontRegular12" "xpos" "11" "ypos" "1" "zpos" "4" "wide" "16" "tall" "26" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#ControlPointIconCappers" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "OverlayImage" { "ControlName" "ImagePanel" "fieldName" "OverlayImage" "xpos" "16" "ypos" "1" "zpos" "4" "wide" "9" "tall" "9" "visible" "0" "enabled" "1" "image" "capture_icon" "scaleImage" "1" } "CPTimerLabel" { "ControlName" "CExLabel" "fieldName" "CPTimerLabel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "14" "tall" "26" "visible" "0" "enabled" "1" "labelText" "60" "textAlignment" "east" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontRegular12" } "CPTimerBG" { "ControlName" "Panel" "fieldName" "CPTimerBG" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "0" "tall" "0" "visible" "0" "enabled" "1" "image" "../sprites/obj_icons/icon_obj_timer" "scaleImage" "1" } } ================================================ FILE: resource/ui/controlpointprogressbar.res ================================================ "resource/ui/controlpointprogressbar.res" { "ControlPointProgressBar" { "ControlName" "EditablePanel" "fieldName" "ControlPointProgressBar" "xpos" "0" "ypos" "0" "zpos" "20" "wide" "100" "tall" "65" "visible" "0" "enabled" "1" } "ProgressBar" { "ControlName" "CircularProgressBar" "fieldName" "ProgressBar" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "Teardrop" { "ControlName" "CIconPanel" "fieldName" "Teardrop" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "TeardropSide" { "ControlName" "CIconPanel" "fieldName" "TeardropSide" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "ProgressText" { "ControlName" "Label" "fieldName" "ProgressText" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "Blocked" { "ControlName" "CIconPanel" "fieldName" "Blocked" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } } ================================================ FILE: resource/ui/cp_powerhouse_event_hud.res ================================================ #base "hudobjectiveplayerdestruction.res" "resource/ui/cp_powerhouse_event_hud.res" { "ObjectiveStatusRobotDestruction" { "enabled" "0" "visible" "0" } "PlayingTo" { "enabled" "0" "visible" "0" } "PlayingToBG" { "enabled" "0" "visible" "0" } "CarriedContainer" { "enabled" "0" "visible" "0" } "ScoreContainer" { "enabled" "0" "visible" "0" } "CountdownContainer" { "Background" { "xpos" "c0" "ypos" "c0" "wide" "88" "tall" "44" } "BackgroundColor" { "bgcolor_override" "0 0 0 210" } "CountdownImage" { "image" "../hud/powerhouse_event_hud_icon_locked" "xpos" "c14" "ypos" "c-15" "wide" "80" "tall" "40" } "CountdownLabelTime" { "xpos" "c36" "ypos" "c-6" "wide" "48" "tall" "24" "font" "HudFontMediumSmallBold" } "CountdownLabelTimeTimeShadow" { "xpos" "c-97" "ypos" "c-27" "wide" "48" "tall" "24" "font" "HudFontMediumSmallBold" } } } //contributed by aaron 'aar' pearson, aarmastah.xyz ================================================ FILE: resource/ui/craftingpanel.res ================================================ "resource/ui/craftingpanel.res" { "crafting_panel" { "ControlName" "Frame" "fieldName" "crafting_panel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "400" "zpos" "501" "visible" "1" "autoResize" "0" "pinCorner" "0" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "bgcolor_override" "DarkGrey" "infocus_bgcolor_override" "DarkGrey" "outoffocus_bgcolor_override" "DarkGrey" "item_ypos" "85" "output_item_ypos" "255" "item_crafting_offcenter_x" "0" "item_backpack_xdelta" "2" "item_backpack_ydelta" "4" "button_xpos_offcenter" "175" "button_ypos" "85" "button_ydelta" "80" "button_override_delete_xpos" "0" "modelpanels_kv" { "ControlName" "CItemModelPanel" "wide" "70" "tall" "45" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "model_ypos" "5" "model_tall" "35" "text_center" "1" "name_only" "1" "text_forcesize" "3" "noitem_use_fullpanel" "1" "inset_eq_x" "2" "inset_eq_y" "2" "MainContentsContainer" { "ControlName" "EditablePanel" "fieldName" "MainContentsContainer" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "visible" "1" "bgcolor_override" "Transparent" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } "namelabel" { "ControlName" "CExLabel" "fieldName" "namelabel" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "50" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%itemname%" "textAlignment" "center" "fgcolor" "TanLight" "wrap" "1" "centerwrap" "1" } } } "recipebuttons_kv" { "font" "FontRegular12" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "280" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "wrap" "0" "centerwrap" "0" "textAlignment" "west" "textinsetx" "0" "defaultFgColor_override" "DullWhite" "defaultBgColor_override" "Transparent" "armedFgColor_override" "TanLight" "armedBgColor_override" "Transparent" "depressedFgColor_override" "Orange" "depressedBgColor_override" "Transparent" } "filter_xoffset" "-290" "filter_ypos" "30" "filter_xdelta" "10" "filter_ydelta" "10" "recipefilterbuttons_kv" { "zpos" "2" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "textAlignment" "south-west" "Command" "" "Default" "0" "font" "MenuKeys" "scaleImage" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } "ClassLabel" { "ControlName" "CExLabel" "fieldName" "ClassLabel" "font" "FontBold14" "labelText" "#CraftStep1" "textAlignment" "north-west" "xpos" "c-290" "ypos" "10" "zpos" "1" "wide" "240" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "selectedrecipecontainer" { "ControlName" "EditablePanel" "fieldName" "selectedrecipecontainer" "xpos" "c0" "ypos" "0" "zpos" "5" "wide" "300" "tall" "350" "PaintBackgroundType" "2" "bgcolor_override" "200 187 161 0" "RecipeTitle" { "ControlName" "CExLabel" "fieldName" "RecipeTitle" "font" "FontBold16" "labelText" "%recipetitle%" "textAlignment" "west" "xpos" "0" "ypos" "10" "zpos" "1" "wide" "f0" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "wrap" "1" } "RecipeInputStringLabel" { "ControlName" "CExLabel" "fieldName" "RecipeInputStringLabel" "font" "FontRegular12" "labelText" "%recipeinputstring%" "textAlignment" "north-west" "xpos" "0" "ypos" "30" "zpos" "1" "wide" "280" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "DullWhite" "wrap" "1" } "InputLabel" { "ControlName" "CExLabel" "fieldName" "InputLabel" "font" "FontBold16" "labelText" "#Craft_Recipe_Inputs" "textAlignment" "north-west" "xpos" "0" "ypos" "65" "zpos" "1" "wide" "200" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } "OutputLabel" { "ControlName" "CExLabel" "fieldName" "OutputLabel" "font" "FontBold16" "labelText" "#Craft_Recipe_Outputs" "textAlignment" "north-west" "xpos" "0" "ypos" "235" "zpos" "1" "wide" "200" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } "CraftButton" { "ControlName" "CExButton" "fieldName" "CraftButton" "xpos" "0" "ypos" "320" "zpos" "20" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "tabPosition" "0" "labelText" "#CraftConfirm" "font" "FontBold20" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "craft" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "FreeAccountLabel" { "ControlName" "CExLabel" "fieldName" "FreeAccountLabel" "font" "HudFontSmallestBold" "labelText" "#Craft_PremiumRecipe" "textAlignment" "west" "xpos" "0" "ypos" "318" "zpos" "21" "wide" "200" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "Orange" } "UpgradeButton" { "ControlName" "CExButton" "fieldName" "UpgradeButton" "xpos" "200" "ypos" "318" "zpos" "20" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Trial_Upgrade" "font" "HudFontSmallBold" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "upgrade" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultBgColor_override" "102 122 42 255" "armedBgColor_override" "143 167 57 255" "depressedBgColor_override" "143 167 57 255" "selectedBgColor_override" "143 167 57 255" } } "recipecontainerscroller" { "ControlName" "EditablePanel" "fieldName" "recipecontainerscroller" "xpos" "c-290" "ypos" "70" "zpos" "5" "wide" "280" "tall" "280" "PaintBackgroundType" "2" "fgcolor_override" "DullWhite" "bgcolor_override" "200 187 161 0" "autohide_buttons" "1" } "recipecontainer" { "ControlName" "EditablePanel" "fieldName" "recipecontainer" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "280" "tall" "280" "PaintBackgroundType" "2" "bgcolor_override" "200 187 161 0" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "mousedragitempanel" { "ControlName" "CItemModelPanel" "fieldName" "mousedragitempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "54" "tall" "42" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "model_ypos" "5" "model_tall" "35" "text_ypos" "60" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" } } "TooltipPanel" { "ControlName" "EditablePanel" "fieldName" "TooltipPanel" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "140" "tall" "50" "visible" "0" "PaintBackgroundType" "2" "border" "PanelBorder" "bgcolor_override" "DarkerGrey" "TipLabel" { "ControlName" "CExLabel" "fieldName" "TipLabel" "font" "HudFontSmallest" "labelText" "%tiptext%" "textAlignment" "center" "xpos" "20" "ypos" "10" "zpos" "2" "wide" "100" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "wrap" "1" "centerwrap" "1" } } "ShowExplanationsButton" { "ControlName" "CExButton" "fieldName" "ShowExplanationsButton" "xpos" "9999" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } } ================================================ FILE: resource/ui/craftingstatusdialog.res ================================================ "resource/ui/craftingstatusdialog.res" { "CraftingStatusDialog" { "fieldName" "CraftingStatusDialog" "visible" "1" "enabled" "1" "xpos" "c-100" "ypos" "200" "wide" "200" "tall" "110" "settitlebarvisible" "0" "border" "PanelBorder" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" } "CenterPositioner" { "ControlName" "Label" "fieldName" "CenterPositioner" "font" "HudFontSmallBold" "xpos" "0" "ypos" "10" "zpos" "0" "wide" "200" "tall" "0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "centerwrap" "0" "labelText" "" "textAlignment" "center" "bgcolor_override" "Transparent" } "RecipeItemModelPanel" { "ControlName" "CItemModelPanel" "fieldName" "RecipeItemModelPanel" "visible" "0" } "TitleLabel" { "ControlName" "Label" "fieldName" "TitleLabel" "font" "FontBold14" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "centerwrap" "1" "labelText" "%updatetext%" "textAlignment" "center" "fgcolor_override" "LightRed" "bgcolor_override" "Transparent" "auto_wide_tocontents" "1" "pin_to_sibling" "CenterPositioner" "pin_corner_to_sibling" "4" "pin_to_sibling_corner" "4" } "EllipsesLabel" { "ControlName" "Label" "fieldName" "EllipsesLabel" "font" "FontBold14" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%ellipses%" "textAlignment" "west" "fgcolor_override" "LightRed" "bgcolor_override" "Transparent" "pin_to_sibling" "TitleLabel" "pin_corner_to_sibling" "0" "pin_to_sibling_corner" "1" } "CloseButton" { "ControlName" "CExButton" "fieldName" "CloseButton" "xpos" "50" "ypos" "75" "zpos" "1" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_OK" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "close" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization.res ================================================ //============================================================== // HOME PAGE //============================================================== #base "hud_customization_home.res" //============================================================== // QUICK SETTINGS //============================================================== #base "hud_customization_quick_settings.res" //============================================================== // COLORS //============================================================== #base "hud_customization_colors.res" //============================================================== // FONTS - REMOVE, only need TF2 or Code Pro //============================================================== #base "hud_customization_fonts.res" //============================================================== // HEALTH - AMMO //============================================================== #base "hud_customization_health_ammo.res" //============================================================== // DAMAGE //============================================================== #base "hud_customization_damage.res" //============================================================== // HUD CROSSHAIRS //============================================================== #base "hud_customization_crosshairs.res" //============================================================== // MISCELLANEOUS //============================================================== #base "hud_customization_miscellaneous.res" //============================================================== // DEV //============================================================== #base "hud_customization_dev.res" //============================================================== // MENU FRAME //============================================================== #base "hud_customization_frame.res" ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_colors.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_colors.res" { "SafeMode" { "Customizations_Panel" { "HUD_Colors_Selection" { "controlName" "CScrollableList" "fieldName" "HUD_Colors_Selection" "xpos" "cs-0.5+5" "ypos" "cs-0.5+5" "zpos" "0" "wide" "f5" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "Scrollbar" { "xpos" "rs1+1" "ypos" "0" "wide" "6" "tall" "f0" "zpos" "1000" "proportionalToParent" "1" "Slider" { "PaintBackgroundType" "0" "FGColor_Override" "Gray" } "nobuttons" "1" } "Title_Icon" { "controlName" "CExLabel" "fieldName" "Title_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "I" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Title" { "controlName" "CExLabel" "fieldName" "Title" "xpos" "5" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "HUD COLORS" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Title_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Reload_Icon" { "controlName" "CExLabel" "fieldName" "Reload_Icon" "xpos" "-150" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "." "font" "MediumSmallIcons" "textAlignment" "center" "FGColor" "LightRed" "pin_to_sibling" "Title" "pin_corner_to_sibling" "PIN_CENTER_LEFT" "pin_to_sibling_corner" "PIN_CENTER_LEFT" } "Separator_1" { "controlName" "EditablePanel" "fieldName" "Separator_1" "xpos" "0" "ypos" "3" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Title_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Element_Color_Picker" { "controlName" "EditablePanel" "fieldName" "Element_Color_Picker" "xpos" "0" "ypos" "6" "zpos" "20" "wide" "f7" "tall" "215" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Separator_1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Color_Title" { "controlName" "CExLabel" "fieldName" "Color_Title" "xpos" "3" "ypos" "2" "zpos" "0" "wide" "f35" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Pick a color for each element" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_1" { "controlName" "EditablePanel" "fieldName" "Separator_1" "xpos" "1" "ypos" "17" "zpos" "0" "wide" "f40" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } //======================================================================================== // TEAM RED //======================================================================================== "Team_Red" { "controlName" "EditablePanel" "fieldName" "Team_Red" "xpos" "2" "ypos" "22" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackgroundType" "2" "BGColor_Override" "MenuBlack" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "RED" "font" "HudFontSmallishBold" "textAlignment" "center" "FGColor" "RedTeam" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Team RED" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_red_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // TEAM BLU //======================================================================================== "Team_Blu" { "controlName" "EditablePanel" "fieldName" "Team_Blu" "xpos" "3" "ypos" "0" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "Team_Red" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "BLU" "font" "HudFontSmallishBold" "textAlignment" "center" "FGColor" "BlueTeam" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Team BLU" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_team_blu_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // NEUTRAL COLOR //======================================================================================== "Neutral_Color" { "controlName" "EditablePanel" "fieldName" "Neutral_Color" "xpos" "0" "ypos" "3" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "Team_Red" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontSmallishBold" "textAlignment" "center" "FGColor" "TanLight" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Neutral Color" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_neutral_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // HEALTH BUFFED //======================================================================================== "Health_Buff" { "controlName" "EditablePanel" "fieldName" "Health_Buff" "xpos" "3" "ypos" "0" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "Neutral_Color" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontSmallishBold" "textAlignment" "center" "FGColor" "Overheal" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Health Buffed" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_buff_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // HEALTH LOW //======================================================================================== "Health_Hurt" { "controlName" "EditablePanel" "fieldName" "Health_Hurt" "xpos" "3" "ypos" "0" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "Health_Buff" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontSmallishBold" "textAlignment" "center" "FGColor" "LowHealth" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Health Low" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_hurt_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // AMMO LOW //======================================================================================== "Ammo_Low" { "controlName" "EditablePanel" "fieldName" "Ammo_Low" "xpos" "0" "ypos" "3" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "Neutral_Color" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontSmallishBold" "textAlignment" "center" "FGColor" "LowAmmo" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Ammo Low" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_ammo_low_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // UBERCHARGE //======================================================================================== "Ubercharge" { "controlName" "EditablePanel" "fieldName" "Ubercharge" "xpos" "3" "ypos" "0" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "Ammo_Low" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontSmallishBold" "textAlignment" "center" "FGColor" "UberCharge" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Ubercharge" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_uber_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // UBERCHARGE PULSE //======================================================================================== "Ubercharge_Full" { "controlName" "EditablePanel" "fieldName" "Ubercharge_Full" "xpos" "3" "ypos" "0" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "Ubercharge" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontSmallishBold" "textAlignment" "center" "FGColor" "UberChargePulse" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Ubercharge Pulse" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_fulluber_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // HEALING DONE //======================================================================================== "Healing_Done" { "controlName" "EditablePanel" "fieldName" "Healing_Done" "xpos" "0" "ypos" "3" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "Ammo_Low" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontSmallishBold" "textAlignment" "center" "FGColor" "TargetHealth" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Healing Done" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_healed_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // LAST DAMAGE //======================================================================================== "Last_Damage_Done" { "controlName" "EditablePanel" "fieldName" "Last_Damage_Done" "xpos" "3" "ypos" "0" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "Healing_Done" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontSmallishBold" "textAlignment" "center" "FGColor" "TargetDamage" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Last Damage Done" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_damage_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // HUD CROSSHAIR //======================================================================================== "HUD_Crosshair" { "controlName" "EditablePanel" "fieldName" "HUD_Crosshair" "xpos" "0" "ypos" "3" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "Healing_Done" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "<" "font" "Size_25" "textAlignment" "center" "FGColor" "Crosshair" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "HUD Crosshairs" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //======================================================================================== // HUD CROSSHAIR PULSE //======================================================================================== "HUD_Crosshair_Pulse" { "controlName" "EditablePanel" "fieldName" "HUD_Crosshair_Pulse" "xpos" "3" "ypos" "0" "zpos" "12" "wide" "144" "tall" "36" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "paintBackgroundType" "0" "BGColor_Override" "MenuBlack" "pin_to_sibling" "HUD_Crosshair" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Example_Text" { "controlName" "CExLabel" "fieldName" "Example_Text" "xpos" "2" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "f4" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "<" "font" "Size_25" "textAlignment" "center" "FGColor" "CrosshairDamage" } "Element_Name" { "controlName" "CExLabel" "fieldName" "Element_Name" "xpos" "36" "ypos" "rs1" "zpos" "0" "wide" "f38" "tall" "13" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "HUD Crosshairs Flash" "font" "HudFontSmallest" "textAlignment" "center" "FGColor" "Gray" } "White_Preset" { "controlName" "CExButton" "fieldName" "White_Preset" "xpos" "36" "ypos" "2" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_white" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuWhite" "ArmedBGColor_Override" "MenuWhite" "DepressedBGColor_Override" "MenuWhite" } "Tan_Preset" { "controlName" "CExButton" "fieldName" "Tan_Preset" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_tan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTan" "ArmedBGColor_Override" "MenuTan" "DepressedBGColor_Override" "MenuTan" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Grey_Preset" { "controlName" "CExButton" "fieldName" "Grey_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_grey" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGrey" "ArmedBGColor_Override" "MenuGrey" "DepressedBGColor_Override" "MenuGrey" "pin_to_sibling" "White_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Black_Preset" { "controlName" "CExButton" "fieldName" "Black_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_black" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlack" "ArmedBGColor_Override" "MenuBlack" "DepressedBGColor_Override" "MenuBlack" "pin_to_sibling" "Tan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Maroon_Preset" { "controlName" "CExButton" "fieldName" "Maroon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_maroon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMaroon" "ArmedBGColor_Override" "MenuMaroon" "DepressedBGColor_Override" "MenuMaroon" "pin_to_sibling" "Grey_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Red_Preset" { "controlName" "CExButton" "fieldName" "Red_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_red" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuRed" "ArmedBGColor_Override" "MenuRed" "DepressedBGColor_Override" "MenuRed" "pin_to_sibling" "Black_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Salmon_Preset" { "controlName" "CExButton" "fieldName" "Salmon_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_salmon" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuSalmon" "ArmedBGColor_Override" "MenuSalmon" "DepressedBGColor_Override" "MenuSalmon" "pin_to_sibling" "Maroon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Orange_Preset" { "controlName" "CExButton" "fieldName" "Orange_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_orange" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOrange" "ArmedBGColor_Override" "MenuOrange" "DepressedBGColor_Override" "MenuOrange" "pin_to_sibling" "Red_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Yellow_Preset" { "controlName" "CExButton" "fieldName" "Yellow_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_yellow" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuYellow" "ArmedBGColor_Override" "MenuYellow" "DepressedBGColor_Override" "MenuYellow" "pin_to_sibling" "Salmon_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Olive_Preset" { "controlName" "CExButton" "fieldName" "Olive_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_olive" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuOlive" "ArmedBGColor_Override" "MenuOlive" "DepressedBGColor_Override" "MenuOlive" "pin_to_sibling" "Orange_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Green_Preset" { "controlName" "CExButton" "fieldName" "Green_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_green" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuGreen" "ArmedBGColor_Override" "MenuGreen" "DepressedBGColor_Override" "MenuGreen" "pin_to_sibling" "Yellow_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Forest_Preset" { "controlName" "CExButton" "fieldName" "Forest_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_forest" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuForest" "ArmedBGColor_Override" "MenuForest" "DepressedBGColor_Override" "MenuForest" "pin_to_sibling" "Olive_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Teal_Preset" { "controlName" "CExButton" "fieldName" "Teal_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_teal" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuTeal" "ArmedBGColor_Override" "MenuTeal" "DepressedBGColor_Override" "MenuTeal" "pin_to_sibling" "Green_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Cyan_Preset" { "controlName" "CExButton" "fieldName" "Cyan_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_cyan" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuCyan" "ArmedBGColor_Override" "MenuCyan" "DepressedBGColor_Override" "MenuCyan" "pin_to_sibling" "Forest_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Blue_Preset" { "controlName" "CExButton" "fieldName" "Blue_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_blue" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuBlue" "ArmedBGColor_Override" "MenuBlue" "DepressedBGColor_Override" "MenuBlue" "pin_to_sibling" "Teal_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Navy_Preset" { "controlName" "CExButton" "fieldName" "Navy_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_navy" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuNavy" "ArmedBGColor_Override" "MenuNavy" "DepressedBGColor_Override" "MenuNavy" "pin_to_sibling" "Cyan_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Purple_Preset" { "controlName" "CExButton" "fieldName" "Purple_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_purple" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPurple" "ArmedBGColor_Override" "MenuPurple" "DepressedBGColor_Override" "MenuPurple" "pin_to_sibling" "Blue_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Violet_Preset" { "controlName" "CExButton" "fieldName" "Violet_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_violet" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuViolet" "ArmedBGColor_Override" "MenuViolet" "DepressedBGColor_Override" "MenuViolet" "pin_to_sibling" "Navy_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Pink_Preset" { "controlName" "CExButton" "fieldName" "Pink_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_pink" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuPink" "ArmedBGColor_Override" "MenuPink" "DepressedBGColor_Override" "MenuPink" "pin_to_sibling" "Purple_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Magenta_Preset" { "controlName" "CExButton" "fieldName" "Magenta_Preset" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_color_xhair_flash_magenta" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "MenuMagenta" "ArmedBGColor_Override" "MenuMagenta" "DepressedBGColor_Override" "MenuMagenta" "pin_to_sibling" "Violet_Preset" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } } } } } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_crosshairs.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_crosshairs.res" { "SafeMode" { "Customizations_Panel" { "HUD_Crosshairs_Selection" { "controlName" "CScrollableList" "fieldName" "HUD_Crosshairs_Selection" "xpos" "cs-0.5+5" "ypos" "cs-0.5+5" "zpos" "0" "wide" "f5" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "paintBackgroundType" "0" "BGColor_Override" "Black" "Scrollbar" { "xpos" "rs1+1" "ypos" "0" "wide" "6" "tall" "f0" "zpos" "1000" "proportionalToParent" "1" "Slider" { "PaintBackgroundType" "0" "FGColor_Override" "Gray" } "nobuttons" "1" } "Title_Icon" { "controlName" "CExLabel" "fieldName" "Title_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "8" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Title" { "controlName" "CExLabel" "fieldName" "Title" "xpos" "30" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "HUD CROSSHAIRS" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_1" { "controlName" "EditablePanel" "fieldName" "Separator_1" "xpos" "0" "ypos" "28" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } //========================================================================================================== // VISIBILITY //========================================================================================================== "Crosshair_Visibility" { "controlName" "EditablePanel" "fieldName" "Crosshair_Visibility" "xpos" "4" "ypos" "33" "zpos" "20" "wide" "200" "tall" "80" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Visibility_Label" { "controlName" "CExLabel" "fieldName" "Visibility_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Visibility" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f40" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Visibility_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "HUD_Crosshair_ON" { "controlName" "EditablePanel" "fieldName" "HUD_Crosshair_ON" "xpos" "-2" "ypos" "5" "zpos" "1" "wide" "68" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Separator" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Xhair_Icon" { "controlName" "CExLabel" "fieldName" "Xhair_Icon" "xpos" "cs-0.5" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "Size_30" "labelText" "<" "textAlignment" "center" "FGColor" "White" } "XHair_Label" { "controlName" "CExLabel" "fieldName" "XHair_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Enabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "XHair_Button" { "controlName" "CExButton" "fieldName" "XHair_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_xhair_visible" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } "HUD_Crosshair_OFF" { "controlName" "EditablePanel" "fieldName" "HUD_Crosshair_OFF" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "68" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "HUD_Crosshair_ON" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Xhair_Icon" { "controlName" "CExLabel" "fieldName" "Xhair_Icon" "xpos" "cs-0.5" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "Size_30" "labelText" "<" "textAlignment" "center" "FGColor" "White" } "Xhair_Disabled" { "controlName" "CExLabel" "fieldName" "Xhair_Disabled" "xpos" "cs-0.5" "ypos" "1" "zpos" "3" "wide" "64" "tall" "36" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "LargeIcons" "labelText" "(" "textAlignment" "center" "FGColor" "LightRed" } "Xhair_Label" { "controlName" "CExLabel" "fieldName" "Xhair_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Disabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Xhair_Button" { "controlName" "CExButton" "fieldName" "Xhair_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_xhair_invisible" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } } //========================================================================================================== // FLASH ON HIT //========================================================================================================== "Crosshair_Pulse" { "controlName" "EditablePanel" "fieldName" "Crosshair_Pulse" "xpos" "180" "ypos" "33" "zpos" "20" "wide" "200" "tall" "80" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Pulse_Label" { "controlName" "CExLabel" "fieldName" "Pulse_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Flash On Hit" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f40" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Pulse_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Crosshair_Flash_ON" { "controlName" "EditablePanel" "fieldName" "Crosshair_Flash_ON" "xpos" "-2" "ypos" "5" "zpos" "1" "wide" "68" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Separator" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Flash_Icon" { "controlName" "CExLabel" "fieldName" "Flash_Icon" "xpos" "cs-0.5" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "Size_30" "labelText" "<" "textAlignment" "center" "FGColor" "CrosshairDamage" } "Flash_Label" { "controlName" "CExLabel" "fieldName" "Flash_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Enabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Flash_Button" { "controlName" "CExButton" "fieldName" "Flash_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_xhair_animation_on" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } "Crosshair_Flash_OFF" { "controlName" "EditablePanel" "fieldName" "Crosshair_Flash_OFF" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "68" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Crosshair_Flash_ON" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Xhair_Icon" { "controlName" "CExLabel" "fieldName" "Xhair_Icon" "xpos" "cs-0.5" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "Size_30" "labelText" "<" "textAlignment" "center" "FGColor" "White" } "Flash_Label" { "controlName" "CExLabel" "fieldName" "Flash_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Disabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Flash_Button" { "controlName" "CExButton" "fieldName" "Flash_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_xhair_animation_clear" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } } //========================================================================================================== // STYLE //========================================================================================================== "Crosshair_Style" { "controlName" "EditablePanel" "fieldName" "Crosshair_Style" "xpos" "4" "ypos" "112" "zpos" "20" "wide" "f0" "tall" "105" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Style_Label" { "controlName" "CExLabel" "fieldName" "Style_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Style" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f40" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Style_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Crosshair_1" { "controlName" "CExButton" "fieldName" "Crosshair_1" "xpos" "0" "ypos" "20" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "!" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_1" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" } "Crosshair_2" { "controlName" "CExButton" "fieldName" "Crosshair_2" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "#" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_2" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_3" { "controlName" "CExButton" "fieldName" "Crosshair_3" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "$" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_3" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_4" { "controlName" "CExButton" "fieldName" "Crosshair_4" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "%" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_4" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_3" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_5" { "controlName" "CExButton" "fieldName" "Crosshair_5" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "'" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_5" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_4" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_6" { "controlName" "CExButton" "fieldName" "Crosshair_6" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "(" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_6" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_5" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_7" { "controlName" "CExButton" "fieldName" "Crosshair_7" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" ")" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_7" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_6" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_8" { "controlName" "CExButton" "fieldName" "Crosshair_8" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "*" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_8" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_7" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_9" { "controlName" "CExButton" "fieldName" "Crosshair_9" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "+" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_9" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_8" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_10" { "controlName" "CExButton" "fieldName" "Crosshair_10" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "," "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_10" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_9" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_11" { "controlName" "CExButton" "fieldName" "Crosshair_11" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "-" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_11" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_10" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_12" { "controlName" "CExButton" "fieldName" "Crosshair_12" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "." "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_12" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_11" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_13" { "controlName" "CExButton" "fieldName" "Crosshair_13" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "/" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_13" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_12" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_14" { "controlName" "CExButton" "fieldName" "Crosshair_14" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "0" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_14" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_13" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_15" { "controlName" "CExButton" "fieldName" "Crosshair_15" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "1" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_15" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_14" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_16" { "controlName" "CExButton" "fieldName" "Crosshair_16" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "2" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_16" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_15" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_17" { "controlName" "CExButton" "fieldName" "Crosshair_17" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "3" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_17" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_16" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_18" { "controlName" "CExButton" "fieldName" "Crosshair_18" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "4" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_18" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_17" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_19" { "controlName" "CExButton" "fieldName" "Crosshair_19" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "5" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_19" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_18" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_20" { "controlName" "CExButton" "fieldName" "Crosshair_20" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "6" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_20" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_19" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_21" { "controlName" "CExButton" "fieldName" "Crosshair_21" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "7" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_21" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_20" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_22" { "controlName" "CExButton" "fieldName" "Crosshair_22" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "8" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_22" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_21" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_23" { "controlName" "CExButton" "fieldName" "Crosshair_23" "xpos" "0" "ypos" "1" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "9" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_23" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Crosshair_24" { "controlName" "CExButton" "fieldName" "Crosshair_24" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" ":" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_24" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_23" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_25" { "controlName" "CExButton" "fieldName" "Crosshair_25" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_25" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_24" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_26" { "controlName" "CExButton" "fieldName" "Crosshair_26" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "=" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_26" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_25" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_27" { "controlName" "CExButton" "fieldName" "Crosshair_27" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" ">" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_27" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_26" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_28" { "controlName" "CExButton" "fieldName" "Crosshair_28" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "?" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_28" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_27" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_29" { "controlName" "CExButton" "fieldName" "Crosshair_29" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "@" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_29" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_28" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_30" { "controlName" "CExButton" "fieldName" "Crosshair_30" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "A" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_30" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_29" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_31" { "controlName" "CExButton" "fieldName" "Crosshair_31" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "B" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_31" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_30" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_32" { "controlName" "CExButton" "fieldName" "Crosshair_32" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "C" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_32" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_31" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_33" { "controlName" "CExButton" "fieldName" "Crosshair_33" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "D" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_33" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_32" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_34" { "controlName" "CExButton" "fieldName" "Crosshair_34" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "E" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_34" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_33" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_35" { "controlName" "CExButton" "fieldName" "Crosshair_35" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "F" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_35" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_34" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_36" { "controlName" "CExButton" "fieldName" "Crosshair_36" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "G" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_36" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_35" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_37" { "controlName" "CExButton" "fieldName" "Crosshair_37" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "H" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_37" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_36" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_38" { "controlName" "CExButton" "fieldName" "Crosshair_38" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "I" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_38" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_37" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_39" { "controlName" "CExButton" "fieldName" "Crosshair_39" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "J" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_39" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_38" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_40" { "controlName" "CExButton" "fieldName" "Crosshair_40" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "K" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_40" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_39" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_41" { "controlName" "CExButton" "fieldName" "Crosshair_41" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "L" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_41" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_40" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_42" { "controlName" "CExButton" "fieldName" "Crosshair_42" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "M" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_42" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_41" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_43" { "controlName" "CExButton" "fieldName" "Crosshair_43" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "N" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_43" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_42" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_44" { "controlName" "CExButton" "fieldName" "Crosshair_44" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "O" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_44" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_43" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_45" { "controlName" "CExButton" "fieldName" "Crosshair_45" "xpos" "0" "ypos" "1" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "P" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_45" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_23" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Crosshair_46" { "controlName" "CExButton" "fieldName" "Crosshair_46" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "Q" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_46" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_45" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_47" { "controlName" "CExButton" "fieldName" "Crosshair_47" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "R" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_47" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_46" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_48" { "controlName" "CExButton" "fieldName" "Crosshair_48" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "S" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_48" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_47" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_49" { "controlName" "CExButton" "fieldName" "Crosshair_49" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "T" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_49" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_48" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_50" { "controlName" "CExButton" "fieldName" "Crosshair_50" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "U" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_50" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_49" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_51" { "controlName" "CExButton" "fieldName" "Crosshair_51" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "V" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_51" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_50" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_52" { "controlName" "CExButton" "fieldName" "Crosshair_52" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "W" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_52" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_51" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_53" { "controlName" "CExButton" "fieldName" "Crosshair_53" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "X" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_53" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_52" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_54" { "controlName" "CExButton" "fieldName" "Crosshair_54" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "Y" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_54" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_53" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_55" { "controlName" "CExButton" "fieldName" "Crosshair_55" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "Z" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_55" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_54" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_56" { "controlName" "CExButton" "fieldName" "Crosshair_56" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "[" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_56" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_55" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_57" { "controlName" "CExButton" "fieldName" "Crosshair_57" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "]" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_57" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_56" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_58" { "controlName" "CExButton" "fieldName" "Crosshair_58" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "^" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_58" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_57" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_59" { "controlName" "CExButton" "fieldName" "Crosshair_59" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "_" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_59" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_58" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_60" { "controlName" "CExButton" "fieldName" "Crosshair_60" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "`" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_60" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_59" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_61" { "controlName" "CExButton" "fieldName" "Crosshair_61" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "a" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_61" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_60" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_62" { "controlName" "CExButton" "fieldName" "Crosshair_62" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "b" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_62" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_61" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_63" { "controlName" "CExButton" "fieldName" "Crosshair_63" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "c" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_63" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_62" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_64" { "controlName" "CExButton" "fieldName" "Crosshair_64" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "d" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_64" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_63" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_65" { "controlName" "CExButton" "fieldName" "Crosshair_65" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "e" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_65" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_64" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_66" { "controlName" "CExButton" "fieldName" "Crosshair_66" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "f" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_66" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_65" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_67" { "controlName" "CExButton" "fieldName" "Crosshair_67" "xpos" "0" "ypos" "1" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "g" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_67" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_45" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Crosshair_68" { "controlName" "CExButton" "fieldName" "Crosshair_68" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "h" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_68" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_67" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_69" { "controlName" "CExButton" "fieldName" "Crosshair_69" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "i" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_69" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_68" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_70" { "controlName" "CExButton" "fieldName" "Crosshair_70" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "j" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_70" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_69" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_71" { "controlName" "CExButton" "fieldName" "Crosshair_71" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "k" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_71" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_70" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_72" { "controlName" "CExButton" "fieldName" "Crosshair_72" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "l" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_72" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_71" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_73" { "controlName" "CExButton" "fieldName" "Crosshair_73" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "m" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_73" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_72" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_74" { "controlName" "CExButton" "fieldName" "Crosshair_74" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "n" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_74" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_73" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_75" { "controlName" "CExButton" "fieldName" "Crosshair_75" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "o" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_75" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_74" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_76" { "controlName" "CExButton" "fieldName" "Crosshair_76" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "p" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_76" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_75" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_77" { "controlName" "CExButton" "fieldName" "Crosshair_77" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "q" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_77" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_76" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_78" { "controlName" "CExButton" "fieldName" "Crosshair_78" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "r" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_78" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_77" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_79" { "controlName" "CExButton" "fieldName" "Crosshair_79" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "s" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_79" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_78" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_80" { "controlName" "CExButton" "fieldName" "Crosshair_80" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "t" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_80" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_79" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_81" { "controlName" "CExButton" "fieldName" "Crosshair_81" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "u" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_81" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_80" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_82" { "controlName" "CExButton" "fieldName" "Crosshair_82" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "v" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_82" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_81" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_83" { "controlName" "CExButton" "fieldName" "Crosshair_83" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "w" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_83" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_82" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_84" { "controlName" "CExButton" "fieldName" "Crosshair_84" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "x" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_84" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_83" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_85" { "controlName" "CExButton" "fieldName" "Crosshair_85" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "y" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_85" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_84" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_86" { "controlName" "CExButton" "fieldName" "Crosshair_86" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "z" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_86" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_85" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_87" { "controlName" "CExButton" "fieldName" "Crosshair_87" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "|" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_87" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_86" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_88" { "controlName" "CExButton" "fieldName" "Crosshair_88" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "~" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_style_88" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_87" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //========================================================================================================== // SIZE //========================================================================================================== "Crosshair_Size" { "controlName" "EditablePanel" "fieldName" "Crosshair_Size" "xpos" "4" "ypos" "222" "zpos" "20" "wide" "f0" "tall" "60" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Size_Label" { "controlName" "CExLabel" "fieldName" "Size_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Size" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f40" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Size_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Crosshair_Size_10" { "controlName" "CExButton" "fieldName" "Crosshair_Size_10" "xpos" "0" "ypos" "20" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_10" "textAlignment" "center" "command" "engine hud_xhair_size_10" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" } "Crosshair_Size_12" { "controlName" "CExButton" "fieldName" "Crosshair_Size_12" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_12" "textAlignment" "center" "command" "engine hud_xhair_size_12" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_Size_10" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_Size_14" { "controlName" "CExButton" "fieldName" "Crosshair_Size_14" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_14" "textAlignment" "center" "command" "engine hud_xhair_size_14" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_Size_12" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_Size_16" { "controlName" "CExButton" "fieldName" "Crosshair_Size_16" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_16" "textAlignment" "center" "command" "engine hud_xhair_size_16" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_Size_14" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_Size_18" { "controlName" "CExButton" "fieldName" "Crosshair_Size_18" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_18" "textAlignment" "center" "command" "engine hud_xhair_size_18" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_Size_16" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_Size_20" { "controlName" "CExButton" "fieldName" "Crosshair_Size_20" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_20" "textAlignment" "center" "command" "engine hud_xhair_size_20" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_Size_18" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_Size_22" { "controlName" "CExButton" "fieldName" "Crosshair_Size_22" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_22" "textAlignment" "center" "command" "engine hud_xhair_size_22" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_Size_20" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_Size_24" { "controlName" "CExButton" "fieldName" "Crosshair_Size_24" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_24" "textAlignment" "center" "command" "engine hud_xhair_size_24" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_Size_22" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_Size_26" { "controlName" "CExButton" "fieldName" "Crosshair_Size_26" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_26" "textAlignment" "center" "command" "engine hud_xhair_size_26" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_Size_24" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_Size_28" { "controlName" "CExButton" "fieldName" "Crosshair_Size_28" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_28" "textAlignment" "center" "command" "engine hud_xhair_size_28" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_Size_26" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Crosshair_Size_30" { "controlName" "CExButton" "fieldName" "Crosshair_Size_30" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "<" "font" "Size_30" "textAlignment" "center" "command" "engine hud_xhair_size_30" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultFGColor_Override" "White" "ArmedFGColor_Override" "White" "DepressedFGColor_Override" "White" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Crosshair_Size_28" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //========================================================================================================== // TF2 CROSSHAIR //========================================================================================================== "TF2_Cross_Icon" { "controlName" "CExLabel" "fieldName" "TF2_Cross_Icon" "xpos" "4" "ypos" "287" "zpos" "0" "wide" "20" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "!" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "TF2_Crosshair" { "controlName" "CExLabel" "fieldName" "TF2_Crosshair" "xpos" "30" "ypos" "285" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Default TF2 Crosshair" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_3" { "controlName" "EditablePanel" "fieldName" "Separator_3" "xpos" "3" "ypos" "314" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } "TF2_Cross_Visibility" { "controlName" "EditablePanel" "fieldName" "TF2_Cross_Visibility" "xpos" "4" "ypos" "320" "zpos" "20" "wide" "115" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Visibility_Label" { "controlName" "CExLabel" "fieldName" "Visibility_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Visibility" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f0" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Visibility_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Toggle_Crosshair" { "controlName" "EditablePanel" "fieldName" "Toggle_Crosshair" "xpos" "0" "ypos" "4" "zpos" "20" "wide" "100" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Separator" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle crosshair" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Show Crosshair" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "wrap" "1" "cvar_name" "crosshair" "mouseinputenabled" "0" } } } "TF2_Cross_Colors" { "controlName" "EditablePanel" "fieldName" "TF2_Cross_Colors" "xpos" "130" "ypos" "320" "zpos" "20" "wide" "300" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Colors_Label" { "controlName" "CExLabel" "fieldName" "Colors_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Color" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f0" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Colors_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "TF2_Crosshair_Color_Red" { "controlName" "EditablePanel" "fieldName" "TF2_Crosshair_Color_Red" "xpos" "0" "ypos" "22" "zpos" "20" "wide" "95" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "PaintBackgroundType" "0" "BGColor_override" "Black" "Setting_Slider" { "controlName" "CCvarSlider" "fieldName" "Setting_Slider" "xpos" "rs1" "ypos" "cs-0.5" "zpos" "2" "wide" "f20" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "minvalue" "0" "maxvalue" "255" "cvar_name" "cl_crosshair_red" } "Setting_Color" { "controlName" "EditablePanel" "fieldName" "Setting_Color" "xpos" "0" "ypos" "2" "zpos" "1" "wide" "16" "tall" "16" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "255 0 0 255" } } "TF2_Crosshair_Color_Green" { "controlName" "EditablePanel" "fieldName" "TF2_Crosshair_Color_Green" "xpos" "4" "ypos" "0" "zpos" "20" "wide" "95" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "PaintBackgroundType" "0" "BGColor_override" "Black" "pin_to_sibling" "TF2_Crosshair_Color_Red" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Setting_Slider" { "controlName" "CCvarSlider" "fieldName" "Setting_Slider" "xpos" "rs1" "ypos" "cs-0.5" "zpos" "2" "wide" "f20" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "minvalue" "0" "maxvalue" "255" "cvar_name" "cl_crosshair_green" } "Setting_Color" { "controlName" "EditablePanel" "fieldName" "Setting_Color" "xpos" "0" "ypos" "2" "zpos" "1" "wide" "16" "tall" "16" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "0 255 0 255" } } "TF2_Crosshair_Color_Blue" { "controlName" "EditablePanel" "fieldName" "TF2_Crosshair_Color_Blue" "xpos" "4" "ypos" "0" "zpos" "20" "wide" "95" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "PaintBackgroundType" "0" "BGColor_override" "Black" "pin_to_sibling" "TF2_Crosshair_Color_Green" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Setting_Slider" { "controlName" "CCvarSlider" "fieldName" "Setting_Slider" "xpos" "rs1" "ypos" "cs-0.5" "zpos" "2" "wide" "f20" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "minvalue" "0" "maxvalue" "255" "cvar_name" "cl_crosshair_blue" } "Setting_Color" { "controlName" "EditablePanel" "fieldName" "Setting_Color" "xpos" "0" "ypos" "2" "zpos" "1" "wide" "16" "tall" "16" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "0 0 255 255" } } } "TF2_Cross_Style" { "controlName" "EditablePanel" "fieldName" "TF2_Cross_Style" "xpos" "4" "ypos" "372" "zpos" "20" "wide" "220" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Style_Label" { "controlName" "CExLabel" "fieldName" "Style_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Style" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f0" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Style_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Style_Default" { "controlName" "CExImageButton" "fieldName" "Style_Default" "xpos" "0" "ypos" "21" "zpos" "20" "wide" "24" "tall" "24" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "labelText" "" "command" "engine exec tf2_crosshair_default" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "Image_DrawColor" "255 255 255 255" "Image_ArmedColor" "255 255 255 255" "SubImage" { "controlName" "ImagePanel" "fieldName" "SubImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "f5" "tall" "f5" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Image" "crosshairs/default" "ScaleImage" "1" } } "Style_1" { "controlName" "CExImageButton" "fieldName" "Style_1" "xpos" "4" "ypos" "0" "zpos" "20" "wide" "24" "tall" "24" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "labelText" "" "command" "engine cl_crosshair_file crosshair1" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "Image_DrawColor" "255 255 255 255" "Image_ArmedColor" "255 255 255 255" "SubImage" { "controlName" "ImagePanel" "fieldName" "SubImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "f-5" "tall" "f-5" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Image" "crosshairs/crosshair1" "ScaleImage" "1" } "pin_to_sibling" "Style_Default" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Style_2" { "controlName" "CExImageButton" "fieldName" "Style_2" "xpos" "4" "ypos" "0" "zpos" "20" "wide" "24" "tall" "24" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "labelText" "" "command" "engine cl_crosshair_file crosshair2" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "Image_DrawColor" "255 255 255 255" "Image_ArmedColor" "255 255 255 255" "SubImage" { "controlName" "ImagePanel" "fieldName" "SubImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "f-5" "tall" "f-5" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Image" "crosshairs/crosshair2" "ScaleImage" "1" } "pin_to_sibling" "Style_1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Style_3" { "controlName" "CExImageButton" "fieldName" "Style_3" "xpos" "4" "ypos" "0" "zpos" "20" "wide" "24" "tall" "24" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "labelText" "" "command" "engine cl_crosshair_file crosshair3" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "Image_DrawColor" "255 255 255 255" "Image_ArmedColor" "255 255 255 255" "SubImage" { "controlName" "ImagePanel" "fieldName" "SubImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "f-5" "tall" "f-5" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Image" "crosshairs/crosshair3" "ScaleImage" "1" } "pin_to_sibling" "Style_2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Style_4" { "controlName" "CExImageButton" "fieldName" "Style_4" "xpos" "4" "ypos" "0" "zpos" "20" "wide" "24" "tall" "24" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "labelText" "" "command" "engine cl_crosshair_file crosshair4" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "Image_DrawColor" "255 255 255 255" "Image_ArmedColor" "255 255 255 255" "SubImage" { "controlName" "ImagePanel" "fieldName" "SubImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "f-5" "tall" "f-5" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Image" "crosshairs/crosshair4" "ScaleImage" "1" } "pin_to_sibling" "Style_3" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Style_5" { "controlName" "CExImageButton" "fieldName" "Style_5" "xpos" "4" "ypos" "0" "zpos" "20" "wide" "24" "tall" "24" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "labelText" "" "command" "engine cl_crosshair_file crosshair5" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "Image_DrawColor" "255 255 255 255" "Image_ArmedColor" "255 255 255 255" "SubImage" { "controlName" "ImagePanel" "fieldName" "SubImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "f-5" "tall" "f-5" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Image" "crosshairs/crosshair5" "ScaleImage" "1" } "pin_to_sibling" "Style_4" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Style_6" { "controlName" "CExImageButton" "fieldName" "Style_6" "xpos" "4" "ypos" "0" "zpos" "20" "wide" "24" "tall" "24" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "labelText" "" "command" "engine cl_crosshair_file crosshair6" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "Image_DrawColor" "255 255 255 255" "Image_ArmedColor" "255 255 255 255" "SubImage" { "controlName" "ImagePanel" "fieldName" "SubImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "f-5" "tall" "f-5" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Image" "crosshairs/crosshair6" "ScaleImage" "1" } "pin_to_sibling" "Style_5" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Style_7" { "controlName" "CExImageButton" "fieldName" "Style_7" "xpos" "4" "ypos" "0" "zpos" "20" "wide" "24" "tall" "24" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "labelText" "" "command" "engine cl_crosshair_file crosshair7" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "Image_DrawColor" "255 255 255 255" "Image_ArmedColor" "255 255 255 255" "SubImage" { "controlName" "ImagePanel" "fieldName" "SubImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "f-5" "tall" "f-5" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Image" "crosshairs/crosshair7" "ScaleImage" "1" } "pin_to_sibling" "Style_6" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } "TF2_Cross_Size" { "controlName" "EditablePanel" "fieldName" "TF2_Cross_Size" "xpos" "240" "ypos" "372" "zpos" "20" "wide" "130" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Size_Label" { "controlName" "CExLabel" "fieldName" "Size_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Size" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f0" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Size_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "TF2_Crosshair_Size" { "controlName" "EditablePanel" "fieldName" "TF2_Crosshair_Size" "xpos" "0" "ypos" "20" "zpos" "20" "wide" "f15" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "PaintBackgroundType" "0" "BGColor_override" "Black" "Setting_Slider" { "controlName" "CCvarSlider" "fieldName" "Setting_Slider" "xpos" "rs1" "ypos" "cs-0.5" "zpos" "2" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "proportionalToParent" "1" "minvalue" "10" "maxvalue" "50" "cvar_name" "cl_crosshair_scale" } } } } } } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_damage.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_damage.res" { "SafeMode" { "Customizations_Panel" { "HUD_Damage_Selection" { "controlName" "CScrollableList" "fieldName" "HUD_Damage_Selection" "xpos" "cs-0.5+5" "ypos" "cs-0.5+5" "zpos" "0" "wide" "f5" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "paintBackgroundType" "0" "BGColor_Override" "Black" "Scrollbar" { "xpos" "rs1+1" "ypos" "0" "wide" "6" "tall" "f0" "zpos" "1000" "proportionalToParent" "1" "Slider" { "PaintBackgroundType" "0" "FGColor_Override" "Gray" } "nobuttons" "1" } "Title_Icon" { "controlName" "CExLabel" "fieldName" "Title_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "[" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Title_Text" { "controlName" "CExLabel" "fieldName" "Title_Text" "xpos" "5" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "DAMAGE" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Title_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator_1" { "controlName" "EditablePanel" "fieldName" "Separator_1" "xpos" "0" "ypos" "3" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Title_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } //========================================================================================================== // FLOATING DAMAGE STYLE //========================================================================================================== "Floating_Damage_Style" { "controlName" "EditablePanel" "fieldName" "Floating_Damage_Style" "xpos" "0" "ypos" "36" "zpos" "20" "wide" "f7" "tall" "100" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Floating_Damage_Icon" { "controlName" "CExLabel" "fieldName" "Floating_Damage_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "$" "font" "MediumSmallIcons" "textAlignment" "center" "FGColor" "Gray" } "Floating_Damage_Title" { "controlName" "CExLabel" "fieldName" "Floating_Damage_Title" "xpos" "3" "ypos" "0" "zpos" "0" "wide" "f35" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Font And Size" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Floating_Damage_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator_2" { "controlName" "EditablePanel" "fieldName" "Separator_2" "xpos" "0" "ypos" "5" "zpos" "0" "wide" "f40" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Floating_Damage_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } //======================================================================================== // BOLD LARGE //======================================================================================== "Bold_Large" { "controlName" "EditablePanel" "fieldName" "Bold_Large" "xpos" "-2" "ypos" "5" "zpos" "1" "wide" "75" "tall" "34" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Separator_2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Style_Image" { "controlName" "CExLabel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "0" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "FontBold20Outline" "textAlignment" "center" "FGColor" "TargetDamage" } "Style_Label" { "controlName" "CExLabel" "fieldName" "Style_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Bold, Large" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_damage_font_clear" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } //======================================================================================== // BOLD SMALL //======================================================================================== "Bold_Small" { "controlName" "EditablePanel" "fieldName" "Bold_Small" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "75" "tall" "34" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Bold_Large" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Style_Image" { "controlName" "CExLabel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "0" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "FontBold14Outline" "textAlignment" "center" "FGColor" "TargetDamage" } "Style_Label" { "controlName" "CExLabel" "fieldName" "Style_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Bold, Small" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_damage_font_bold_small" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } //======================================================================================== // THIN LARGE //======================================================================================== "Thin_Large" { "controlName" "EditablePanel" "fieldName" "Thin_Large" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "75" "tall" "34" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Bold_Small" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Style_Image" { "controlName" "CExLabel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "0" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "FontRegular20" "textAlignment" "center" "FGColor" "TargetDamage" } "Style_Label" { "controlName" "CExLabel" "fieldName" "Style_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Thin, Large" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_damage_font_thin_large" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } //======================================================================================== // THIN SMALL //======================================================================================== "Thin_Small" { "controlName" "EditablePanel" "fieldName" "Thin_Small" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "75" "tall" "34" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Thin_Large" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Style_Image" { "controlName" "CExLabel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "0" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "FontRegular14" "textAlignment" "center" "FGColor" "TargetDamage" } "Style_Label" { "controlName" "CExLabel" "fieldName" "Style_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Thin, Small" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_damage_font_thin_small" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } } //======================================================================================== // BATCHING //======================================================================================== "Batching" { "controlName" "EditablePanel" "fieldName" "Batching" "xpos" "0" "ypos" "105" "zpos" "20" "wide" "f0" "tall" "100" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Batching_Icon" { "controlName" "CExLabel" "fieldName" "Batching_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "x" "font" "MediumSmallIcons" "textAlignment" "center" "FGColor" "Gray" } "Batching_Title" { "controlName" "CExLabel" "fieldName" "Batching_Title" "xpos" "3" "ypos" "0" "zpos" "0" "wide" "f35" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Damage Batching" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Batching_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "0" "ypos" "3" "zpos" "0" "wide" "f40" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Batching_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Damage_Batching" { "controlName" "EditablePanel" "fieldName" "Damage_Batching" "xpos" "0" "ypos" "5" "zpos" "1" "wide" "f0" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "pin_to_sibling" "Separator" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle hud_combattext_batching" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Allow Damage Batching" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "hud_combattext_batching" "mouseinputenabled" "0" } } "Batching_Window_Label" { "controlName" "CExLabel" "fieldName" "Batching_Window_Label" "xpos" "-5" "ypos" "10" "zpos" "1" "wide" "130" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Batching Window:" "textAlignment" "west" "FGColor" "TanLight" "pin_to_sibling" "Damage_Batching" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Batching_Window_Slider" { "controlName" "CCvarSlider" "fieldName" "Batching_Window_Slider" "xpos" "-5" "ypos" "5" "zpos" "2" "wide" "160" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "minvalue" "0.1" "maxvalue" "2" "cvar_name" "hud_combattext_batching_window" "pin_to_sibling" "Batching_Window_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } } } } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_dev.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_dev.res" { "SafeMode" { "Customizations_Panel" { "HUD_Dev_Selection" { "controlName" "CScrollableList" "fieldName" "HUD_Dev_Selection" "xpos" "cs-0.5+5" "ypos" "cs-0.5+5" "zpos" "0" "wide" "f5" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "paintBackgroundType" "0" "BGColor_Override" "Black" "Scrollbar" { "xpos" "rs1+1" "ypos" "0" "wide" "6" "tall" "f0" "zpos" "1000" "proportionalToParent" "1" "Slider" { "PaintBackgroundType" "0" "FGColor_Override" "Gray" } "nobuttons" "1" } "Title_Icon" { "controlName" "CExLabel" "fieldName" "Title_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "v" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Title" { "controlName" "CExLabel" "fieldName" "Title" "xpos" "5" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "HUD DEV OPTIONS" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Title_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator_1" { "controlName" "EditablePanel" "fieldName" "Separator_1" "xpos" "0" "ypos" "3" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Title_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Settings" { "controlName" "EditablePanel" "fieldName" "Settings" "xpos" "0" "ypos" "8" "zpos" "20" "wide" "f0" "tall" "310" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Separator_1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" //======================================================================================== // VGUI //======================================================================================== "VGUI" { "controlName" "CExButton" "fieldName" "VGUI" "xpos" "0" "ypos" "0" "zpos" "20" "wide" "80" "tall" "22" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "font" "HudFontSmallestBold" "labelText" "VGUI" "textAlignment" "center" "command" "engine sv_cheats 1; vgui_drawtree 1" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" } //======================================================================================== // RELOAD MENU //======================================================================================== "Reload_Menu" { "controlName" "CExButton" "fieldName" "Reload_Menu" "xpos" "5" "ypos" "0" "zpos" "20" "wide" "80" "tall" "22" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "font" "HudFontSmallestBold" "labelText" "Reload Menu" "textAlignment" "center" "command" "engine hud_reloadscheme; toggle mat_aaquality" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "pin_to_sibling" "VGUI" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } //======================================================================================== // Test Map //======================================================================================== "Test_Map" { "controlName" "CExButton" "fieldName" "Test_Map" "xpos" "5" "ypos" "0" "zpos" "20" "wide" "80" "tall" "22" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "font" "HudFontSmallestBold" "labelText" "Test Map" "textAlignment" "center" "command" "engine map itemtest" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "pin_to_sibling" "Reload_Menu" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } } } } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_fonts.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_fonts.res" { "SafeMode" { "Customizations_Panel" { "HUD_Font_Selection" { "controlName" "CScrollableList" "fieldName" "HUD_Font_Selection" "xpos" "cs-0.5+5" "ypos" "cs-0.5+5" "zpos" "0" "wide" "f5" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "paintBackgroundType" "0" "BGColor_Override" "Black" "Scrollbar" { "xpos" "rs1+1" "ypos" "0" "wide" "6" "tall" "f0" "zpos" "1000" "proportionalToParent" "1" "Slider" { "PaintBackgroundType" "0" "FGColor_Override" "Gray" } "nobuttons" "1" } "Title_Icon" { "controlName" "CExLabel" "fieldName" "Title_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "F" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Title" { "controlName" "CExLabel" "fieldName" "Title" "xpos" "5" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "HUD FONTS" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Title_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Reload_Icon" { "controlName" "CExLabel" "fieldName" "Reload_Icon" "xpos" "-140" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "." "font" "MediumSmallIcons" "textAlignment" "center" "FGColor" "LightRed" "pin_to_sibling" "Title" "pin_corner_to_sibling" "PIN_CENTER_LEFT" "pin_to_sibling_corner" "PIN_CENTER_LEFT" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "0" "ypos" "3" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Title_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Font_Picker" { "controlName" "EditablePanel" "fieldName" "Font_Picker" "xpos" "2" "ypos" "8" "zpos" "20" "wide" "f10" "tall" "1780" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Separator" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" //======================================================================================== // TF2 FONT //======================================================================================== "TF2" { "controlName" "EditablePanel" "fieldName" "TF2" "xpos" "4" "ypos" "0" "zpos" "0" "wide" "f5" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Font_Button" { "controlName" "CExButton" "fieldName" "Font_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "0" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_font_tf2" "labelText" "" "textAlignment" "center" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "DefaultBGColor_Override" "16 16 16 255" "ArmedBGColor_Override" "16 16 16 135" "DepressedBGColor_Override" "16 16 16 135" } "Font_Name" { "controlName" "CExLabel" "fieldName" "Font_Name" "xpos" "5" "ypos" "5" "zpos" "1" "wide" "f25" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "mouseinputenabled" "0" "labelText" "TF2" "font" "Showcase_TF2_Build" "textAlignment" "west" "FGColor" "Gray" } "Font_Showcase" { "controlName" "CExLabel" "fieldName" "Font_Showcase" "xpos" "5" "ypos" "25" "zpos" "1" "wide" "f25" "tall" "24" "visible" "1" "enabled" "1" "proportionalToParent" "1" "mouseinputenabled" "0" "labelText" "1234567890 - The quick brown fox jumps over the lazy dog" "font" "Showcase_TF2_Secondary" "textAlignment" "west" "FGColor" "Gray" } } "Separator_1" { "controlName" "EditablePanel" "fieldName" "Separator_1" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "mouseinputenabled" "0" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "TF2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } //======================================================================================== // CODE PRO FONT //======================================================================================== "Code_Pro" { "controlName" "EditablePanel" "fieldName" "Code_Pro" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f5" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Separator_1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Font_Button" { "controlName" "CExButton" "fieldName" "Font_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "0" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_font_code_pro" "labelText" "" "textAlignment" "center" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "1" "DefaultBGColor_Override" "16 16 16 255" "ArmedBGColor_Override" "16 16 16 135" "DepressedBGColor_Override" "16 16 16 135" } "Font_Name" { "controlName" "CExLabel" "fieldName" "Font_Name" "xpos" "5" "ypos" "5" "zpos" "1" "wide" "f25" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "mouseinputenabled" "0" "labelText" "CODE PRO" "font" "Showcase_Code_Pro_Bold" "textAlignment" "west" "FGColor" "Gray" } "Font_Showcase" { "controlName" "CExLabel" "fieldName" "Font_Showcase" "xpos" "5" "ypos" "25" "zpos" "1" "wide" "f25" "tall" "24" "visible" "1" "enabled" "1" "proportionalToParent" "1" "mouseinputenabled" "0" "labelText" "1234567890 - The quick brown fox jumps over the lazy dog" "font" "Showcase_Code_Pro_LC" "textAlignment" "west" "FGColor" "Gray" } } } } } } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_frame.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_frame.res" { "SafeMode" { "controlName" "EditablePanel" "fieldName" "SafeMode" "xpos" "cs-0.5" "ypos" "cs-0.5+15" "wide" "600" "tall" "302" "zpos" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "DarkGrey" "paintborder" "1" "border" "DarkComboBoxBorder" "Title" { "controlName" "CExImageButton" "fieldName" "Title" "xpos" "cs-0.5" "ypos" "0" "zpos" "-1" "wide" "f0" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "#TF_OptionCategory_HUD" "font" "HudFontMediumSmallBold" "textAlignment" "center" "FGColor" "TanLight" "paintBackground" "0" "sound_released" "UI/secret.mp3" } "CloseButton" { "controlName" "CExButton" "fieldName" "CloseButton" "xpos" "rs1-3" "ypos" "2" "zpos" "20" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "(" "font" "MediumIcons" "textAlignment" "center" "command" "engine cl_mainmenu_safemode 0; gameui_allowescape; mat_queue_mode -1;" "actionsignallevel" "2" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "0" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } //======================================================================================== // MAIN SCROLLER LIST //======================================================================================== "Categories_Navigation" { "controlName" "EditablePanel" "fieldName" "Categories_Navigation" "xpos" "0" "ypos" "cs-0.5" "wide" "150" "tall" "f44" "zpos" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "DarkerGrey" "Title" { "controlName" "CExLabel" "fieldName" "Title" "xpos" "cs-0.5" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Select a Category:" "font" "FontBold12" "textAlignment" "center" "FGColor" "TanLight" "paintBackground" "0" } "Quick_Settings_Button" { "controlName" "CExButton" "fieldName" "Quick_Settings_Button" "xpos" "cs-0.5" "ypos" "22" "zpos" "20" "wide" "f4" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Quick Settings" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_custom_settings; hud_reloadscheme; gameui_activate;" "actionsignallevel" "3" "sound_depressed" "UI/buttonclick.wav" } "Fonts_Button" { "controlName" "CExButton" "fieldName" "Fonts_Button" "xpos" "0" "ypos" "2" "zpos" "20" "wide" "f4" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Fonts" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_custom_fonts; hud_reloadscheme; gameui_activate;" "actionsignallevel" "3" "sound_depressed" "UI/buttonclick.wav" "pin_to_sibling" "Quick_Settings_Button" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Colors_Button" { "controlName" "CExButton" "fieldName" "Colors_Button" "xpos" "0" "ypos" "2" "zpos" "20" "wide" "f4" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Colors" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_custom_colors; hud_reloadscheme; gameui_activate;" "actionsignallevel" "3" "sound_depressed" "UI/buttonclick.wav" "pin_to_sibling" "Fonts_Button" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Health_Ammo_Button" { "controlName" "CExButton" "fieldName" "Health_Ammo_Button" "xpos" "0" "ypos" "2" "zpos" "20" "wide" "f4" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Health - Ammo" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_custom_health_ammo; hud_reloadscheme; gameui_activate;" "actionsignallevel" "3" "sound_depressed" "UI/buttonclick.wav" "pin_to_sibling" "Colors_Button" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Damage" { "controlName" "CExButton" "fieldName" "Damage" "xpos" "0" "ypos" "2" "zpos" "20" "wide" "f4" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Damage" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_custom_damage; hud_reloadscheme; gameui_activate;" "actionsignallevel" "3" "sound_depressed" "UI/buttonclick.wav" "pin_to_sibling" "Health_Ammo_Button" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Crosshairs" { "controlName" "CExButton" "fieldName" "Crosshairs" "xpos" "0" "ypos" "2" "zpos" "20" "wide" "f4" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Crosshairs" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_custom_crosshairs; hud_reloadscheme; gameui_activate;" "actionsignallevel" "3" "sound_depressed" "UI/buttonclick.wav" "pin_to_sibling" "Damage" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Miscellaneous" { "controlName" "CExButton" "fieldName" "Miscellaneous" "xpos" "0" "ypos" "2" "zpos" "20" "wide" "f4" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Miscellaneous" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_custom_miscellaneous; hud_reloadscheme; gameui_activate;" "actionsignallevel" "3" "sound_depressed" "UI/buttonclick.wav" "pin_to_sibling" "Crosshairs" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Dev" { "controlName" "CExButton" "fieldName" "Dev" "xpos" "0" "ypos" "2" "zpos" "20" "wide" "f4" "tall" "22" "visible" "0" "enabled" "1" "proportionalToParent" "1" "labelText" "HUD Dev" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_custom_dev; hud_reloadscheme; gameui_activate;" "actionsignallevel" "3" "sound_depressed" "UI/buttonclick.wav" "pin_to_sibling" "Miscellaneous" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } } //======================================================================================== // MAIN CUSTOMIZATION PANEL //======================================================================================== "Customizations_Panel" { "controlName" "EditablePanel" "fieldName" "Customizations_Panel" "xpos" "rs1-2" "ypos" "cs-0.5" "zpos" "-1" "wide" "f154" "tall" "f48" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "BGColor_Override" "Gray" } //======================================================================================== // BOTTOM ROW //======================================================================================== "ApplyButton" { "controlName" "CExButton" "fieldName" "ApplyButton" "xpos" "0" "ypos" "rs1" "zpos" "20" "wide" "225" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Reload to Apply Changes" "font" "HudFontSmallBold" "textAlignment" "center" "command" "engine cl_mainmenu_safemode 0; gameui_allowescape; mat_queue_mode -1; hud_reloadscheme" "actionsignallevel" "2" "RoundedCorners" "0" "sound_depressed" "UI/buttonclick.wav" "DefaultBGColor_Override" "17 97 86 255" "ArmedBGColor_Override" "67 147 136 255" "DepressedBGColor_Override" "67 147 136 255" } "ResetAllButton" { "controlName" "CExButton" "fieldName" "ResetAllButton" "xpos" "0" "ypos" "0" "zpos" "20" "wide" "125" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Reset Changes" "font" "HudFontSmallBold" "textAlignment" "center" "command" "engine hud_customization_reset" "actionsignallevel" "2" "RoundedCorners" "0" "sound_depressed" "UI/buttonclick.wav" "DefaultBGColor_Override" "150 120 50 255" "ArmedBGColor_Override" "200 170 65 255" "DepressedBGColor_Override" "200 170 65 255" "pin_to_sibling" "ApplyButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "RestartGameButton" { "controlName" "CExButton" "fieldName" "RestartGameButton" "xpos" "0" "ypos" "0" "zpos" "20" "wide" "125" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Close TF2" "font" "HudFontSmallBold" "textAlignment" "center" "command" "engine quit" "actionsignallevel" "2" "RoundedCorners" "0" "sound_depressed" "UI/buttonclick.wav" "DefaultBGColor_Override" "150 30 10 255" "ArmedBGColor_Override" "200 80 60 255" "DepressedBGColor_Override" "200 80 60 255" "pin_to_sibling" "ResetAllButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ConsoleButton" { "controlName" "CExButton" "fieldName" "ConsoleButton" "xpos" "0" "ypos" "0" "zpos" "20" "wide" "125" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Open Console" "font" "HudFontSmallBold" "textAlignment" "center" "command" "engine toggleconsole" "actionsignallevel" "2" "RoundedCorners" "0" "sound_depressed" "UI/buttonclick.wav" "pin_to_sibling" "RestartGameButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_health_ammo.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_health_ammo.res" { "SafeMode" { "Customizations_Panel" { "HUD_Health_Ammo_Selection" { "controlName" "CScrollableList" "fieldName" "HUD_Health_Ammo_Selection" "xpos" "cs-0.5+5" "ypos" "cs-0.5+5" "zpos" "0" "wide" "f5" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "paintBackgroundType" "0" "BGColor_Override" "Black" "Scrollbar" { "xpos" "rs1+1" "ypos" "0" "wide" "6" "tall" "f0" "zpos" "1000" "proportionalToParent" "1" "Slider" { "PaintBackgroundType" "0" "FGColor_Override" "Gray" } "nobuttons" "1" } "Title_Icon" { "controlName" "CExLabel" "fieldName" "Title_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "7" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Title_Text" { "controlName" "CExLabel" "fieldName" "Title_Text" "xpos" "30" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Health - Ammo" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_1" { "controlName" "EditablePanel" "fieldName" "Separator_1" "xpos" "0" "ypos" "28" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } //================================================================================================ // HEALTH & AMMO COLORS //================================================================================================ "Color_Icon" { "controlName" "CExLabel" "fieldName" "Color_Icon" "xpos" "0" "ypos" "36" "zpos" "0" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "I" "font" "MediumSmallIcons" "textAlignment" "center" "FGColor" "Gray" } "Color_Text" { "controlName" "CExLabel" "fieldName" "Color_Text" "xpos" "22" "ypos" "37" "zpos" "0" "wide" "f25" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Coloring" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_3" { "controlName" "EditablePanel" "fieldName" "Separator_3" "xpos" "0" "ypos" "60" "zpos" "0" "wide" "f40" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } "Color_Options" { "controlName" "EditablePanel" "fieldName" "Color_Options" "xpos" "0" "ypos" "66" "zpos" "20" "wide" "f0" "tall" "55" "visible" "1" "enabled" "1" "proportionalToParent" "1" //================================================================================================ // COLORED TEXT //================================================================================================ "Color_Text" { "controlName" "EditablePanel" "fieldName" "Color_Text" "xpos" "1" "ypos" "0" "zpos" "1" "wide" "68" "tall" "55" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "Color_Example" { "controlName" "CExLabel" "fieldName" "Color_Example" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "0" "wide" "54" "tall" "54" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontMediumBold" "textAlignment" "center" "FGColor" "Overheal" } "Color_Example2" { "controlName" "EditablePanel" "fieldName" "Color_Example2" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "-1" "wide" "54" "tall" "34" "visible" "1" "enabled" "1" "proportionalToParent" "1" "bgcolor_override" "HudBlack" "paintBackgroundType" "2" } "Color_Label" { "controlName" "CExLabel" "fieldName" "Color_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Colored Text" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Color_Button" { "controlName" "CExButton" "fieldName" "Color_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_health_style_clear; hud_ammo_style_clear; hud_health_ammo_anim_clear" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } //================================================================================================ // COLORED BOX //================================================================================================ "Color_Box" { "controlName" "EditablePanel" "fieldName" "Color_Box" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "68" "tall" "55" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Color_Text" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Color_Example" { "controlName" "CExLabel" "fieldName" "Color_Example" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "0" "wide" "54" "tall" "54" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontMediumBold" "textAlignment" "center" "FGColor" "TanLight" } "Style_Image2" { "controlName" "EditablePanel" "fieldName" "Style_Image2" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "-1" "wide" "54" "tall" "34" "visible" "1" "enabled" "1" "proportionalToParent" "1" "bgcolor_override" "Overheal" "paintBackgroundType" "2" } "Color_Label" { "controlName" "CExLabel" "fieldName" "Color_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Colored Box" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Color_Button" { "controlName" "CExButton" "fieldName" "Color_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_health_no_box; hud_ammo_no_box; hud_health_ammo_anim_box" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } //================================================================================================ // HEALTH CROSS //================================================================================================ "Color_Cross" { "controlName" "EditablePanel" "fieldName" "Color_Cross" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "68" "tall" "55" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Color_Box" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Color_Example" { "controlName" "ImagePanel" "fieldName" "Color_Example" "xpos" "cs-0.5" "ypos" "cs-0.5-6" "zpos" "0" "wide" "52" "tall" "52" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "replay/thumbnails/customizations/health_cross" } "Color_Label" { "controlName" "CExLabel" "fieldName" "Color_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Health Cross" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Color_Button" { "controlName" "CExButton" "fieldName" "Color_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_health_cross; hud_ammo_no_box; hud_health_ammo_anim_box" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } //================================================================================================ // COLORED TEXT, NO BOX //================================================================================================ "Color_Text_No_Box" { "controlName" "EditablePanel" "fieldName" "Color_Text_No_Box" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "68" "tall" "55" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Color_Cross" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Color_Example" { "controlName" "CExLabel" "fieldName" "Color_Example" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "0" "wide" "54" "tall" "54" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "100" "font" "HudFontMediumBold" "textAlignment" "center" "FGColor" "TanLight" } "Color_Label" { "controlName" "CExLabel" "fieldName" "Color_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "No Box" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Color_Button" { "controlName" "CExButton" "fieldName" "Color_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_health_no_box; hud_ammo_no_box; hud_health_ammo_anim_clear" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } } //================================================================================================ // UBERCHARGE //================================================================================================ "Uber_Icon" { "controlName" "CExLabel" "fieldName" "Uber_Icon" "xpos" "0" "ypos" "126" "zpos" "0" "wide" "20" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "0" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Uber_Text" { "controlName" "CExLabel" "fieldName" "Uber_Text" "xpos" "25" "ypos" "126" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "UBERCHARGE" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_5" { "controlName" "EditablePanel" "fieldName" "Separator_5" "xpos" "3" "ypos" "154" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } "Ubercharge_Counter_Options" { "controlName" "EditablePanel" "fieldName" "Ubercharge_Counter_Options" "xpos" "3" "ypos" "162" "zpos" "20" "wide" "f0" "tall" "120" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Ubercharge_Counter_Icon" { "controlName" "CExLabel" "fieldName" "Ubercharge_Counter_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "]" "font" "MediumSmallIcons" "textAlignment" "center" "FGColor" "Gray" } "Ubercharge_Counter_Title" { "controlName" "CExLabel" "fieldName" "Ubercharge_Counter_Title" "xpos" "3" "ypos" "0" "zpos" "0" "wide" "180" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Ubercharge Counter" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Ubercharge_Counter_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator_4" { "controlName" "EditablePanel" "fieldName" "Separator_4" "xpos" "0" "ypos" "5" "zpos" "0" "wide" "f40" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Ubercharge_Counter_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Ubercharge_Counter_Explanation" { "controlName" "CExLabel" "fieldName" "Ubercharge_Counter_Explanation" "xpos" "-3" "ypos" "5" "zpos" "1" "wide" "f30" "tall" "22" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "AllCaps" "0" "Wrap" "1" "CenterWrap" "0" "font" "HudFontSmallest" "labeltext" "This counter helps track the enemy ubercharge, by counting from 0 to 100 in 50 seconds. It is triggered by opening and closing any of the voice command menus ('Z', 'X' or 'C' keys)." "textAlignment" "North-West" "FGColor" "Gray" "pin_to_sibling" "Separator_4" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } //================================================================================================ // UBERCHARGE COUNTER ON //================================================================================================ "Uber_Counter_ON" { "controlName" "EditablePanel" "fieldName" "Uber_Counter_ON" "xpos" "-3" "ypos" "5" "zpos" "1" "wide" "68" "tall" "55" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Ubercharge_Counter_Explanation" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Color_Example" { "controlName" "ImagePanel" "fieldName" "Color_Example" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "0" "wide" "56" "tall" "56" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "replay/thumbnails/customizations/uber_counter" } "Style_Label" { "controlName" "CExLabel" "fieldName" "Style_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Enabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_uber_counter_on" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } //================================================================================================ // UBERCHARGE COUNTER OFF //================================================================================================ "Uber_Counter_OFF" { "controlName" "EditablePanel" "fieldName" "Uber_Counter_OFF" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "68" "tall" "55" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Uber_Counter_ON" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Color_Example" { "controlName" "ImagePanel" "fieldName" "Color_Example" "xpos" "cs-0.5" "ypos" "cs-0.5-7" "zpos" "0" "wide" "56" "tall" "56" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "replay/thumbnails/customizations/uber_counter" } "Style_Disabled" { "controlName" "CExLabel" "fieldName" "Style_Disabled" "xpos" "cs-0.5" "ypos" "3" "zpos" "3" "wide" "64" "tall" "36" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "LargeIcons" "labelText" "(" "textAlignment" "center" "FGColor" "LightRed" } "Style_Label" { "controlName" "CExLabel" "fieldName" "Style_Label" "xpos" "0" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Disabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_uber_counter_clear" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } } //================================================================================================ // TARGET IDS //================================================================================================ "Target_Icon" { "controlName" "CExLabel" "fieldName" "Target_Icon" "xpos" "0" "ypos" "285" "zpos" "0" "wide" "20" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "R" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Target_Text" { "controlName" "CExLabel" "fieldName" "Target_Text" "xpos" "25" "ypos" "285" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "TARGET ID" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_6" { "controlName" "EditablePanel" "fieldName" "Separator_6" "xpos" "0" "ypos" "315" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } "Target_Options" { "controlName" "EditablePanel" "fieldName" "Target_Options" "xpos" "0" "ypos" "323" "zpos" "20" "wide" "f0" "tall" "130" "visible" "1" "enabled" "1" "proportionalToParent" "1" //================================================================================================ // FLOATING HEALTH NUMBERS //================================================================================================ "Toggle_Floating_Health" { "controlName" "EditablePanel" "fieldName" "Toggle_Floating_Health" "xpos" "0" "ypos" "0" "zpos" "20" "wide" "f0" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle tf_hud_target_id_disable_floating_health 0 1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Disable Floating Health Values" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "tf_hud_target_id_disable_floating_health" "mouseinputenabled" "0" } } "Separator_7" { "controlName" "EditablePanel" "fieldName" "Separator_7" "xpos" "0" "ypos" "28" "zpos" "0" "wide" "260" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Separator_6" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Location_Label" { "controlName" "CExLabel" "fieldName" "Location_Label" "xpos" "-2" "ypos" "5" "zpos" "21" "wide" "135" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "HudFontSmallest" "labelText" "Spectator TargetID Location:" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Separator_7" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Location_Default_Button" { "controlName" "CExButton" "fieldName" "Location_Default_Button" "xpos" "-2" "ypos" "20" "zpos" "20" "wide" "80" "tall" "15" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "font" "HudFontSmallest" "labelText" "Default" "textAlignment" "center" "command" "engine tf_spectator_target_location 0" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "pin_to_sibling" "Separator_7" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Location_BottomCenter_Button" { "controlName" "CExButton" "fieldName" "Location_BottomCenter_Button" "xpos" "3" "ypos" "0" "zpos" "20" "wide" "80" "tall" "15" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "font" "HudFontSmallest" "labelText" "Bottom Center" "textAlignment" "center" "command" "engine tf_spectator_target_location 2" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "pin_to_sibling" "Location_Default_Button" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Location_BottomLeft_Button" { "controlName" "CExButton" "fieldName" "Location_BottomLeft_Button" "xpos" "3" "ypos" "0" "zpos" "20" "wide" "80" "tall" "15" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "font" "HudFontSmallest" "labelText" "Bottom Left" "textAlignment" "center" "command" "engine tf_spectator_target_location 1" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "pin_to_sibling" "Location_BottomCenter_Button" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Location_BottomRight_Button" { "controlName" "CExButton" "fieldName" "Location_BottomRight_Button" "xpos" "3" "ypos" "0" "zpos" "20" "wide" "80" "tall" "15" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "font" "HudFontSmallest" "labelText" "Bottom Right" "textAlignment" "center" "command" "engine tf_spectator_target_location 3" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "pin_to_sibling" "Location_BottomLeft_Button" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator_8" { "controlName" "EditablePanel" "fieldName" "Separator_8" "xpos" "0" "ypos" "10" "zpos" "0" "wide" "260" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Location_Default_Button" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Setting_Label" { "controlName" "CExLabel" "fieldName" "Setting_Label" "xpos" "-2" "ypos" "5" "zpos" "1" "wide" "160" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "HudFontSmallest" "labelText" "Team Bar Transparency: " "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Separator_8" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Setting_Slider" { "controlName" "CCvarSlider" "fieldName" "Setting_Slider" "xpos" "-5" "ypos" "2" "zpos" "2" "wide" "160" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "minvalue" "0" "maxvalue" "255" "cvar_name" "tf_hud_target_id_alpha" "pin_to_sibling" "Setting_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } } } } } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_home.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_home.res" { "SafeMode" { "Customizations_Panel" { "HUD_Customization_Home_Panel" { "controlName" "CScrollableList" "fieldName" "HUD_Customization_Home_Panel" "xpos" "cs-0.5+5" "ypos" "cs-0.5+5" "zpos" "0" "wide" "f5" "tall" "f0" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "PaintBackgroundType" "0" "BGColor_Override" "Black" "Scrollbar" { "xpos" "rs1+1" "ypos" "0" "wide" "6" "tall" "f0" "zpos" "1000" "proportionalToParent" "1" "Slider" { "PaintBackgroundType" "0" "FGColor_Override" "Gray" } "nobuttons" "1" } "Title" { "controlName" "CExLabel" "fieldName" "Title" "xpos" "3" "ypos" "0" "zpos" "0" "wide" "f6" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Welcome to flawhud" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Description" { "controlName" "CExLabel" "fieldName" "Description" "xpos" "0" "ypos" "3" "zpos" "0" "wide" "f6" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "labelText" "Select a category to navigate and apply the customizations" "font" "FontRegular12" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Title" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Separator_1" { "controlName" "EditablePanel" "fieldName" "Separator_1" "xpos" "0" "ypos" "3" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Description" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Reload_Button" { "controlName" "CExButton" "fieldName" "Reload_Button" "xpos" "0" "ypos" "8" "zpos" "0" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "." "font" "MediumIcons" "textAlignment" "center" "command" "engine hud_reloadscheme" "paintBackground" "0" "DefaultFGColor_Override" "112 176 74 255" "ArmedFGColor_Override" "62 126 24 255" "DepressedFGColor_Override" "62 126 24 255" "pin_to_sibling" "Separator_1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Reload_Text" { "controlName" "CExLabel" "fieldName" "Reload_Text" "xpos" "5" "ypos" "0" "zpos" "0" "wide" "f40" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "Wrap" "1" "labelText" "Certain customizations require a game restart to be fully applied, this will be indicated by this reload symbol." "font" "FontBold12" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Reload_Button" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator_2" { "controlName" "EditablePanel" "fieldName" "Separator_2" "xpos" "0" "ypos" "8" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Reload_Button" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "GitHub_Icon" { "controlName" "CExButton" "fieldName" "GitHub_Icon" "xpos" "0" "ypos" "8" "zpos" "0" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Y" "font" "MediumIcons" "textAlignment" "center" "command" "url https://discord.gg/hTdtK9vBhE" "paintBackground" "0" "DefaultFGColor_Override" "255 255 255 255" "ArmedFGColor_Override" "205 205 205 255" "DepressedFGColor_Override" "205 205 205 255" "pin_to_sibling" "Separator_2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "GitHub_Text" { "controlName" "CExLabel" "fieldName" "GitHub_Text" "xpos" "5" "ypos" "0" "zpos" "0" "wide" "f45" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "Wrap" "1" "labelText" "Want to contribute to flawhud? Head to the GitHub repo to make a suggestion, reports bugs or contribute changes." "font" "FontBold12" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "GitHub_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator_3" { "controlName" "EditablePanel" "fieldName" "Separator_3" "xpos" "0" "ypos" "8" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "GitHub_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Discord_Icon" { "controlName" "CExButton" "fieldName" "Discord_Icon" "xpos" "0" "ypos" "8" "zpos" "0" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Z" "font" "MediumIcons" "textAlignment" "east" "command" "url https://github.com/criticalflaw/flawhud" "paintBackground" "0" "DefaultFGColor_Override" "88 101 242 255" "ArmedFGColor_Override" "68 81 212 255" "DepressedFGColor_Override" "68 81 212 255" "pin_to_sibling" "Separator_3" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Discord_Text" { "controlName" "CExLabel" "fieldName" "Discord_Text" "xpos" "5" "ypos" "0" "zpos" "0" "wide" "f40" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Use_Proportional_Insets" "1" "Wrap" "1" "labelText" "To stay up to date with the latest flawhud news and discussions, join the Discord server." "font" "FontBold12" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Discord_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator_4" { "controlName" "EditablePanel" "fieldName" "Separator_4" "xpos" "0" "ypos" "8" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Discord_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Links_Text" { "controlName" "CExLabel" "fieldName" "Links_Text" "xpos" "0" "ypos" "8" "zpos" "0" "wide" "160" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Check out flawhud on:" "font" "FontBold12" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Separator_4" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Links_GitHub" { "controlName" "CExButton" "fieldName" "Links_GitHub" "xpos" "3" "ypos" "0" "zpos" "20" "wide" "20" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Y" "font" "SmallIcons" "textAlignment" "center" "command" "url https://github.com/criticalflaw/flawhud" "paintBackground" "0" "DefaultFGColor_Override" "255 255 255 255" "ArmedFGColor_Override" "205 205 205 255" "DepressedFGColor_Override" "205 205 205 255" "pin_to_sibling" "Links_Text" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Links_Discord" { "controlName" "CExButton" "fieldName" "Links_Discord" "xpos" "3" "ypos" "0" "zpos" "20" "wide" "20" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Z" "font" "SmallIcons" "textAlignment" "center" "command" "url https://discord.gg/hTdtK9vBhE" "paintBackground" "0" "DefaultFGColor_Override" "88 101 242 255" "ArmedFGColor_Override" "68 81 212 255" "DepressedFGColor_Override" "68 81 212 255" "pin_to_sibling" "Links_GitHub" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Links_ComfigHUDs" { "controlName" "CExButton" "fieldName" "Links_ComfigHUDs" "xpos" "3" "ypos" "0" "zpos" "20" "wide" "20" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "M" "font" "SmallIcons" "textAlignment" "center" "command" "url https://comfig.app/huds/page/flawhud" "paintBackground" "0" "DefaultFGColor_Override" "0 150 135 255" "ArmedFGColor_Override" "0 100 90 255" "DepressedFGColor_Override" "0 150 135 255" "pin_to_sibling" "Links_Discord" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Links_TF2HUDs" { "controlName" "CExButton" "fieldName" "Links_TF2HUDs" "xpos" "3" "ypos" "0" "zpos" "20" "wide" "20" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "!" "font" "SmallIcons" "textAlignment" "center" "command" "url https://tf2huds.dev/hud/flawhud" "paintBackground" "0" "DefaultFGColor_Override" "255 85 0 255" "ArmedFGColor_Override" "145 50 0 255" "DepressedFGColor_Override" "255 85 0 255" "pin_to_sibling" "Links_ComfigHUDs" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Links_GameBanana" { "controlName" "CExButton" "fieldName" "Links_GameBanana" "xpos" "3" "ypos" "0" "zpos" "20" "wide" "20" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "E" "font" "SmallIcons" "textAlignment" "center" "command" "url https://gamebanana.com/mods/26828" "paintBackground" "0" "DefaultFGColor_Override" "255 200 0 255" "ArmedFGColor_Override" "160 125 0 255" "DepressedFGColor_Override" "255 200 0 255" "pin_to_sibling" "Links_TF2HUDs" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } } } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_layout.res ================================================ #base "../../../../../../cfg/flawhud/hud_customization_menu.txt" #base "hud_customization_layout_base.res" ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_layout_base.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_layout.res" { "MainMenuOverride" { "controlName" "CHudMainMenuOverride" "enabled" "1" "SafeMode" { "Customizations_Panel" { "HUD_Customization_Home_Panel" {visible 0} "HUD_Quick_Settings_Selection" {visible 0} "HUD_Colors_Selection" {visible 0} "HUD_Font_Selection" {visible 0} "HUD_Health_Ammo_Selection" {visible 0} "HUD_Damage_Selection" {visible 0} "HUD_Match_Status_Selection" {visible 0} "HUD_Crosshairs_Selection" {visible 0} "HUD_Miscellaneous_Selection" {visible 0} "HUD_Dev_Selection" {visible 0} } } } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_miscellaneous.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_miscellaneous.res" { "SafeMode" { "Customizations_Panel" { "HUD_Miscellaneous_Selection" { "controlName" "CScrollableList" "fieldName" "HUD_Miscellaneous_Selection" "xpos" "cs-0.5+5" "ypos" "cs-0.5+5" "zpos" "0" "wide" "f5" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "paintBackgroundType" "0" "BGColor_Override" "Black" "Scrollbar" { "xpos" "rs1+1" "ypos" "0" "wide" "6" "tall" "f0" "zpos" "1000" "proportionalToParent" "1" "Slider" { "PaintBackgroundType" "0" "FGColor_Override" "Gray" } "nobuttons" "1" } //========================================================================================================== // VIEWMODELS //========================================================================================================== "Viewmodel_Icon" { "controlName" "CExLabel" "fieldName" "Viewmodel_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "5" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Viewmodel_Label" { "controlName" "CExLabel" "fieldName" "Viewmodel_Label" "xpos" "30" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Viewmodels" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_1" { "controlName" "EditablePanel" "fieldName" "Separator_1" "xpos" "0" "ypos" "28" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } "Viewmodel_Transparency" { "controlName" "EditablePanel" "fieldName" "Viewmodel_Transparency" "xpos" "4" "ypos" "33" "zpos" "20" "wide" "230" "tall" "100" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Style_Label" { "controlName" "CExLabel" "fieldName" "Style_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Visibility" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f15" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Style_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Style_Normal" { "controlName" "EditablePanel" "fieldName" "Style_Normal" "xpos" "-2" "ypos" "5" "zpos" "1" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Separator" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Style_Name" { "controlName" "CExLabel" "fieldName" "Style_Name" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Full" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Image" { "controlName" "ImagePanel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "0" "wide" "60" "tall" "60" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "replay/thumbnails/customizations/transparent_viewmodels_off" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine r_drawviewmodel 1; hud_trans_viewmodels_clear" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } "Style_Transparent" { "controlName" "EditablePanel" "fieldName" "Style_Transparent" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Style_Normal" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Style_Name" { "controlName" "CExLabel" "fieldName" "Style_Name" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Semi" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Image" { "controlName" "ImagePanel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "0" "wide" "60" "tall" "60" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "replay/thumbnails/customizations/transparent_viewmodels_on" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine r_drawviewmodel 1; hud_trans_viewmodels_on" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } "Style_None" { "controlName" "EditablePanel" "fieldName" "Style_None" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Style_Transparent" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Style_Name" { "controlName" "CExLabel" "fieldName" "Style_Name" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Gone" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine r_drawviewmodel 0" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } } "Viewmodel_Settings" { "controlName" "EditablePanel" "fieldName" "Viewmodel_Settings" "xpos" "240" "ypos" "33" "zpos" "20" "wide" "250" "tall" "100" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Settings_Label" { "controlName" "CExLabel" "fieldName" "Settings_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Settings" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f15" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Settings_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Viewmodel_Minimal" { "controlName" "EditablePanel" "fieldName" "Viewmodel_Minimal" "xpos" "-2" "ypos" "5" "zpos" "1" "wide" "f0" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Separator" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle tf_use_min_viewmodels" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Minimal Viewmodels" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "tf_use_min_viewmodels" "mouseinputenabled" "0" } } "Viewmodel_Flip" { "controlName" "EditablePanel" "fieldName" "Viewmodel_Flip" "xpos" "0" "ypos" "3" "zpos" "1" "wide" "f0" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Viewmodel_Minimal" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle cl_flipviewmodels" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Flip Viewmodel" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "cl_flipviewmodels" "mouseinputenabled" "0" } } "FOV_Slider" { "controlName" "EditablePanel" "fieldName" "FOV_Slider" "xpos" "-5" "ypos" "3" "zpos" "1" "wide" "f0" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "pin_to_sibling" "Viewmodel_Flip" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Setting_Label" { "controlName" "CExLabel" "fieldName" "Setting_Label" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "20" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "FOV:" "textAlignment" "west" "FGColor" "TanLight" } "Setting_Slider" { "controlName" "CCvarSlider" "fieldName" "Setting_Slider" "xpos" "40" "ypos" "-2" "zpos" "2" "wide" "120" "tall" "30" "visible" "1" "enabled" "1" "proportionalToParent" "1" "minvalue" "0" "maxvalue" "150" "cvar_name" "viewmodel_fov" } } } //=============================================================================================================== // DISGUISE //=============================================================================================================== "Disguise_Icon" { "controlName" "CExLabel" "fieldName" "Disguise_Icon" "xpos" "0" "ypos" "135" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "9" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Disguise_Label" { "controlName" "CExLabel" "fieldName" "Disguise_Label" "xpos" "30" "ypos" "135" "zpos" "0" "wide" "f25" "tall" "27" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Disguise" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_2" { "controlName" "EditablePanel" "fieldName" "Separator_2" "xpos" "3" "ypos" "162" "zpos" "0" "wide" "150" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } "Disguise_Toggle" { "controlName" "EditablePanel" "fieldName" "Disguise_Toggle" "xpos" "5" "ypos" "167" "zpos" "20" "wide" "180" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Disguise_ON" { "controlName" "EditablePanel" "fieldName" "Disguise_ON" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "Style_Name" { "controlName" "CExLabel" "fieldName" "Style_Name" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Enabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Image" { "controlName" "ImagePanel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "cs-0.5-5" "zpos" "0" "wide" "54" "tall" "54" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "../hud/class_spy_outline" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_disguise_anim_clear" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } "Disguise_OFF" { "controlName" "EditablePanel" "fieldName" "Disguise_OFF" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Disguise_ON" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Style_Name" { "controlName" "CExLabel" "fieldName" "Style_Name" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Disabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Image" { "controlName" "ImagePanel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "cs-0.5-5" "zpos" "0" "wide" "54" "tall" "54" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "../hud/class_spy_outline" } "Style_Disabled" { "controlName" "CExLabel" "fieldName" "Style_Disabled" "xpos" "cs-0.5" "ypos" "cs-0.5-6" "zpos" "3" "wide" "72" "tall" "45" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "LargeIcons" "labelText" "(" "textAlignment" "center" "FGColor" "LightRed" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_disguise_anim_off" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } } //=============================================================================================================== // PLAYER MODEL //=============================================================================================================== "Player_Model_Icon" { "controlName" "CExLabel" "fieldName" "Player_Model_Icon" "xpos" "180" "ypos" "135" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "!" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Player_Model_Label" { "controlName" "CExLabel" "fieldName" "Player_Model_Label" "xpos" "210" "ypos" "135" "zpos" "0" "wide" "200" "tall" "27" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Player Model" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_3" { "controlName" "EditablePanel" "fieldName" "Separator_3" "xpos" "180" "ypos" "162" "zpos" "0" "wide" "200" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } "Player_Model_Settings" { "controlName" "EditablePanel" "fieldName" "Player_Model_Settings" "xpos" "180" "ypos" "167" "zpos" "20" "wide" "f0" "tall" "100" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Model_Enabled" { "controlName" "EditablePanel" "fieldName" "Model_Enabled" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "Style_Name" { "controlName" "CExLabel" "fieldName" "Style_Name" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Enabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Image" { "controlName" "ImagePanel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "rs1-12" "zpos" "0" "wide" "52" "tall" "52" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "../hud/class_scoutred" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_player_model_clear" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } "Model_Disabled" { "controlName" "EditablePanel" "fieldName" "Model_Disabled" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Model_Enabled" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Style_Name" { "controlName" "CExLabel" "fieldName" "Style_Name" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Disabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Image" { "controlName" "ImagePanel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "rs1-12" "zpos" "0" "wide" "52" "tall" "52" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "../hud/class_scoutred" } "Style_Image2" { "controlName" "CExLabel" "fieldName" "Style_Image2" "xpos" "cs-0.5" "ypos" "cs-0.5-6" "zpos" "3" "wide" "64" "tall" "36" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "LargeIcons" "labelText" "(" "textAlignment" "center" "FGColor" "LightRed" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_player_model_off" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } "Toggle_3D_Model" { "controlName" "EditablePanel" "fieldName" "Toggle_3D_Model" "xpos" "5" "ypos" "-5" "zpos" "1" "wide" "100" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Model_Disabled" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle cl_hud_playerclass_use_playermodel 0 1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "3D Player Model" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "wrap" "1" "cvar_name" "cl_hud_playerclass_use_playermodel" "mouseinputenabled" "0" } } } //=============================================================================================================== // SPEEDOMETER //=============================================================================================================== "Speedometer_Icon" { "controlName" "CExLabel" "fieldName" "Speedometer_Icon" "xpos" "0" "ypos" "245" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "L" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Speedometer_Label" { "controlName" "CExLabel" "fieldName" "Speedometer_Label" "xpos" "30" "ypos" "245" "zpos" "0" "wide" "f25" "tall" "27" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Speedometer" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_5" { "controlName" "EditablePanel" "fieldName" "Separator_5" "xpos" "0" "ypos" "271" "zpos" "0" "wide" "200" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } "Speedometer_Style" { "controlName" "EditablePanel" "fieldName" "Speedometer_Style" "xpos" "0" "ypos" "276" "zpos" "20" "wide" "180" "tall" "60" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Speedo_Enabled" { "controlName" "EditablePanel" "fieldName" "Speedo_Enabled" "xpos" "0" "ypos" "2" "zpos" "1" "wide" "80" "tall" "40" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "Style_Name" { "controlName" "CExLabel" "fieldName" "Style_Name" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Enabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Image" { "controlName" "ImagePanel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "cs-0.5-6" "zpos" "0" "wide" "60" "tall" "60" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "replay/thumbnails/customizations/speedometer" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_speedometer_on" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } "Speedo_Disabled" { "controlName" "EditablePanel" "fieldName" "Speedo_Disabled" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "80" "tall" "40" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "BGColor_Override" "104 101 100 255" "pin_to_sibling" "Speedo_Enabled" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Style_Name" { "controlName" "CExLabel" "fieldName" "Style_Name" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "1" "wide" "f0" "tall" "12" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "FontStorePrice" "labelText" "Disabled" "textAlignment" "center" "FGColor" "Gray" "paintBackground" "1" "PaintBackgroundType" "0" "BGColor_Override" "Black" } "Style_Image" { "controlName" "ImagePanel" "fieldName" "Style_Image" "xpos" "cs-0.5" "ypos" "cs-0.5-6" "zpos" "0" "wide" "60" "tall" "60" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "ScaleImage" "1" "proportionalToParent" "1" "Image" "replay/thumbnails/customizations/speedometer" } "Style_Disabled" { "controlName" "CExLabel" "fieldName" "Style_Disabled" "xpos" "cs-0.5" "ypos" "cs-0.5-8" "zpos" "3" "wide" "72" "tall" "45" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "font" "MediumIcons" "labelText" "(" "textAlignment" "center" "FGColor" "LightRed" } "Style_Button" { "controlName" "CExButton" "fieldName" "Style_Button" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "font" "" "command" "engine hud_speedometer_clear" "labelText" "" "sound_depressed" "UI/buttonclick.wav" "proportionalToParent" "1" "actionsignallevel" "6" "paintBackground" "0" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" } } } //=============================================================================================================== // KILLFEED ROWS //=============================================================================================================== "Killfeed_Rows_Icon" { "controlName" "CExLabel" "fieldName" "Killfeed_Rows_Icon" "xpos" "220" "ypos" "245" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Q" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Killfeed_Rows_Label" { "controlName" "CExLabel" "fieldName" "Killfeed_Rows_Label" "xpos" "250" "ypos" "245" "zpos" "0" "wide" "f25" "tall" "27" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Killfeed Rows" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_6" { "controlName" "EditablePanel" "fieldName" "Separator_6" "xpos" "220" "ypos" "271" "zpos" "0" "wide" "200" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } "Killfeed_Rows_Style" { "controlName" "EditablePanel" "fieldName" "Killfeed_Rows_Style" "xpos" "220" "ypos" "276" "zpos" "20" "wide" "250" "tall" "40" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Killfeed_Rows_0" { "controlName" "CExButton" "fieldName" "Killfeed_Rows_0" "xpos" "0" "ypos" "0" "zpos" "20" "wide" "30" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "0" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_killfeed_rows_0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" } "Killfeed_Rows_1" { "controlName" "CExButton" "fieldName" "Killfeed_Rows_1" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "30" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "1" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_killfeed_rows_1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Killfeed_Rows_0" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Killfeed_Rows_2" { "controlName" "CExButton" "fieldName" "Killfeed_Rows_2" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "30" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "2" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_killfeed_rows_2" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Killfeed_Rows_1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Killfeed_Rows_3" { "controlName" "CExButton" "fieldName" "Killfeed_Rows_3" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "30" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "3" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_killfeed_rows_3" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Killfeed_Rows_2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Killfeed_Rows_4" { "controlName" "CExButton" "fieldName" "Killfeed_Rows_4" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "30" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "4" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_killfeed_rows_4" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Killfeed_Rows_3" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Killfeed_Rows_5" { "controlName" "CExButton" "fieldName" "Killfeed_Rows_5" "xpos" "0" "ypos" "1" "zpos" "20" "wide" "30" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "5" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_killfeed_rows_5" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Killfeed_Rows_0" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Killfeed_Rows_6" { "controlName" "CExButton" "fieldName" "Killfeed_Rows_6" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "30" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "6" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_killfeed_rows_6" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Killfeed_Rows_5" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Killfeed_Rows_7" { "controlName" "CExButton" "fieldName" "Killfeed_Rows_7" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "30" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "7" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_killfeed_rows_7" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Killfeed_Rows_6" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Killfeed_Rows_8" { "controlName" "CExButton" "fieldName" "Killfeed_Rows_8" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "30" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "8" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_killfeed_rows_8" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Killfeed_Rows_7" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Killfeed_Rows_9" { "controlName" "CExButton" "fieldName" "Killfeed_Rows_9" "xpos" "1" "ypos" "0" "zpos" "20" "wide" "30" "tall" "19" "visible" "1" "enabled" "1" "proportionalToParent" "1" "actionsignallevel" "5" "labelText" "9" "font" "HudFontSmallestBold" "textAlignment" "center" "command" "engine hud_killfeed_rows_9" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintBackground" "1" "paintBorder" "1" "border_default" "NoBorder" "border_armed" "DarkBorderThick" "DefaultBGColor_Override" "Black" "ArmedBGColor_Override" "Black" "DepressedBGColor_Override" "Black" "pin_to_sibling" "Killfeed_Rows_8" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } //========================================================================================================== // SCOREBOARD //========================================================================================================== "Scoreboards_Icon" { "controlName" "CExLabel" "fieldName" "Scoreboards_Icon" "xpos" "0" "ypos" "326" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "J" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Scoreboard_Label" { "controlName" "CExLabel" "fieldName" "Scoreboard_Label" "xpos" "30" "ypos" "326" "zpos" "0" "wide" "f25" "tall" "27" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Scoreboard" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" } "Separator_7" { "controlName" "EditablePanel" "fieldName" "Separator_7" "xpos" "3" "ypos" "352" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" } "Scoreboard_Styles" { "controlName" "EditablePanel" "fieldName" "Scoreboard_Styles" "xpos" "4" "ypos" "360" "zpos" "20" "wide" "150" "tall" "55" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Style_Label" { "controlName" "CExLabel" "fieldName" "Style_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Player List" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f0" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Style_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Scoreboard_Normal" { "controlName" "CExButton" "fieldName" "Scoreboard_Normal" "xpos" "-2" "ypos" "5" "zpos" "20" "wide" "65" "tall" "22" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "font" "HudFontSmallestBold" "labelText" "16 vs 16" "textAlignment" "center" "command" "engine hud_scoreboard_style_clear" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "pin_to_sibling" "Separator" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Scoreboard_Large" { "controlName" "CExButton" "fieldName" "Scoreboard_Large" "xpos" "5" "ypos" "0" "zpos" "20" "wide" "65" "tall" "22" "visible" "1" "enabled" "1" "actionsignallevel" "5" "proportionalToParent" "1" "font" "HudFontSmallestBold" "labelText" "32 vs 32" "textAlignment" "center" "command" "engine hud_scoreboard_large" "sound_depressed" "UI/buttonclick.wav" "paintBackground" "1" "pin_to_sibling" "Scoreboard_Normal" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } "Scoreboard_Settings" { "controlName" "EditablePanel" "fieldName" "Scoreboard_Settings" "xpos" "160" "ypos" "360" "zpos" "20" "wide" "f5" "tall" "55" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Settings_Label" { "controlName" "CExLabel" "fieldName" "Settings_Label" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "15" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Settings" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" } "Separator" { "controlName" "EditablePanel" "fieldName" "Separator" "xpos" "2" "ypos" "1" "zpos" "0" "wide" "f15" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Settings_Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Scoreboard_Mouse_Input" { "controlName" "EditablePanel" "fieldName" "Scoreboard_Mouse_Input" "xpos" "-2" "ypos" "4" "zpos" "1" "wide" "130" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Separator" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle tf_scoreboard_mouse_mode 0 2" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Mouse Input" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "tf_scoreboard_mouse_mode" "mouseinputenabled" "0" } } "Scoreboard_Ping_Style" { "controlName" "EditablePanel" "fieldName" "Scoreboard_Ping_Style" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "130" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Scoreboard_Mouse_Input" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle tf_scoreboard_ping_as_text" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Ping As Text" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "tf_scoreboard_ping_as_text" "mouseinputenabled" "0" } } } } } } } ================================================ FILE: resource/ui/customizations/#customization_menu/hud_customization_quick_settings.res ================================================ "resource/ui/customizations/#customization_menu/hud_customization_quick_settings.res" { "SafeMode" { "Customizations_Panel" { "HUD_Quick_Settings_Selection" { "controlName" "CScrollableList" "fieldName" "HUD_Quick_Settings_Selection" "xpos" "cs-0.5+5" "ypos" "cs-0.5+5" "zpos" "0" "wide" "f5" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "paintBackground" "0" "paintBackgroundType" "0" "BGColor_Override" "Black" "Scrollbar" { "xpos" "rs1+1" "ypos" "0" "wide" "6" "tall" "f0" "zpos" "1000" "proportionalToParent" "1" "Slider" { "PaintBackgroundType" "0" "FGColor_Override" "Gray" } "nobuttons" "1" } "Title_Icon" { "controlName" "CExLabel" "fieldName" "Title_Icon" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "v" "font" "MediumIcons" "textAlignment" "center" "FGColor" "Gray" } "Title" { "controlName" "CExLabel" "fieldName" "Title" "xpos" "5" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "25" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "QUICK SETTINGS" "font" "HudFontMediumBold" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Title_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator_1" { "controlName" "EditablePanel" "fieldName" "Separator_1" "xpos" "0" "ypos" "3" "zpos" "0" "wide" "f40" "tall" "2" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Title_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Settings" { "controlName" "EditablePanel" "fieldName" "Settings" "xpos" "0" "ypos" "8" "zpos" "20" "wide" "f0" "tall" "310" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Separator_1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" //======================================================================================== // GAME CHAT //======================================================================================== "Toggle_Chat" { "controlName" "EditablePanel" "fieldName" "Toggle_Chat" "xpos" "0" "ypos" "0" "zpos" "20" "wide" "150" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle hud_saytext_time 0 12" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "In-game Chat" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "hud_saytext_time" "mouseinputenabled" "0" } } //======================================================================================== // NETGRAPH //======================================================================================== "Toggle_Netgraph" { "controlName" "EditablePanel" "fieldName" "Toggle_Netgraph" "xpos" "10" "ypos" "0" "zpos" "20" "wide" "150" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Toggle_Chat" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle net_graph 0 1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Net-Graph" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "net_graph" "mouseinputenabled" "0" } } //======================================================================================== // FPS COUNTER //======================================================================================== "Toggle_ShowFPS" { "controlName" "EditablePanel" "fieldName" "Toggle_ShowFPS" "xpos" "10" "ypos" "0" "zpos" "20" "wide" "150" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Toggle_NetGraph" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle cl_showfps" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "FPS Counter" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "cl_showfps" "mouseinputenabled" "0" } } //======================================================================================== // CLOSED CAPTIONS //======================================================================================== "Toggle_Captions" { "controlName" "EditablePanel" "fieldName" "Toggle_Captions" "xpos" "0" "ypos" "5" "zpos" "20" "wide" "150" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Toggle_Chat" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle closecaption" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Captions_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Captions_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Closed Captions" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "closecaption" "mouseinputenabled" "0" } } //======================================================================================== // POSITION GRAPH //======================================================================================== "Toggle_ShowPos" { "controlName" "EditablePanel" "fieldName" "Toggle_ShowPos" "xpos" "10" "ypos" "0" "zpos" "20" "wide" "150" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Toggle_Captions" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle cl_showpos" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Position Graph" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "cl_showpos" "mouseinputenabled" "0" } } //======================================================================================== // SERVER TIME //======================================================================================== "Toggle_Server_Timer" { "controlName" "EditablePanel" "fieldName" "Toggle_Server_Timer" "xpos" "10" "ypos" "0" "zpos" "20" "wide" "150" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Toggle_ShowPos" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle tf_hud_show_servertimelimit" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Server Time" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "tf_hud_show_servertimelimit" "mouseinputenabled" "0" } } //======================================================================================== // MATCH HUD //======================================================================================== "Toggle_Match_HUD" { "controlName" "EditablePanel" "fieldName" "Toggle_Match_HUD" "xpos" "0" "ypos" "5" "zpos" "20" "wide" "150" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Toggle_Captions" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle tf_use_match_hud" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Match HUD" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "tf_use_match_hud" "mouseinputenabled" "0" } } //======================================================================================== // CONTRACTS //======================================================================================== "Toggle_Contracts" { "controlName" "EditablePanel" "fieldName" "Toggle_Contracts" "xpos" "10" "ypos" "0" "zpos" "20" "wide" "150" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Toggle_Match_HUD" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle tf_contract_progress_show" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Active Contracts" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "tf_contract_progress_show" "mouseinputenabled" "0" } } //======================================================================================== // STREAMER MODE //======================================================================================== "Streamer_Mode_Icon" { "controlName" "CExLabel" "fieldName" "Streamer_Mode_Icon" "xpos" "0" "ypos" "10" "zpos" "0" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "S" "font" "MediumSmallIcons" "textAlignment" "center" "FGColor" "Gray" "pin_to_sibling" "Toggle_Match_HUD" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Streamer_Mode_Title" { "controlName" "CExLabel" "fieldName" "Streamer_Mode_Title" "xpos" "3" "ypos" "0" "zpos" "0" "wide" "f25" "tall" "20" "visible" "1" "enabled" "1" "proportionalToParent" "1" "labelText" "Streamer Mode" "font" "HudFontSmallBold" "textAlignment" "west" "FGColor" "Gray" "pin_to_sibling" "Streamer_Mode_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "Separator_3" { "controlName" "EditablePanel" "fieldName" "Separator_3" "xpos" "0" "ypos" "5" "zpos" "0" "wide" "f40" "tall" "1" "visible" "1" "enabled" "1" "proportionalToParent" "1" "paintBackground" "1" "PaintBackgroundType" "3" "BGColor_Override" "Gray" "pin_to_sibling" "Streamer_Mode_Icon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Streamer_Mode_Explanation" { "controlName" "CExLabel" "fieldName" "Streamer_Mode_Explanation" "xpos" "-3" "ypos" "5" "zpos" "1" "wide" "f30" "tall" "33" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "proportionalToParent" "1" "AllCaps" "0" "Wrap" "1" "CenterWrap" "0" "font" "HudFontSmallest" "labeltext" "Streamer mode aims to remove all the information that could be used to track the server you're playing in such as server names, player names, avatars and more in order to reduce the chance of stream snipes and DDoS." "textAlignment" "North-West" "FGColor" "Gray" "pin_to_sibling" "Separator_3" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "Streamer_Mode_Toggle" { "controlName" "EditablePanel" "fieldName" "Streamer_Mode_Toggle" "xpos" "3" "ypos" "5" "zpos" "20" "wide" "150" "tall" "22" "visible" "1" "enabled" "1" "proportionalToParent" "1" "pin_to_sibling" "Streamer_Mode_Explanation" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "Toggle_Button" { "controlName" "CExButton" "fieldName" "Toggle_Button" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "20" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "actionsignallevel" "6" "proportionalToParent" "1" "paintbackground" "0" "labelText" "" "textAlignment" "west" "command" "engine toggle cl_hud_minmode" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Setting_Checkbox" { "controlName" "CvarToggleCheckButton" "fieldName" "Setting_Checkbox" "xpos" "-2" "ypos" "cs-0.5" "zpos" "21" "wide" "f0" "tall" "f0" "proportionalToParent" "1" "font" "ItemFontNameLarge" "labelText" "Streamer Mode" "textAlignment" "west" "smallcheckimage" "0" "button_activation_type" "1" "cvar_name" "cl_hud_minmode" "mouseinputenabled" "0" } } } } } } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_black.res ================================================ "Scheme" { "Colors" { "LowAmmo" "0 0 0 255" "LowAmmoShadow" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_blue.res ================================================ "Scheme" { "Colors" { "LowAmmo" "0 170 255 255" "LowAmmoShadow" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_cyan.res ================================================ "Scheme" { "Colors" { "LowAmmo" "0 195 200 255" "LowAmmoShadow" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_forest.res ================================================ "Scheme" { "Colors" { "LowAmmo" "0 135 55 255" "LowAmmoShadow" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_green.res ================================================ "Scheme" { "Colors" { "LowAmmo" "0 185 0 255" "LowAmmoShadow" "0 185 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_grey.res ================================================ "Scheme" { "Colors" { "LowAmmo" "150 152 154 255" "LowAmmoShadow" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_magenta.res ================================================ "Scheme" { "Colors" { "LowAmmo" "255 0 127 255" "LowAmmoShadow" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_maroon.res ================================================ "Scheme" { "Colors" { "LowAmmo" "150 50 50 255" "LowAmmoShadow" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_navy.res ================================================ "Scheme" { "Colors" { "LowAmmo" "90 120 200 255" "LowAmmoShadow" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_olive.res ================================================ "Scheme" { "Colors" { "LowAmmo" "180 200 100 255" "LowAmmoShadow" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_orange.res ================================================ "Scheme" { "Colors" { "LowAmmo" "255 155 75 255" "LowAmmoShadow" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_pink.res ================================================ "Scheme" { "Colors" { "LowAmmo" "250 185 240 255" "LowAmmoShadow" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_purple.res ================================================ "Scheme" { "Colors" { "LowAmmo" "150 50 235 255" "LowAmmoShadow" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_red.res ================================================ "Scheme" { "Colors" { "LowAmmo" "255 0 0 255" "LowAmmoShadow" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_salmon.res ================================================ "Scheme" { "Colors" { "LowAmmo" "250 125 115 255" "LowAmmoShadow" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_tan.res ================================================ "Scheme" { "Colors" { "LowAmmo" "235 226 202 255" "LowAmmoShadow" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_teal.res ================================================ "Scheme" { "Colors" { "LowAmmo" "100 180 170 255" "LowAmmoShadow" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_violet.res ================================================ "Scheme" { "Colors" { "LowAmmo" "190 150 210 255" "LowAmmoShadow" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_white.res ================================================ "Scheme" { "Colors" { "LowAmmo" "255 255 255 255" "LowAmmoShadow" "255 255 255 255" } } ================================================ FILE: resource/ui/customizations/colors/ammo_low/ammo_low_yellow.res ================================================ "Scheme" { "Colors" { "LowAmmo" "255 190 0 255" "LowAmmoShadow" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/color_customization.res ================================================ #base "../../../../../../cfg/flawhud/hud_color_team_red.txt" #base "../../../../../../cfg/flawhud/hud_color_team_blu.txt" #base "../../../../../../cfg/flawhud/hud_color_neutral.txt" #base "../../../../../../cfg/flawhud/hud_color_buff.txt" #base "../../../../../../cfg/flawhud/hud_color_hurt.txt" #base "../../../../../../cfg/flawhud/hud_color_ammo_low.txt" #base "../../../../../../cfg/flawhud/hud_color_uber.txt" #base "../../../../../../cfg/flawhud/hud_color_uber_full.txt" #base "../../../../../../cfg/flawhud/hud_color_healed.txt" #base "../../../../../../cfg/flawhud/hud_color_damage_last.txt" #base "../../../../../../cfg/flawhud/hud_color_crosshair.txt" #base "../../../../../../cfg/flawhud/hud_color_crosshair_flash.txt" ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_black.res ================================================ "Scheme" { "Colors" { "TargetHealth" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_blue.res ================================================ "Scheme" { "Colors" { "TargetHealth" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_cyan.res ================================================ "Scheme" { "Colors" { "TargetHealth" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_forest.res ================================================ "Scheme" { "Colors" { "TargetHealth" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_green.res ================================================ "Scheme" { "Colors" { "TargetHealth" "0 185 0 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_grey.res ================================================ "Scheme" { "Colors" { "TargetHealth" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_magenta.res ================================================ "Scheme" { "Colors" { "TargetHealth" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_maroon.res ================================================ "Scheme" { "Colors" { "TargetHealth" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_navy.res ================================================ "Scheme" { "Colors" { "TargetHealth" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_olive.res ================================================ "Scheme" { "Colors" { "TargetHealth" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_orange.res ================================================ "Scheme" { "Colors" { "TargetHealth" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_pink.res ================================================ "Scheme" { "Colors" { "TargetHealth" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_purple.res ================================================ "Scheme" { "Colors" { "TargetHealth" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_red.res ================================================ "Scheme" { "Colors" { "TargetHealth" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_salmon.res ================================================ "Scheme" { "Colors" { "TargetHealth" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_tan.res ================================================ "Scheme" { "Colors" { "TargetHealth" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_teal.res ================================================ "Scheme" { "Colors" { "TargetHealth" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_violet.res ================================================ "Scheme" { "Colors" { "TargetHealth" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_white.res ================================================ "Scheme" { "Colors" { "TargetHealth" "255 255 255 255" } } ================================================ FILE: resource/ui/customizations/colors/color_healed/color_healed_yellow.res ================================================ "Scheme" { "Colors" { "TargetHealth" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_black.res ================================================ "Scheme" { "Colors" { "TanLight" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_blue.res ================================================ "Scheme" { "Colors" { "TanLight" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_cyan.res ================================================ "Scheme" { "Colors" { "TanLight" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_forest.res ================================================ "Scheme" { "Colors" { "TanLight" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_green.res ================================================ "Scheme" { "Colors" { "TanLight" "0 185 0 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_grey.res ================================================ "Scheme" { "Colors" { "TanLight" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_magenta.res ================================================ "Scheme" { "Colors" { "TanLight" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_maroon.res ================================================ "Scheme" { "Colors" { "TanLight" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_navy.res ================================================ "Scheme" { "Colors" { "TanLight" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_olive.res ================================================ "Scheme" { "Colors" { "TanLight" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_orange.res ================================================ "Scheme" { "Colors" { "TanLight" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_pink.res ================================================ "Scheme" { "Colors" { "TanLight" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_purple.res ================================================ "Scheme" { "Colors" { "TanLight" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_red.res ================================================ "Scheme" { "Colors" { "TanLight" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_salmon.res ================================================ "Scheme" { "Colors" { "TanLight" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_tan.res ================================================ "Scheme" { "Colors" { "TanLight" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_teal.res ================================================ "Scheme" { "Colors" { "TanLight" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_violet.res ================================================ "Scheme" { "Colors" { "TanLight" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_white.res ================================================ "Scheme" { "Colors" { "TanLight" "255 255 255 255" } } ================================================ FILE: resource/ui/customizations/colors/color_neutral/color_neutral_yellow.res ================================================ "Scheme" { "Colors" { "TanLight" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_black.res ================================================ "Scheme" { "Colors" { "Crosshair" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_blue.res ================================================ "Scheme" { "Colors" { "Crosshair" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_cyan.res ================================================ "Scheme" { "Colors" { "Crosshair" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_forest.res ================================================ "Scheme" { "Colors" { "Crosshair" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_green.res ================================================ "Scheme" { "Colors" { "Crosshair" "0 215 0 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_grey.res ================================================ "Scheme" { "Colors" { "Crosshair" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_magenta.res ================================================ "Scheme" { "Colors" { "Crosshair" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_maroon.res ================================================ "Scheme" { "Colors" { "Crosshair" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_navy.res ================================================ "Scheme" { "Colors" { "Crosshair" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_olive.res ================================================ "Scheme" { "Colors" { "Crosshair" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_orange.res ================================================ "Scheme" { "Colors" { "Crosshair" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_pink.res ================================================ "Scheme" { "Colors" { "Crosshair" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_purple.res ================================================ "Scheme" { "Colors" { "Crosshair" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_red.res ================================================ "Scheme" { "Colors" { "Crosshair" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_salmon.res ================================================ "Scheme" { "Colors" { "Crosshair" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_tan.res ================================================ "Scheme" { "Colors" { "Crosshair" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_teal.res ================================================ "Scheme" { "Colors" { "Crosshair" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_violet.res ================================================ "Scheme" { "Colors" { "Crosshair" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_white.res ================================================ "Scheme" { "Colors" { "Crosshair" "255 255 255 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair/crosshair_yellow.res ================================================ "Scheme" { "Colors" { "Crosshair" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_black.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_blue.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_cyan.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_forest.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_green.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "0 215 0 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_grey.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_magenta.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_maroon.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_navy.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_olive.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_orange.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_pink.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_purple.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_red.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_salmon.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_tan.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_teal.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_violet.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_white.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "255 255 255 255" } } ================================================ FILE: resource/ui/customizations/colors/crosshair_flash/crosshair_flash_yellow.res ================================================ "Scheme" { "Colors" { "CrosshairDamage" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_black.res ================================================ "Scheme" { "Colors" { "TargetDamage" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_blue.res ================================================ "Scheme" { "Colors" { "TargetDamage" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_cyan.res ================================================ "Scheme" { "Colors" { "TargetDamage" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_forest.res ================================================ "Scheme" { "Colors" { "TargetDamage" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_green.res ================================================ "Scheme" { "Colors" { "TargetDamage" "0 215 0 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_grey.res ================================================ "Scheme" { "Colors" { "TargetDamage" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_magenta.res ================================================ "Scheme" { "Colors" { "TargetDamage" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_maroon.res ================================================ "Scheme" { "Colors" { "TargetDamage" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_navy.res ================================================ "Scheme" { "Colors" { "TargetDamage" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_olive.res ================================================ "Scheme" { "Colors" { "TargetDamage" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_orange.res ================================================ "Scheme" { "Colors" { "TargetDamage" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_pink.res ================================================ "Scheme" { "Colors" { "TargetDamage" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_purple.res ================================================ "Scheme" { "Colors" { "TargetDamage" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_red.res ================================================ "Scheme" { "Colors" { "TargetDamage" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_salmon.res ================================================ "Scheme" { "Colors" { "TargetDamage" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_tan.res ================================================ "Scheme" { "Colors" { "TargetDamage" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_teal.res ================================================ "Scheme" { "Colors" { "TargetDamage" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_violet.res ================================================ "Scheme" { "Colors" { "TargetDamage" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_white.res ================================================ "Scheme" { "Colors" { "TargetDamage" "255 255 255 255" } } ================================================ FILE: resource/ui/customizations/colors/damage_last/damage_last_yellow.res ================================================ "Scheme" { "Colors" { "TargetDamage" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_black.res ================================================ "Scheme" { "Colors" { "Overheal" "0 0 0 255" "OverhealShadow" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_blue.res ================================================ "Scheme" { "Colors" { "Overheal" "0 170 255 255" "OverhealShadow" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_cyan.res ================================================ "Scheme" { "Colors" { "Overheal" "0 195 200 255" "OverhealShadow" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_forest.res ================================================ "Scheme" { "Colors" { "Overheal" "0 135 55 255" "OverhealShadow" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_green.res ================================================ "Scheme" { "Colors" { "Overheal" "0 185 0 255" "OverhealShadow" "0 185 0 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_grey.res ================================================ "Scheme" { "Colors" { "Overheal" "150 152 154 255" "OverhealShadow" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_magenta.res ================================================ "Scheme" { "Colors" { "Overheal" "255 0 127 255" "OverhealShadow" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_maroon.res ================================================ "Scheme" { "Colors" { "Overheal" "150 50 50 255" "OverhealShadow" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_navy.res ================================================ "Scheme" { "Colors" { "Overheal" "90 120 200 255" "OverhealShadow" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_olive.res ================================================ "Scheme" { "Colors" { "Overheal" "180 200 100 255" "OverhealShadow" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_orange.res ================================================ "Scheme" { "Colors" { "Overheal" "255 155 75 255" "OverhealShadow" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_pink.res ================================================ "Scheme" { "Colors" { "Overheal" "250 185 240 255" "OverhealShadow" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_purple.res ================================================ "Scheme" { "Colors" { "Overheal" "150 50 235 255" "OverhealShadow" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_red.res ================================================ "Scheme" { "Colors" { "Overheal" "255 0 0 255" "OverhealShadow" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_salmon.res ================================================ "Scheme" { "Colors" { "Overheal" "250 125 115 255" "OverhealShadow" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_tan.res ================================================ "Scheme" { "Colors" { "Overheal" "235 226 202 255" "OverhealShadow" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_teal.res ================================================ "Scheme" { "Colors" { "Overheal" "100 180 170 255" "OverhealShadow" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_violet.res ================================================ "Scheme" { "Colors" { "Overheal" "190 150 210 255" "OverhealShadow" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_white.res ================================================ "Scheme" { "Colors" { "Overheal" "255 255 255 255" "OverhealShadow" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/health_buff/health_buff_yellow.res ================================================ "Scheme" { "Colors" { "Overheal" "255 190 0 255" "OverhealShadow" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_black.res ================================================ "Scheme" { "Colors" { "LowHealth" "0 0 0 255" "LowHealthShadow" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_blue.res ================================================ "Scheme" { "Colors" { "LowHealth" "0 170 255 255" "LowHealthShadow" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_cyan.res ================================================ "Scheme" { "Colors" { "LowHealth" "0 195 200 255" "LowHealthShadow" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_forest.res ================================================ "Scheme" { "Colors" { "LowHealth" "0 135 55 255" "LowHealthShadow" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_green.res ================================================ "Scheme" { "Colors" { "LowHealth" "0 185 0 255" "LowHealthShadow" "0 185 0 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_grey.res ================================================ "Scheme" { "Colors" { "LowHealth" "150 152 154 255" "LowHealthShadow" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_magenta.res ================================================ "Scheme" { "Colors" { "LowHealth" "255 0 127 255" "LowHealthShadow" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_maroon.res ================================================ "Scheme" { "Colors" { "LowHealth" "150 50 50 255" "LowHealthShadow" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_navy.res ================================================ "Scheme" { "Colors" { "LowHealth" "90 120 200 255" "LowHealthShadow" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_olive.res ================================================ "Scheme" { "Colors" { "LowHealth" "180 200 100 255" "LowHealthShadow" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_orange.res ================================================ "Scheme" { "Colors" { "LowHealth" "255 155 75 255" "LowHealthShadow" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_pink.res ================================================ "Scheme" { "Colors" { "LowHealth" "250 185 240 255" "LowHealthShadow" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_purple.res ================================================ "Scheme" { "Colors" { "LowHealth" "150 50 235 255" "LowHealthShadow" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_red.res ================================================ "Scheme" { "Colors" { "LowHealth" "255 0 0 255" "LowHealthShadow" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_salmon.res ================================================ "Scheme" { "Colors" { "LowHealth" "250 125 115 255" "LowHealthShadow" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_tan.res ================================================ "Scheme" { "Colors" { "LowHealth" "235 226 202 255" "LowHealthShadow" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_teal.res ================================================ "Scheme" { "Colors" { "LowHealth" "100 180 170 255" "LowHealthShadow" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_violet.res ================================================ "Scheme" { "Colors" { "LowHealth" "190 150 210 255" "LowHealthShadow" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_white.res ================================================ "Scheme" { "Colors" { "LowHealth" "255 255 255 255" "LowHealthShadow" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/health_hurt/health_hurt_yellow.res ================================================ "Scheme" { "Colors" { "LowHealth" "255 190 0 255" "LowHealthShadow" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_black.res ================================================ "Scheme" { "Colors" { "BlueTeam" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_blue.res ================================================ "Scheme" { "Colors" { "BlueTeam" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_cyan.res ================================================ "Scheme" { "Colors" { "BlueTeam" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_forest.res ================================================ "Scheme" { "Colors" { "BlueTeam" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_green.res ================================================ "Scheme" { "Colors" { "BlueTeam" "0 185 0 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_grey.res ================================================ "Scheme" { "Colors" { "BlueTeam" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_magenta.res ================================================ "Scheme" { "Colors" { "BlueTeam" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_maroon.res ================================================ "Scheme" { "Colors" { "BlueTeam" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_navy.res ================================================ "Scheme" { "Colors" { "BlueTeam" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_olive.res ================================================ "Scheme" { "Colors" { "BlueTeam" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_orange.res ================================================ "Scheme" { "Colors" { "BlueTeam" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_pink.res ================================================ "Scheme" { "Colors" { "BlueTeam" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_purple.res ================================================ "Scheme" { "Colors" { "BlueTeam" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_red.res ================================================ "Scheme" { "Colors" { "BlueTeam" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_salmon.res ================================================ "Scheme" { "Colors" { "BlueTeam" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_tan.res ================================================ "Scheme" { "Colors" { "BlueTeam" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_teal.res ================================================ "Scheme" { "Colors" { "BlueTeam" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_violet.res ================================================ "Scheme" { "Colors" { "BlueTeam" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_white.res ================================================ "Scheme" { "Colors" { "BlueTeam" "255 255 255 255" } } ================================================ FILE: resource/ui/customizations/colors/team_blu/team_blu_yellow.res ================================================ "Scheme" { "Colors" { "BlueTeam" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_black.res ================================================ "Scheme" { "Colors" { "RedTeam" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_blue.res ================================================ "Scheme" { "Colors" { "RedTeam" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_cyan.res ================================================ "Scheme" { "Colors" { "RedTeam" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_forest.res ================================================ "Scheme" { "Colors" { "RedTeam" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_green.res ================================================ "Scheme" { "Colors" { "RedTeam" "0 185 0 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_grey.res ================================================ "Scheme" { "Colors" { "RedTeam" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_magenta.res ================================================ "Scheme" { "Colors" { "RedTeam" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_maroon.res ================================================ "Scheme" { "Colors" { "RedTeam" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_navy.res ================================================ "Scheme" { "Colors" { "RedTeam" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_olive.res ================================================ "Scheme" { "Colors" { "RedTeam" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_orange.res ================================================ "Scheme" { "Colors" { "RedTeam" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_pink.res ================================================ "Scheme" { "Colors" { "RedTeam" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_purple.res ================================================ "Scheme" { "Colors" { "RedTeam" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_red.res ================================================ "Scheme" { "Colors" { "RedTeam" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_salmon.res ================================================ "Scheme" { "Colors" { "RedTeam" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_tan.res ================================================ "Scheme" { "Colors" { "RedTeam" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_teal.res ================================================ "Scheme" { "Colors" { "RedTeam" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_violet.res ================================================ "Scheme" { "Colors" { "RedTeam" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_white.res ================================================ "Scheme" { "Colors" { "RedTeam" "255 255 255 255" } } ================================================ FILE: resource/ui/customizations/colors/team_red/team_red_yellow.res ================================================ "Scheme" { "Colors" { "RedTeam" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_black.res ================================================ "Scheme" { "Colors" { "Ubercharge" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_blue.res ================================================ "Scheme" { "Colors" { "Ubercharge" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_cyan.res ================================================ "Scheme" { "Colors" { "Ubercharge" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_forest.res ================================================ "Scheme" { "Colors" { "Ubercharge" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_green.res ================================================ "Scheme" { "Colors" { "Ubercharge" "0 185 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_grey.res ================================================ "Scheme" { "Colors" { "Ubercharge" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_magenta.res ================================================ "Scheme" { "Colors" { "Ubercharge" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_maroon.res ================================================ "Scheme" { "Colors" { "Ubercharge" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_navy.res ================================================ "Scheme" { "Colors" { "Ubercharge" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_olive.res ================================================ "Scheme" { "Colors" { "Ubercharge" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_orange.res ================================================ "Scheme" { "Colors" { "Ubercharge" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_pink.res ================================================ "Scheme" { "Colors" { "Ubercharge" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_purple.res ================================================ "Scheme" { "Colors" { "Ubercharge" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_red.res ================================================ "Scheme" { "Colors" { "Ubercharge" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_salmon.res ================================================ "Scheme" { "Colors" { "Ubercharge" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_tan.res ================================================ "Scheme" { "Colors" { "Ubercharge" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_teal.res ================================================ "Scheme" { "Colors" { "Ubercharge" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_violet.res ================================================ "Scheme" { "Colors" { "Ubercharge" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_white.res ================================================ "Scheme" { "Colors" { "Ubercharge" "255 255 255 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge/uber_yellow.res ================================================ "Scheme" { "Colors" { "Ubercharge" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_black.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "0 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_blue.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "0 170 255 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_cyan.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "0 195 200 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_forest.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "0 135 55 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_green.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "0 185 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_grey.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "150 152 154 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_magenta.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "255 0 127 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_maroon.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "150 50 50 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_navy.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "90 120 200 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_olive.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "180 200 100 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_orange.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "255 155 75 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_pink.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "250 185 240 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_purple.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "150 50 235 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_red.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "255 0 0 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_salmon.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "250 125 115 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_tan.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "235 226 202 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_teal.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "100 180 170 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_violet.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "190 150 210 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_white.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "255 255 255 255" } } ================================================ FILE: resource/ui/customizations/colors/ubercharge_full/uber_full_yellow.res ================================================ "Scheme" { "Colors" { "UberChargePulse" "255 190 0 255" } } ================================================ FILE: resource/ui/customizations/crosshair/crosshair.res ================================================ #base "crosshair_visibility.res" #base "crosshair_style.res" #base "crosshair_size.res" #base "crosshair_base.res" ================================================ FILE: resource/ui/customizations/crosshair/crosshair_base.res ================================================ "resource/ui/customizations/crosshair/crosshair_base.res" { //-------------------------------------------------------------- // CROSSHAIR //-------------------------------------------------------------- // Set visible to 1 to enable. // Change xpos and ypos values if not perfectly centered. // Change labelText to the corresponding crosshair in TF2Crosshairs.png. //-------------------------------------------------------------- "CustomCrosshair" { "visible" "0" "enabled" "1" "labelText" "<" "controlName" "CExLabel" "fieldName" "CustomCrosshair" "zpos" "0" "xpos" "cs-0.5" "ypos" "cs-0.5" "wide" "f0" "tall" "f0" "font" "Size_18" "textAlignment" "center" "fgcolor" "Crosshair" } } ================================================ FILE: resource/ui/customizations/crosshair/crosshair_size.res ================================================ #base "../../../../../../cfg/flawhud/hud_crosshair_size.txt" ================================================ FILE: resource/ui/customizations/crosshair/crosshair_style.res ================================================ #base "../../../../../../cfg/flawhud/hud_crosshair_style.txt" ================================================ FILE: resource/ui/customizations/crosshair/crosshair_visibility.res ================================================ #base "../../../../../../cfg/flawhud/hud_crosshair_visibility.txt" ================================================ FILE: resource/ui/customizations/damage/damage_font_bold_small.res ================================================ "resource/ui/customizations/damage/damage_font_bold_small.res" { "CDamageAccountPanel" { "delta_item_font" "FontBold14Outline" "delta_item_font_big" "FontBold14Outline" } "DamageAccountValue" { "font" "FontBold22" } "DamageAccountValueShadow" { "xpos" "-2" "ypos" "-2" "font" "FontBold22" } } ================================================ FILE: resource/ui/customizations/damage/damage_font_thin_large.res ================================================ "resource/ui/customizations/damage/damage_font_thin_large.res" { "CDamageAccountPanel" { "delta_item_font" "FontRegular20" "delta_item_font_big" "FontRegular20" } "DamageAccountValue" { "font" "FontRegular20" } "DamageAccountValueShadow" { "xpos" "-1" "ypos" "-1" "font" "FontRegular20" } } ================================================ FILE: resource/ui/customizations/damage/damage_font_thin_small.res ================================================ "resource/ui/customizations/damage/damage_font_thin_small.res" { "CDamageAccountPanel" { "delta_item_font" "FontRegular14" "delta_item_font_big" "FontRegular14" } "DamageAccountValue" { "font" "FontRegular20" } "DamageAccountValueShadow" { "xpos" "-1" "ypos" "-1" "font" "FontRegular20" } } ================================================ FILE: resource/ui/customizations/disguise/hud_disguise_anim_off.res ================================================ "resource/ui/customizations/disguise/hud_disguise_anim_off.res" { "PlayerStatusSpyOutlineImage" { "Image" "replay/thumbnails/transparent" } } ================================================ FILE: resource/ui/customizations/health_ammo/ammo_no_box.res ================================================ "resource/ui/customizations/ammo/ammo_no_box.res" { "AmmoBG" { "bgcolor_override" "Transparent" } } ================================================ FILE: resource/ui/customizations/health_ammo/health_cross.res ================================================ "resource/ui/customizations/health/health_cross.res" { "PlayerStatusHealthImage" { "visible" "1" } "PlayerStatusHealthImageBG" { "xpos" "18" } "HealthBG" { "wide" "0" } "PlayerStatusHealthBonusImage" { "xpos" "23" } "PlayerHealthValue" { "font" "HudFontBiggerBold" } "PlayerHealthShadow" { "font" "HudFontBiggerBold" } } ================================================ FILE: resource/ui/customizations/health_ammo/health_no_box.res ================================================ "resource/ui/customizations/health/health_no_box.res" { "HealthBG" { "bgcolor_override" "Transparent" } } ================================================ FILE: resource/ui/customizations/killfeed/killfeed.res ================================================ #base "killfeed_rows.res" #base "killfeed_base.res" ================================================ FILE: resource/ui/customizations/killfeed/killfeed_base.res ================================================ "resource/hudlayout.res" { "HudDeathNotice" { "fieldName" "HudDeathNotice" "visible" "1" "enabled" "1" "xpos" "r635" "ypos" "25" "wide" "628" "tall" "468" "MaxDeathNotices" "5" "IconScale" "0.35" "LineHeight" "15" "LineSpacing" "0" "CornerRadius" "3" "RightJustify" "1" "TextFont" "FontRegular10" "TextFont_minmode" "" "TeamBlue" "HUDBlueTeamSolid" "TeamRed" "HUDRedTeamSolid" "IconColor" "White" "LocalPlayerColor" "Black" "BaseBackgroundColor" "32 32 32 255" "LocalBackgroundColor" "245 229 196 200" } } ================================================ FILE: resource/ui/customizations/killfeed/killfeed_rows.res ================================================ #base "../../../../../../cfg/flawhud/hud_killfeed.txt" ================================================ FILE: resource/ui/customizations/player_model/player_model_off.res ================================================ "resource/ui/customizations/player_model/player_model_off.res" { "PlayerStatusClassImage" { "wide" "0" } "classmodelpanel" { "wide" "0" } } ================================================ FILE: resource/ui/customizations/scoreboard/scoreboard_large.res ================================================ "resource/ui/customizations/scoreboard/scoreboard_large.res" { "BlueBG" { "ypos" "50" } "BluePlayerBG" { "tall" "270" } "RedPlayerBG" { "tall" "270" } "BluePlayerList" { "ypos" "c-138" "tall" "270" } "RedPlayerList" { "ypos" "c-138" "tall" "270" } } ================================================ FILE: resource/ui/customizations/speedometer/speedometer_on.res ================================================ "resource/ui/customizations/speedometer/speedometer.res" { "Speedometer" { "visible" "1" } } ================================================ FILE: resource/ui/customizations/transparent_viewmodels/transparent_viewmodels.res ================================================ "resource/ui/customizations/transparent_viewmodels/transparent_viewmodels.res" { //-------------------------------------------------------------- // TRANSPARENT VIEWMODEL //-------------------------------------------------------------- // Set visible/enabled to 1 to use. //-------------------------------------------------------------- "TransparentViewmodel" { "visible" "1" "enabled" "1" "controlName" "ImagePanel" "fieldName" "TransparentViewmodel" "zpos" "-100" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "image" "replay/thumbnails/transparent" "scaleImage" "1" } } ================================================ FILE: resource/ui/customizations/uber/ubercounter.res ================================================ "resource/ui/customizations/uber/ubercounter.res" { "UberCounterBG" { "ControlName" "Panel" "fieldName" "UberCounterBG" "xpos" "cs-0.5" "xpos_minmode" "c75" "ypos" "c66" "ypos_minmode" "c82" "zpos" "0" "wide" "40" "tall" "0" "visible" "1" "enabled" "1" "bgcolor_override" "TransparentLightBlack" } "UberCounter" { "ControlName" "Panel" "fieldName" "UberCounter" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "0" "tall" "2" "visible" "1" "enabled" "1" "pin_to_sibling" "UberCounterBG" } } ================================================ FILE: resource/ui/destroy_menu/base_active.res ================================================ "resource/ui/destroy_menu/base_active.res" { "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontRegular11" "xpos" "0" "ypos" "4" "zpos" "1" "wide" "55" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Object_Sentry" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ItemBackground" { "ControlName" "CIconPanel" "fieldName" "ItemBackground" "xpos" "4" "ypos" "14" "zpos" "0" "wide" "98" "tall" "105" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_item_bg_outline" "iconColor" "ProgressOffWhite" } "BuildingIcon" { "ControlName" "CIconPanel" "fieldName" "BuildingIcon" "xpos" "10" "ypos" "16" "zpos" "2" "wide" "34" "tall" "34" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "hud_menu_sentry_build" "iconColor" "White" } "DestroyIcon" { "ControlName" "CIconPanel" "fieldName" "DestroyIcon" "xpos" "10" "ypos" "19" "zpos" "1" "wide" "34" "tall" "34" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "ico_demolish" "iconColor" "255 0 0 255" } "NumberBg" { "ControlName" "CIconPanel" "fieldName" "NumberBg" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "White" } "NumberLabel" { "ControlName" "CExLabel" "fieldName" "NumberLabel" "font" "FontBold10" "fgcolor" "White" "xpos" "15" "ypos" "12" "zpos" "10" "wide" "55" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "2" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } } ================================================ FILE: resource/ui/destroy_menu/base_inactive.res ================================================ "resource/ui/destroy_menu/base_inactive.res" { "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontRegular11" "xpos" "0" "ypos" "4" "zpos" "1" "wide" "55" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Object_Sentry" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ItemBackground" { "ControlName" "CIconPanel" "fieldName" "ItemBackground" "xpos" "4" "ypos" "14" "zpos" "0" "wide" "98" "tall" "105" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_item_bg_outline" "iconColor" "Black" } "NotBuiltLabel" { "ControlName" "CExLabel" "fieldName" "NotBuiltLabel" "font" "FontRegular10" "xpos" "0" "ypos" "28" "zpos" "2" "wide" "55" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_NotBuilt" "textAlignment" "center" "fgcolor_override" "NeonRed" } "UnavailableLabel" { "ControlName" "CExLabel" "fieldName" "UnavailableLabel" "font" "FontRegular10" "xpos" "-10" "ypos" "30" "zpos" "2" "wide" "80" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "#Hud_Menu_Build_Unavailable" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "fgcolor_override" "NeonRed" } "NumberBg" { "ControlName" "CIconPanel" "fieldName" "NumberBg" "xpos" "41" "ypos" "99" "zpos" "0" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "White" } "NumberLabel" { "ControlName" "CExLabel" "fieldName" "NumberLabel" "font" "FontBold10" "fgcolor" "White" "xpos" "-28" "ypos" "-5" "zpos" "1" "wide" "100" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "2" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } } ================================================ FILE: resource/ui/destroy_menu/dispenser_active.res ================================================ #base "base_active.res" "resource/ui/destroy_menu/dispenser_active.res" { "ItemNameLabel" { "labelText" "#TF_Object_Dispenser" } "BuildingIcon" { "icon" "obj_status_dispenser" } } ================================================ FILE: resource/ui/destroy_menu/dispenser_inactive.res ================================================ #base "base_inactive.res" "resource/ui/build_menu/dispenser_inactive.res" { "ItemNameLabel" { "labelText" "#TF_Object_Dispenser" } } ================================================ FILE: resource/ui/destroy_menu/hudmenuengydestroy.res ================================================ "resource/ui/build_menu/hudmenuengydestroy.res" { "MainBackground" { "ControlName" "EditablePanel" "fieldName" "MainBackground" "xpos" "9999" } "DestroyIcon" { "ControlName" "CIconPanel" "fieldName" "DestroyIcon" "xpos" "9999" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "xpos" "0" "ypos" "1" "zpos" "2" "wide" "125" "tall" "22" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_menu_demolish_title" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "TitleLabelDropshadow" { "ControlName" "CExLabel" "fieldName" "TitleLabelDropshadow" "font" "FontBold22" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "2" "wide" "125" "tall" "22" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_menu_demolish_title" "textAlignment" "center" "dulltext" "1" "brighttext" "0" "pin_to_sibling" "TitleLabel" } "CancelLabel" { "ControlName" "CExLabel" "fieldName" "CancelLabel" "font" "HudFontSmallest" "xpos" "0" "ypos" "130" "zpos" "1" "wide" "125" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Build_Cancel" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "active_item_1" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "active_item_1" "xpos" "5" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "active_item_2" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "active_item_2" "xpos" "65" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "active_item_3" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "active_item_3" "xpos" "5" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "active_item_4" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "active_item_4" "xpos" "65" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "inactive_item_1" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "inactive_item_1" "xpos" "5" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "inactive_item_2" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "inactive_item_2" "xpos" "65" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "inactive_item_3" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "inactive_item_3" "xpos" "5" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "inactive_item_4" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "inactive_item_4" "xpos" "65" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "unavailable_item_1" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "unavailable_item_1" "xpos" "5" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "unavailable_item_2" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "unavailable_item_2" "xpos" "65" "ypos" "20" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "unavailable_item_3" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "unavailable_item_3" "xpos" "5" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "unavailable_item_4" { "ControlName" "CEngyDestroyMenuItem" "fieldName" "unavailable_item_4" "xpos" "65" "ypos" "70" "zpos" "1" "wide" "60" "tall" "55" "visible" "1" } "MenuBG" { "ControlName" "EditablePanel" "fieldName" "MenuBG" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "125" "tall" "110" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } } ================================================ FILE: resource/ui/destroy_menu/pipboy/dispenser_active.res ================================================ #base "../base_active.res" "resource/ui/destroy_menu/dispenser_active.res" { "ItemNameLabel" { "labelText" "#TF_Object_Dispenser" "fgcolor_override" "NeonGreen" } "BuildingIcon" { "icon" "obj_status_dispenser" } "DestroyIcon" { "iconColor" "NeonGreen" } "NumberLabel" { "fgcolor_override" "NeonGreen" } } ================================================ FILE: resource/ui/destroy_menu/pipboy/dispenser_inactive.res ================================================ #base "../base_inactive.res" "resource/ui/build_menu/dispenser_inactive.res" { "ItemNameLabel" { "labelText" "#TF_Object_Dispenser" "fgcolor_override" "NeonGreen" } "NumberLabel" { "fgcolor_override" "NeonRed" } } ================================================ FILE: resource/ui/destroy_menu/pipboy/hudmenuengydestroy.res ================================================ #base "../hudmenuengydestroy.res" "resource/ui/build_menu/hudmenuengydestroy.res" { "ItemBackground" { "ControlName" "CTFImagePanel" "fieldName" "ItemBackground" "xpos" "0" "ypos" "20" "zpos" "0" "wide" "125" "tall" "110" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "pipboy_overlay" "tileImage" "1" "drawcolor" "192 192 192 255" } "BackgroundEngineer" { "ControlName" "CTFImagePanel" "fieldName" "BackgroundEngineer" "xpos" "80" "ypos" "145" "zpos" "-1" "wide" "40" "tall" "40" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "pipboy_engineer" "tileImage" "0" "tileVertically" "0" } "DestroyIcon" { "iconColor" "NeonGreen" } "TitleLabel" { "fgcolor" "NeonGreen" } "CancelLabel" { "fgcolor" "NeonGreen" } } ================================================ FILE: resource/ui/destroy_menu/pipboy/sentry_active.res ================================================ #base "../base_active.res" "resource/ui/destroy_menu/sentry_active.res" { "ItemNameLabel" { "labelText" "#TF_Object_Sentry" "fgcolor_override" "NeonGreen" } "BuildingIcon" { "icon" "obj_status_sentrygun_1" } "DestroyIcon" { "iconColor" "NeonGreen" } "NumberLabel" { "fgcolor_override" "NeonGreen" } } ================================================ FILE: resource/ui/destroy_menu/pipboy/sentry_inactive.res ================================================ #base "../base_inactive.res" "resource/ui/destroy_menu/sentry_inactive.res" { "ItemNameLabel" { "labelText" "#TF_Object_Sentry" "fgcolor_override" "NeonGreen" } "NumberLabel" { "fgcolor_override" "NeonRed" } } ================================================ FILE: resource/ui/destroy_menu/pipboy/tele_entrance_active.res ================================================ #base "../base_active.res" "resource/ui/destroy_menu/tele_entrance_active.res" { "ItemNameLabel" { "labelText" "#TF_Object_Tele_Entrance_360" "fgcolor_override" "NeonGreen" } "BuildingIcon" { "icon" "obj_status_tele_entrance" } "DestroyIcon" { "iconColor" "NeonGreen" } "NumberLabel" { "fgcolor_override" "NeonGreen" } } ================================================ FILE: resource/ui/destroy_menu/pipboy/tele_entrance_inactive.res ================================================ #base "../base_inactive.res" "resource/ui/build_menu/tele_entrance_inactive.res" { "ItemNameLabel" { "labelText" "#TF_Object_Tele_Entrance_360" "fgcolor_override" "NeonGreen" } "NumberLabel" { "fgcolor_override" "NeonRed" } } ================================================ FILE: resource/ui/destroy_menu/pipboy/tele_exit_active.res ================================================ #base "../base_active.res" "resource/ui/destroy_menu/tele_exit_active.res" { "ItemNameLabel" { "labelText" "#TF_Object_Tele_Exit_360" "fgcolor_override" "NeonGreen" } "BuildingIcon" { "icon" "obj_status_tele_exit" } "DestroyIcon" { "iconColor" "NeonGreen" } "NumberLabel" { "fgcolor_override" "NeonGreen" } } ================================================ FILE: resource/ui/destroy_menu/pipboy/tele_exit_inactive.res ================================================ #base "../base_inactive.res" "resource/ui/build_menu/tele_exit_inactive.res" { "ItemNameLabel" { "labelText" "#TF_Object_Tele_Exit_360" "fgcolor_override" "NeonGreen" } "NumberLabel" { "fgcolor_override" "NeonRed" } } ================================================ FILE: resource/ui/destroy_menu/sentry_active.res ================================================ #base "base_active.res" "resource/ui/destroy_menu/sentry_active.res" { "ItemNameLabel" { "labelText" "#TF_Object_Sentry" } "BuildingIcon" { "icon" "obj_status_sentrygun_1" } } ================================================ FILE: resource/ui/destroy_menu/sentry_inactive.res ================================================ #base "base_inactive.res" "resource/ui/destroy_menu/sentry_inactive.res" { "ItemNameLabel" { "labelText" "#TF_Object_Sentry" } } ================================================ FILE: resource/ui/destroy_menu/tele_entrance_active.res ================================================ #base "base_active.res" "resource/ui/destroy_menu/tele_entrance_active.res" { "ItemNameLabel" { "labelText" "#TF_Object_Tele_Entrance_360" } "BuildingIcon" { "icon" "obj_status_tele_entrance" } } ================================================ FILE: resource/ui/destroy_menu/tele_entrance_inactive.res ================================================ #base "base_inactive.res" "resource/ui/build_menu/tele_entrance_inactive.res" { "ItemNameLabel" { "labelText" "#TF_Object_Tele_Entrance_360" } } ================================================ FILE: resource/ui/destroy_menu/tele_exit_active.res ================================================ #base "base_active.res" "resource/ui/destroy_menu/tele_exit_active.res" { "ItemNameLabel" { "labelText" "#TF_Object_Tele_Exit_360" } "BuildingIcon" { "icon" "obj_status_tele_exit" } } ================================================ FILE: resource/ui/destroy_menu/tele_exit_inactive.res ================================================ #base "base_inactive.res" "resource/ui/build_menu/tele_exit_inactive.res" { "ItemNameLabel" { "labelText" "#TF_Object_Tele_Exit_360" } } ================================================ FILE: resource/ui/disguise_menu/demoman_blue.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/demoman_blue.res" { "ItemNameLabel" { "fgcolor" "BlueTeam" "labelText" "#TF_Class_Name_Demoman" } "NewNumberLabel" { "fgcolor" "BlueTeam" "labelText" "1" } "NumberLabel" { "fgcolor" "BlueTeam" "labelText" "4" } } ================================================ FILE: resource/ui/disguise_menu/demoman_red.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/demoman_red.res" { "ItemNameLabel" { "labelText" "#TF_Class_Name_Demoman" } "NewNumberLabel" { "labelText" "1" } "NumberLabel" { "labelText" "4" } } ================================================ FILE: resource/ui/disguise_menu/engineer_blue.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/engineer_blue.res" { "ItemNameLabel" { "fgcolor" "BlueTeam" "labelText" "#TF_Class_Name_Engineer" } "NewNumberLabel" { "fgcolor" "BlueTeam" "labelText" "3" } "NumberLabel" { "fgcolor" "BlueTeam" "labelText" "6" } } ================================================ FILE: resource/ui/disguise_menu/engineer_red.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/engineer_red.res" { "ItemNameLabel" { "labelText" "#TF_Class_Name_Engineer" } "NewNumberLabel" { "labelText" "3" } "NumberLabel" { "labelText" "6" } } ================================================ FILE: resource/ui/disguise_menu/heavy_blue.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/heavy_blue.res" { "ItemNameLabel" { "fgcolor" "BlueTeam" "labelText" "#TF_Class_Name_HWGuy" } "NewNumberLabel" { "fgcolor" "BlueTeam" "labelText" "2" } "NumberLabel" { "fgcolor" "BlueTeam" "labelText" "5" } } ================================================ FILE: resource/ui/disguise_menu/heavy_red.res ================================================ "resource/ui/disguise_menu/heavy_red.res" { "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemName" "font" "FontRegular10" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "60" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Class_Name_HWGuy" "fgcolor" "RedTeam" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ClassIcon" { "ControlName" "CIconPanel" "fieldName" "ClassIcon" "xpos" "9999" "ypos" "9999" "zpos" "1" "wide" "45" "tall" "90" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "hud_menu_scout_red" } "NumberBg" { "ControlName" "CIconPanel" "fieldName" "NumberBg" "xpos" "9999" "ypos" "9999" "zpos" "0" "wide" "15" "tall" "15" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NewNumberLabel" { "ControlName" "CExLabel" "fieldName" "NumberLabel" "font" "FontRegular10" "fgcolor" "RedTeam" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "60" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "5" "textAlignment" "west" "dulltext" "1" "brighttext" "0" } "NumberLabel" { "ControlName" "CExLabel" "fieldName" "NumberLabel" "font" "FontRegular10" "fgcolor" "RedTeam" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "60" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "5" "textAlignment" "west" "dulltext" "1" "brighttext" "0" } } ================================================ FILE: resource/ui/disguise_menu/hudmenuspydisguise.res ================================================ "resource/ui/disguise_menu/hudmenuspydisguise.res" { "MainBackground" { "ControlName" "CIconPanel" "fieldName" "MainBackground" "xpos" "9999" "ypos" "9999" } "SpyIcon" { "ControlName" "CIconPanel" "fieldName" "SpyIcon" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "hud_spy_disguise_menu_icon" "iconColor" "TanLight" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "xpos" "25" "ypos" "1" "zpos" "2" "wide" "175" "tall" "22" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Disguise_Title" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "TitleLabelDropshadow" { "ControlName" "CExLabel" "fieldName" "TitleLabelDropshadow" "font" "FontBold22" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "2" "wide" "175" "tall" "22" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Disguise_Title" "textAlignment" "west" "dulltext" "1" "brighttext" "0" "pin_to_sibling" "TitleLabel" } "ToggleLabel" { "ControlName" "CExLabel" "fieldName" "ToggleLabel" "font" "FontRegular10" "xpos" "0" "ypos" "73" "zpos" "2" "wide" "200" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Spy_Minus_Toggle" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "fgcolor" "TanDark" } "CancelLabel" { "ControlName" "CExLabel" "fieldName" "CancelLabel" "font" "FontRegular10" "xpos" "0" "ypos" "73" "zpos" "1" "wide" "200" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "#Hud_Menu_Build_Cancel" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "fgcolor" "TanDark" } "class_item_red_1" { "ControlName" "EditablePanel" "fieldName" "class_item_red_1" "xpos" "10" "ypos" "25" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_blue_1" { "ControlName" "EditablePanel" "fieldName" "class_item_blue_1" "xpos" "10" "ypos" "25" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_red_2" { "ControlName" "EditablePanel" "fieldName" "class_item_red_2" "xpos" "10" "ypos" "40" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_blue_2" { "ControlName" "EditablePanel" "fieldName" "class_item_blue_2" "xpos" "10" "ypos" "40" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_red_3" { "ControlName" "EditablePanel" "fieldName" "class_item_red_3" "xpos" "10" "ypos" "55" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_blue_3" { "ControlName" "EditablePanel" "fieldName" "class_item_blue_3" "xpos" "10" "ypos" "55" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_red_4" { "ControlName" "EditablePanel" "fieldName" "class_item_red_4" "xpos" "70" "ypos" "25" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_blue_4" { "ControlName" "EditablePanel" "fieldName" "class_item_blue_4" "xpos" "70" "ypos" "25" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_red_5" { "ControlName" "EditablePanel" "fieldName" "class_item_red_5" "xpos" "70" "ypos" "40" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_blue_5" { "ControlName" "EditablePanel" "fieldName" "class_item_blue_5" "xpos" "70" "ypos" "40" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_red_6" { "ControlName" "EditablePanel" "fieldName" "class_item_red_6" "xpos" "70" "ypos" "55" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_blue_6" { "ControlName" "EditablePanel" "fieldName" "class_item_blue_6" "xpos" "70" "ypos" "55" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_red_7" { "ControlName" "EditablePanel" "fieldName" "class_item_red_7" "xpos" "135" "ypos" "25" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_blue_7" { "ControlName" "EditablePanel" "fieldName" "class_item_blue_7" "xpos" "135" "ypos" "25" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_red_8" { "ControlName" "EditablePanel" "fieldName" "class_item_red_8" "xpos" "135" "ypos" "40" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_blue_8" { "ControlName" "EditablePanel" "fieldName" "class_item_blue_8" "xpos" "135" "ypos" "40" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_red_9" { "ControlName" "EditablePanel" "fieldName" "class_item_red_9" "xpos" "135" "ypos" "55" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "class_item_blue_9" { "ControlName" "EditablePanel" "fieldName" "class_item_blue_9" "xpos" "135" "ypos" "55" "zpos" "2" "wide" "60" "tall" "15" "visible" "1" } "NumberBg1" { "ControlName" "CIconPanel" "fieldName" "NumberBg1" "xpos" "9999" "ypos" "9999" "zpos" "4" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" "scaleImage" "0" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel1" { "ControlName" "CExLabel" "fieldName" "NumberLabel1" "font" "FontBold20" "fgcolor" "TanLight" "xpos" "0" "ypos" "35" "zpos" "5" "wide" "20" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "1" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "NumberBg2" { "ControlName" "CIconPanel" "fieldName" "NumberBg2" "xpos" "9999" "ypos" "9999" "zpos" "4" "wide" "15" "tall" "15" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel2" { "ControlName" "CExLabel" "fieldName" "NumberLabel2" "font" "FontBold20" "fgcolor" "TanLight" "xpos" "60" "ypos" "35" "zpos" "5" "wide" "20" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "2" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "NumberBg3" { "ControlName" "CIconPanel" "fieldName" "NumberBg3" "xpos" "9999" "ypos" "9999" "zpos" "4" "wide" "15" "tall" "15" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel3" { "ControlName" "CExLabel" "fieldName" "NumberLabel3" "font" "FontBold20" "fgcolor" "TanLight" "xpos" "130" "ypos" "35" "zpos" "5" "wide" "20" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "3" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "MenuBG" { "ControlName" "EditablePanel" "fieldName" "MenuBG" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "200" "tall" "65" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } } ================================================ FILE: resource/ui/disguise_menu/medic_blue.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/medic_blue.res" { "ItemNameLabel" { "fgcolor" "BlueTeam" "labelText" "#TF_Class_Name_Medic" } "NewNumberLabel" { "fgcolor" "BlueTeam" "labelText" "1" } "NumberLabel" { "fgcolor" "BlueTeam" "labelText" "7" } } ================================================ FILE: resource/ui/disguise_menu/medic_red.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/medic_red.res" { "ItemNameLabel" { "labelText" "#TF_Class_Name_Medic" } "NewNumberLabel" { "labelText" "1" } "NumberLabel" { "labelText" "7" } } ================================================ FILE: resource/ui/disguise_menu/pyro_blue.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/pyro_blue.res" { "ItemNameLabel" { "fgcolor" "BlueTeam" "labelText" "#TF_Class_Name_Pyro" } "NewNumberLabel" { "fgcolor" "BlueTeam" "labelText" "3" } "NumberLabel" { "fgcolor" "BlueTeam" "labelText" "3" } } ================================================ FILE: resource/ui/disguise_menu/pyro_red.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/pyro_red.res" { "ItemNameLabel" { "labelText" "#TF_Class_Name_Pyro" } "NewNumberLabel" { "labelText" "3" } "NumberLabel" { "labelText" "3" } } ================================================ FILE: resource/ui/disguise_menu/scout_blue.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/scout_blue.res" { "ItemNameLabel" { "fgcolor" "BlueTeam" "labelText" "#TF_Class_Name_Scout" } "NewNumberLabel" { "fgcolor" "BlueTeam" "labelText" "1" } "NumberLabel" { "fgcolor" "BlueTeam" "labelText" "1" } } ================================================ FILE: resource/ui/disguise_menu/scout_red.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/scout_red.res" { "ItemNameLabel" { "labelText" "#TF_Class_Name_Scout" } "NewNumberLabel" { "labelText" "1" } "NumberLabel" { "labelText" "1" } } ================================================ FILE: resource/ui/disguise_menu/sniper_blue.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/sniper_blue.res" { "ItemNameLabel" { "fgcolor" "BlueTeam" "labelText" "#TF_Class_Name_Sniper" } "NewNumberLabel" { "fgcolor" "BlueTeam" "labelText" "2" } "NumberLabel" { "fgcolor" "BlueTeam" "labelText" "8" } } ================================================ FILE: resource/ui/disguise_menu/sniper_red.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/sniper_red.res" { "ItemNameLabel" { "labelText" "#TF_Class_Name_Sniper" } "NewNumberLabel" { "labelText" "2" } "NumberLabel" { "labelText" "8" } } ================================================ FILE: resource/ui/disguise_menu/soldier_blue.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/soldier_blue.res" { "ItemNameLabel" { "fgcolor" "BlueTeam" "labelText" "#TF_Class_Name_Soldier" } "NewNumberLabel" { "fgcolor" "BlueTeam" "labelText" "2" } "NumberLabel" { "fgcolor" "BlueTeam" "labelText" "2" } } ================================================ FILE: resource/ui/disguise_menu/soldier_red.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/soldier_red.res" { "ItemNameLabel" { "labelText" "#TF_Class_Name_Soldier" } "NewNumberLabel" { "labelText" "2" } "NumberLabel" { "labelText" "2" } } ================================================ FILE: resource/ui/disguise_menu/spy_blue.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/spy_blue.res" { "ItemNameLabel" { "fgcolor" "BlueTeam" "labelText" "#TF_Class_Name_Spy" } "NewNumberLabel" { "fgcolor" "BlueTeam" "labelText" "3" } "NumberLabel" { "fgcolor" "BlueTeam" "labelText" "9" } } ================================================ FILE: resource/ui/disguise_menu/spy_red.res ================================================ #base "heavy_red.res" "resource/ui/disguise_menu/spy_red.res" { "ItemNameLabel" { "labelText" "#TF_Class_Name_Spy" } "NewNumberLabel" { "labelText" "3" } "NumberLabel" { "labelText" "9" } } ================================================ FILE: resource/ui/disguise_menu_360/demoman_blue.res ================================================ #base "../disguise_menu/demoman_blue.res" "resource/ui/disguise_menu/demoman_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_360/demoman_red.res ================================================ #base "../disguise_menu/demoman_red.res" "resource/ui/disguise_menu/demoman_red.res" { } ================================================ FILE: resource/ui/disguise_menu_360/engineer_blue.res ================================================ #base "../disguise_menu/engineer_blue.res" "resource/ui/disguise_menu/engineer_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_360/engineer_red.res ================================================ #base "../disguise_menu/engineer_red.res" "resource/ui/disguise_menu/engineer_red.res" { } ================================================ FILE: resource/ui/disguise_menu_360/heavy_blue.res ================================================ #base "../disguise_menu/heavy_blue.res" "resource/ui/disguise_menu/heavy_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_360/heavy_red.res ================================================ #base "../disguise_menu/heavy_red.res" "resource/ui/disguise_menu/heavy_red.res" { } ================================================ FILE: resource/ui/disguise_menu_360/hudmenuspydisguise.res ================================================ #base "../disguise_menu/hudmenuspydisguise.res" "resource/ui/disguise_menu/hudmenuspydisguise.res" { } ================================================ FILE: resource/ui/disguise_menu_360/medic_blue.res ================================================ #base "../disguise_menu/medic_blue.res" "resource/ui/disguise_menu/medic_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_360/medic_red.res ================================================ #base "../disguise_menu/medic_red.res" "resource/ui/disguise_menu/medic_red.res" { } ================================================ FILE: resource/ui/disguise_menu_360/pyro_blue.res ================================================ #base "../disguise_menu/pyro_blue.res" "resource/ui/disguise_menu/pyro_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_360/pyro_red.res ================================================ #base "../disguise_menu/pyro_red.res" "resource/ui/disguise_menu/pyro_red.res" { } ================================================ FILE: resource/ui/disguise_menu_360/scout_blue.res ================================================ #base "../disguise_menu/scout_blue.res" "resource/ui/disguise_menu/scout_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_360/scout_red.res ================================================ #base "../disguise_menu/scout_red.res" "resource/ui/disguise_menu/scout_red.res" { } ================================================ FILE: resource/ui/disguise_menu_360/sniper_blue.res ================================================ #base "../disguise_menu/sniper_blue.res" "resource/ui/disguise_menu/sniper_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_360/sniper_red.res ================================================ #base "../disguise_menu/sniper_red.res" "resource/ui/disguise_menu/sniper_red.res" { } ================================================ FILE: resource/ui/disguise_menu_360/soldier_blue.res ================================================ #base "../disguise_menu/soldier_blue.res" "resource/ui/disguise_menu/soldier_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_360/soldier_red.res ================================================ #base "../disguise_menu/soldier_red.res" "resource/ui/disguise_menu/soldier_red.res" { } ================================================ FILE: resource/ui/disguise_menu_360/spy_blue.res ================================================ #base "../disguise_menu/spy_blue.res" "resource/ui/disguise_menu/spy_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_360/spy_red.res ================================================ #base "../disguise_menu/spy_red.res" "resource/ui/disguise_menu/spy_red.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/demoman_blue.res ================================================ #base "../disguise_menu/demoman_blue.res" "resource/ui/disguise_menu/demoman_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/demoman_red.res ================================================ #base "../disguise_menu/demoman_red.res" "resource/ui/disguise_menu/demoman_red.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/engineer_blue.res ================================================ #base "../disguise_menu/engineer_blue.res" "resource/ui/disguise_menu/engineer_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/engineer_red.res ================================================ #base "../disguise_menu/engineer_red.res" "resource/ui/disguise_menu/engineer_red.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/heavy_blue.res ================================================ #base "../disguise_menu/heavy_blue.res" "resource/ui/disguise_menu/heavy_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/heavy_red.res ================================================ #base "../disguise_menu/heavy_red.res" "resource/ui/disguise_menu/heavy_red.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/hudmenuspydisguise.res ================================================ #base "../disguise_menu/hudmenuspydisguise.res" "resource/ui/disguise_menu/hudmenuspydisguise.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/medic_blue.res ================================================ #base "../disguise_menu/medic_blue.res" "resource/ui/disguise_menu/medic_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/medic_red.res ================================================ #base "../disguise_menu/medic_red.res" "resource/ui/disguise_menu/medic_red.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/pyro_blue.res ================================================ #base "../disguise_menu/pyro_blue.res" "resource/ui/disguise_menu/pyro_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/pyro_red.res ================================================ #base "../disguise_menu/pyro_red.res" "resource/ui/disguise_menu/pyro_red.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/scout_blue.res ================================================ #base "../disguise_menu/scout_blue.res" "resource/ui/disguise_menu/scout_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/scout_red.res ================================================ #base "../disguise_menu/scout_red.res" "resource/ui/disguise_menu/scout_red.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/sniper_blue.res ================================================ #base "../disguise_menu/sniper_blue.res" "resource/ui/disguise_menu/sniper_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/sniper_red.res ================================================ #base "../disguise_menu/sniper_red.res" "resource/ui/disguise_menu/sniper_red.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/soldier_blue.res ================================================ #base "../disguise_menu/soldier_blue.res" "resource/ui/disguise_menu/soldier_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/soldier_red.res ================================================ #base "../disguise_menu/soldier_red.res" "resource/ui/disguise_menu/soldier_red.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/spy_blue.res ================================================ #base "../disguise_menu/spy_blue.res" "resource/ui/disguise_menu/spy_blue.res" { } ================================================ FILE: resource/ui/disguise_menu_sc/spy_red.res ================================================ #base "../disguise_menu/spy_red.res" "resource/ui/disguise_menu/spy_red.res" { } ================================================ FILE: resource/ui/disguisestatuspanel.res ================================================ "resource/ui/itemmodelpanel.res" { "itemmodelpanel" { "ControlName" "CEmbeddedItemModelPanel" "fieldName" "itemmodelpanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "100" "tall" "100" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "useparentbg" "1" "fov" "54" "start_framed" "1" "disable_manipulation" "1" "model" { "angles_x" "10" "angles_y" "130" "angles_z" "0" } } "ShadedBar" { "ControlName" "EditablePanel" "fieldName" "ShadedBar" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "170" "tall" "f0" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } "DisguiseStatusBG" { "ControlName" "CTFImagePanel" "fieldName" "DisguiseStatusBG" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "5" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/color_panel_brown" "scaleImage" "1" "teambg_1" "../hud/color_panel_brown" "teambg_2" "../hud/color_panel_red" "teambg_3" "../hud/color_panel_blu" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "0" "draw_corner_height" "0" } "DisguiseNameLabel" { "ControlName" "Label" "fieldName" "DisguiseNameLabel" "font" "FontRegular12" "font_minmode" "StreamerMode" "xpos" "60" "ypos" "1" "zpos" "1" "wide" "105" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%disguisename%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "DisguiseNameLabelShadow" { "ControlName" "Label" "fieldName" "DisguiseNameLabelShadow" "font" "FontRegular12" "font_minmode" "StreamerMode" "xpos" "-1" "ypos" "-1" "zpos" "1" "wide" "105" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%disguisename%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "fgcolor_override" "Black" "pin_to_sibling" "DisguiseNameLabel" } "WeaponNameLabel" { "ControlName" "Label" "fieldName" "WeaponNameLabel" "font" "FontRegular10" "xpos" "60" "ypos" "14" "zpos" "1" "wide" "105" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%weaponname%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "WeaponNameLabelShadow" { "ControlName" "Label" "fieldName" "WeaponNameLabelShadow" "font" "FontRegular10" "xpos" "-1" "ypos" "-1" "zpos" "1" "wide" "105" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%weaponname%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "fgcolor_override" "Black" "pin_to_sibling" "WeaponNameLabel" } "SpectatorGUIHealth" { "ControlName" "EditablePanel" "fieldName" "SpectatorGUIHealth" "xpos" "-5" "ypos" "3" "zpos" "1" "wide" "60" "tall" "20" "visible" "1" "enabled" "1" "HealthBonusPosAdj" "10" "HealthDeathWarning" "0.49" "TFFont" "HudFontSmall" "HealthDeathWarningColor" "HUDDeathWarning" "TextColor" "HudOffWhite" } } ================================================ FILE: resource/ui/dynamicrecipepanel.res ================================================ "resource/ui/dynamicrecipe.res" { "dynamic_recipe_panel" { "ControlName" "Frame" "fieldName" "dynamic_recipe_panel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "400" "zpos" "501" "visible" "1" "autoResize" "0" "pinCorner" "0" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "bgcolor_override" "DarkGrey" "infocus_bgcolor_override" "DarkGrey" "outoffocus_bgcolor_override" "DarkGrey" "item_ypos" "30" "output_item_ypos" "255" "item_crafting_offcenter_x" "0" "item_backpack_xdelta" "2" "item_backpack_ydelta" "4" "inventory_xpos" "0" "inventory_ypos" "30" "button_xpos_offcenter" "175" "button_ypos" "85" "button_ydelta" "80" "button_override_delete_xpos" "0" "modelpanels_kv" { "ControlName" "CItemModelPanel" "wide" "70" "tall" "45" "visible" "0" "enabled" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "HudOffWhite" "PaintBackgroundType" "2" "paintborder" "1" "model_ypos" "5" "model_tall" "35" "text_center" "1" "name_only" "1" "text_forcesize" "3" "noitem_use_fullpanel" "1" "inset_eq_x" "2" "inset_eq_y" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" } } "filter_xoffset" "-290" "filter_ypos" "30" "filter_xdelta" "10" "filter_ydelta" "10" "recipefilterbuttons_kv" { "zpos" "2" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "textAlignment" "south-west" "Command" "" "Default" "0" "font" "MenuKeys" "scaleImage" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } "recipecontainer" { "ControlName" "EditablePanel" "fieldName" "recipecontainer" "xpos" "c0" "ypos" "0" "zpos" "5" "wide" "300" "tall" "350" "PaintBackgroundType" "2" "bgcolor_override" "200 187 161 0" "RecipeTitle" { "ControlName" "CExLabel" "fieldName" "RecipeTitle" "font" "FontBold12" "labelText" "%recipetitle%" "textAlignment" "west" "xpos" "80" "ypos" "250" "zpos" "1" "wide" "200" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "wrap" "1" } "InputLabel" { "ControlName" "CExLabel" "fieldName" "InputLabel" "font" "HudFontSmallBold" "labelText" "#Craft_Recipe_Inputs" "textAlignment" "north-west" "xpos" "0" "ypos" "10" "zpos" "1" "wide" "f0" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "HudOffWhite" } "OutputLabel" { "ControlName" "CExLabel" "fieldName" "OutputLabel" "font" "HudFontSmallBold" "labelText" "#Dynamic_Recipe_Outputs_Not_Complete" "textAlignment" "north-west" "xpos" "0" "ypos" "238" "zpos" "1" "wide" "f0" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "HudOffWhite" } "UntradableLabel" { "ControlName" "CExLabel" "fieldName" "UntradableLabel" "font" "TFFontMedium" "labelText" "#Dynamic_Recipe_Outputs_Not_Tradable" "textAlignment" "west" "xpos" "0" "ypos" "299" "zpos" "1" "wide" "250" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "fgcolor" "HUDRedTeamSolid" } "CraftButton" { "ControlName" "CExButton" "fieldName" "CraftButton" "xpos" "0" "ypos" "320" "zpos" "20" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "tabPosition" "0" "labelText" "#CraftConfirm" "font" "HudFontMediumBold" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "craft" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PrevInputPageButton" { "ControlName" "CExButton" "fieldName" "PrevInputPageButton" "xpos" "184" "ypos" "180" "zpos" "1" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&A" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "previnputpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CurInputPageLabel" { "ControlName" "CExLabel" "fieldName" "CurInputPageLabel" "font" "FontBold12" "labelText" "%inputpage%" "textAlignment" "center" "xpos" "210" "ypos" "180" "zpos" "1" "wide" "45" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "200 80 60 255" } "NextInputPageButton" { "ControlName" "CExButton" "fieldName" "NextInputPageButton" "xpos" "265" "ypos" "180" "zpos" "1" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&D" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextinputpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } "inventorycontainer" { "ControlName" "EditablePanel" "fieldName" "inventorycontainer" "xpos" "c-300" "ypos" "0" "zpos" "5" "wide" "300" "tall" "350" "PaintBackgroundType" "2" "bgcolor_override" "200 187 161 0" "NoMatches" { "ControlName" "CExLabel" "fieldName" "NoMatches" "font" "HudFontSmallBold" "labelText" "#Dynamic_Recipe_No_Matching_Items" "textAlignment" "west" "xpos" "0" "ypos" "125" "zpos" "1" "wide" "280" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "fgcolor" "HudOffWhite" "wrap" "1" } "UntradableCheckBox" { "ControlName" "CheckButton" "fieldName" "UntradableCheckBox" "labelText" "#Dynamic_Recipe_Untradable_Checkbox" "Font" "HudFontSmallestBold" "textAlignment" "west" "xpos" "-4" "ypos" "270" "zpos" "1" "wide" "280" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "fgcolor" "HudOffWhite" } "BackpackItems" { "ControlName" "CExLabel" "fieldName" "BackpackItems" "font" "HudFontSmallBold" "labelText" "#Dynamic_Recipe_Matching_Items" "textAlignment" "west" "xpos" "0" "ypos" "10" "zpos" "1" "wide" "280" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "HudOffWhite" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "0" "ypos" "320" "zpos" "20" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "HudFontMediumBold" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PrevPageButton" { "ControlName" "CExButton" "fieldName" "PrevPageButton" "xpos" "0" "ypos" "230" "zpos" "1" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "A" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "prevpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CurPageLabel" { "ControlName" "CExLabel" "fieldName" "CurPageLabel" "font" "FontBold12" "labelText" "%backpackpage%" "textAlignment" "center" "xpos" "26" "ypos" "230" "zpos" "1" "wide" "45" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "200 80 60 255" } "NextPageButton" { "ControlName" "CExButton" "fieldName" "NextPageButton" "xpos" "81" "ypos" "230" "zpos" "1" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "D" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "HudOffWhite" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "HudOffWhite" "centerwrap" "1" } } "mousedragitempanel" { "ControlName" "CItemModelPanel" "fieldName" "mousedragitempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "54" "tall" "42" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "HudOffWhite" "PaintBackgroundType" "2" "paintborder" "1" "model_ypos" "5" "model_tall" "35" "text_ypos" "60" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" } } } ================================================ FILE: resource/ui/econ/backpackpanel.res ================================================ "resource/ui/fullloadoutpanel.res" { "backpack_panel" { "ControlName" "Frame" "fieldName" "backpack_panel" "xpos" "0" "ypos" "0" "wide" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "bgcolor_override" "DarkGrey" "infocus_bgcolor_override" "DarkGrey" "outoffocus_bgcolor_override" "DarkGrey" "item_xpos_offcenter_a" "-310" "item_xpos_offcenter_b" "165" "item_ypos" "60" "item_ydelta" "80" "item_mod_wide" "40" "item_backpack_offcenter_x" "-288" "item_backpack_xdelta" "4" "item_backpack_ydelta" "3" "button_xpos_offcenter" "175" "button_ypos" "85" "button_ydelta" "80" "button_override_delete_xpos" "0" "page_button_y" "288" "page_button_x_delta" "4" "page_button_y_delta" "4" "page_button_per_row" "20" "page_button_height" "15" "pagebuttons_kv" { "ControlName" "EditablePanel" "wide" "15" "tall" "10" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "Button" { "fieldName" "Button" "ControlName" "CExButton" "wide" "25" "tall" "15" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "textAlignment" "center" "labelText" "%page%" "font" "FontBold12" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "button_activation_type" "2" } "New" { "ControlName" "CExLabel" "fieldName" "New" "font" "FontBold9" "textAlignment" "center" "ypos" "0" "xpos" "0" "zpos" "0" "wide" "f0" "tall" "f-5" "textinsetx" "8" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "#Store_Price_New" "mouseinputenabled" "0" "paintbackground" "0" "proportionaltoparent" "1" "border" "StoreNewBorder" "fgcolor" "10 10 10 255" } } "modelpanels_kv" { "ControlName" "CItemModelPanel" "xpos" "c-70" "ypos" "270" "wide" "54" "tall" "42" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "model_xpos" "2" "model_ypos" "5" "model_wide" "50" "model_tall" "35" "text_ypos" "60" "text_center" "1" "name_only" "1" "inset_eq_x" "2" "inset_eq_y" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } "New" { "ControlName" "CExLabel" "fieldName" "New" "font" "ItemFontNameSmallest" "textAlignment" "east" "xpos" "rs1" "ypos" "0" "zpos" "15" "wide" "25" "tall" "12" "textinsetx" "8" "autoResize" "0" "skip_autoresize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "#Store_Price_New" "mouseinputenabled" "0" "paintbackground" "0" "proportionaltoparent" "1" "border" "StoreNewBorder" "fgcolor" "10 10 10 255" } "use_item_sounds" "1" } } "CaratLabel" { "ControlName" "CExLabel" "fieldName" "CaratLabel" "xpos" "9999" } "ClassLabel" { "ControlName" "CExLabel" "fieldName" "ClassLabel" "xpos" "9999" } "tool_icon" { "ControlName" "ScalableImagePanel" "fieldName" "tool_icon" "xpos" "10" "ypos" "10" "zpos" "2" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "image" "backpack_jewel_modify_target_b_g" "tileImage" "0" "tileVertically" "0" "drawcolor" "112 176 74 255" } "ShowRarityComboBox" { "ControlName" "ComboBox" "fieldName" "ShowRarityComboBox" "font" "FontRegular11" "wrap" "0" "xpos" "c134" "ypos" "15" "zpos" "1" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "default" "0" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "disabledFgColor_override" "TanLight" "disabledBgColor_override" "Black" "selectionColor_override" "Black" "selectionTextColor_override" "TanLight" "defaultSelectionBG2Color_override" "Black" } "ShowBaseItemsCheckbox" { "ControlName" "CheckButton" "fieldName" "ShowBaseItemsCheckbox" "labelText" "#ShowBaseItemsCheckBox" "font" "FontRegular12" "textAlignment" "east" "xpos" "c-65" "ypos" "34" "zpos" "1" "wide" "122" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "fgcolor_override" "TanLight" "bgcolor_override" "Black" } "NameFilterLabel" { "ControlName" "CExLabel" "fieldName" "NameFilterLabel" "font" "FontRegular12" "labelText" "#Store_NameFilterLabel" "textAlignment" "west" "xpos" "c-287" "ypos" "15" "zpos" "1" "wide" "90" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } "NameFilterTextEntry" { "ControlName" "TextEntry" "fieldName" "NameFilterTextEntry" "font" "FontRegular12" "xpos" "c-287" "ypos" "35" "wide" "220" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "1" "unicode" "1" "fgcolor_override" "TanLight" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "2" } "SortByComboBox" { "ControlName" "ComboBox" "fieldName" "SortByComboBox" "font" "FontRegular11" "xpos" "c134" "ypos" "37" "zpos" "1" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "disabledFgColor_override" "TanLight" "disabledBgColor_override" "Black" "selectionColor_override" "Black" "selectionTextColor_override" "TanLight" "defaultSelectionBG2Color_override" "Black" } "mouseoveritempanel" { "ControlName" "EditablePanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "102" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "mousedragitempanel" { "ControlName" "CItemModelPanel" "fieldName" "mousedragitempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "54" "tall" "42" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "model_ypos" "5" "model_tall" "35" "text_ypos" "60" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "PrevPageButton" { "ControlName" "CExButton" "fieldName" "PrevPageButton" "xpos" "c-328" "ypos" "60" "zpos" "1" "wide" "30" "tall" "220" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&A" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "prevpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CurPageLabel" { "ControlName" "CExLabel" "fieldName" "CurPageLabel" "font" "FontRegular14" "labelText" "%backpackpage%" "textAlignment" "center" "xpos" "9999" "ypos" "325" "zpos" "1" "wide" "40" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "NextPageButton" { "ControlName" "CExButton" "fieldName" "NextPageButton" "xpos" "c298" "ypos" "60" "zpos" "1" "wide" "30" "tall" "220" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&D" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "DragToNextPageButton" { "ControlName" "CExButton" "fieldName" "DragToNextPageButton" "xpos" "c298" "ypos" "60" "zpos" "1" "wide" "30" "tall" "220" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&D" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "DragToPrevPageButton" { "ControlName" "CExButton" "fieldName" "DragToPrevPageButton" "xpos" "c-328" "ypos" "60" "zpos" "1" "wide" "30" "tall" "220" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&A" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "prevpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CancelApplyToolButton" { "ControlName" "CExButton" "fieldName" "CancelApplyToolButton" "xpos" "c137" "ypos" "37" "zpos" "1" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "canceltool" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ShowExplanationsButton" { "ControlName" "CExButton" "fieldName" "ShowExplanationsButton" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "StartExplanation" { "ControlName" "CExplanationPopup" "fieldName" "StartExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "140" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-150" "end_y" "100" "end_wide" "300" "end_tall" "155" "callout_inparents_x" "c0" "callout_inparents_y" "150" "next_explanation" "PagesExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#BackpackItemsExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#BackpackItemsExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "85" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "125" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "260" "ypos" "125" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "nextexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "PagesExplanation" { "ControlName" "CExplanationPopup" "fieldName" "PagesExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "100" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-250" "end_y" "130" "end_wide" "300" "end_tall" "115" "callout_inparents_x" "c-250" "callout_inparents_y" "290" "next_explanation" "ContextExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#BackpackPagesExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#BackpackPagesExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "45" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "85" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "prevexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "85" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "260" "ypos" "85" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "nextexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "ContextExplanation" { "ControlName" "CExplanationPopup" "fieldName" "ContextExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "160" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-150" "end_y" "80" "end_wide" "300" "end_tall" "165" "callout_inparents_x" "c0" "callout_inparents_y" "c0" "next_explanation" "ArmoryExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#BackpackContextExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#BackpackContextExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "135" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "135" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "prevexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "260" "ypos" "135" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "nextexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "135" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } } "StockExplanation" { "ControlName" "CExplanationPopup" "fieldName" "StockExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "160" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "next_explanation" "SortExplanation" "force_close" "1" "end_x" "c-150" "end_y" "80" "end_wide" "300" "end_tall" "165" "callout_inparents_x" "c0" "callout_inparents_y" "50" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#BackpackStockExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#BackpackStockExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "135" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "135" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "prevexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "260" "ypos" "135" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "nextexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "135" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } } "SortExplanation" { "ControlName" "CExplanationPopup" "fieldName" "SortExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "160" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-110" "end_y" "80" "end_wide" "300" "end_tall" "135" "callout_inparents_x" "c200" "callout_inparents_y" "55" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#BackpackSortExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#BackpackSortExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "135" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "105" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "prevexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "105" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } } } ================================================ FILE: resource/ui/econ/collectioncraftingdialog_base.res ================================================ "resource/ui/econ/strangecounttransferdialog.res" { "CollectionCraftingPanel" { "fieldName" "CollectionCraftingPanel" "visible" "0" "enabled" "1" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "101" "wide" "f0" "tall" "f0" "paintbackground" "0" "buttons_start_x" "20" "buttons_start_y" "60" "buttons_step_x" "56" "buttons_step_y" "56" "output_start_x" "343" "output_start_y" "85" "output_step_x" "56" "output_step_y" "56" "bg_target_y" "10" "slide_in_time" "1.f" "boxtops" { "boxtop" "trade_ups/trade_ups_boxtop_01" "boxtop" "trade_ups/trade_ups_boxtop_02" "boxtop" "trade_ups/trade_ups_boxtop_03" "boxtop" "trade_ups/trade_ups_boxtop_04" "boxtop" "trade_ups/trade_ups_boxtop_05" } "ItemContainerKV" { "fieldName" "ItemContainerKV" "xpos" "p0.08" "ypos" "p0.245" "zpos" "1" "wide" "o1" "tall" "p0.25" "visible" "1" "proportionaltoparent" "1" "InstructionsLabel" { "ControlName" "CExLabel" "fieldName" "InstructionsLabel" "font" "TradeUp_Quote" "textAlignment" "center" "xpos" "cs-0.5" "ypos" "0" "zpos" "0" "wide" "p0.8" "tall" "f0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_CollectionCrafting_AttachItem" "mouseinputenabled" "0" "paintbackground" "0" "proportionaltoparent" "1" "paintborder" "0" "fgcolor" "0 0 0 255" "centerwrap" "1" } "BackgroundButton" { "ControlName" "CExImageButton" "fieldName" "BackgroundButton" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "p0.8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "cancel" "proportionaltoparent" "1" "actionsignallevel" "2" "mouseinputenabled" "1" "paintbackground" "0" "pin_to_sibling" "MainContainer" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "0 0 0 255" "image_armedcolor" "200 80 60 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "o1" "tall" "p1.5" "visible" "1" "enabled" "1" "image" "trade_ups/trade_ups_attach_box" "scaleImage" "1" "proportionaltoparent" "1" } } "imagepanel" { "ControlName" "ImagePanel" "fieldName" "imagepanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "2" "wide" "o1" "tall" "p1.25" "visible" "0" "proportionaltoparent" "1" "scaleimage" "1" "image" "trade_ups/trade_ups_boxtop_01" } "itempanel" { "ControlName" "CItemModelPanel" "fieldName" "itempanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "3" "wide" "o1" "tall" "p1" "visible" "0" "bgcolor_override" "0 0 0 0" "noitem_textcolor" "117 107 94 255" "PaintBackgroundType" "2" "paintborder" "0" "model_center_x" "1" "model_center_y" "1" "model_wide" "40" "model_tall" "30" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "paint_icon_hide" "1" "actionsignallevel" "4" "proportionaltoparent" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" } } } } "Dimmer" { "fieldName" "Dimmer" "ControlName" "EditablePanel" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "0" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "bgcolor_override" "30 30 30 255" } "BG" { "fieldName" "BG" "ControlName" "EditablePanel" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "0" "zpos" "1" "wide" "p1" "tall" "300" "proportionaltoparent" "1" "Border" { "fieldName" "Border" "ControlName" "EditablePanel" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1" "wide" "0" "tall" "0" "bgcolor_override" "46 43 42 0" "paintborder" "1" "paintbackgroundtype" "1" "proportionaltoparent" "1" "border" "GrayDialogBorder" } } "DrawingPanel" { "fieldName" "DrawingPanel" "ControlName" "CDrawingPanel" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "60" "zpos" "5" "wide" "o2" "tall" "250" "proportionaltoparent" "1" "linecolor" "RedSolid" } "LetterBack_Bottom" { "fieldName" "LetterBack_Bottom" "ControlName" "ImagePanel" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "35" "zpos" "1" "wide" "o2" "tall" "250" "proportionaltoparent" "1" "scaleImage" "1" "image" "trade_ups/trade_ups_letter_back_bottom" } "LetterBack_Top" { "fieldName" "LetterBack_Top" "ControlName" "ImagePanel" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "35" "zpos" "3" "wide" "o2" "tall" "250" "proportionaltoparent" "1" "scaleImage" "1" "image" "trade_ups/trade_ups_letter_back_top" } "LetterBack_Flap" { "fieldName" "LetterBack_Flap" "ControlName" "ImagePanel" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "35" "zpos" "4" "wide" "o2" "tall" "250" "proportionaltoparent" "1" "scaleImage" "1" "image" "trade_ups/trade_ups_letter_back_flap" } "BehindItemParticlePanel" { "ControlName" "CTFParticlePanel" "fieldName" "BehindItemParticlePanel" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "ParticleEffects" { "1" { "particle_xpos" "c0" "particle_ypos" "170" "particle_scale" "15" "particleName" "mvm_item_godrays_glow" "start_activated" "0" "loop" "0" } "2" { "particle_xpos" "c0" "particle_ypos" "180" "particle_scale" "2" "particleName" "crate_drop" "start_activated" "0" "loop" "0" } "3" { "particle_xpos" "c0" "particle_ypos" "180" "particle_scale" "1.2" "particleName" "Envelope_trail" "angles" "0 0 0" "start_activated" "0" "loop" "0" } } "paintbackground" "0" } "WaitingForResponse" { "ControlName" "CExLabel" "fieldName" "WaitingForResponse" "font" "HudFontSmall" "textAlignment" "center" "xpos" "cs-0.5" "ypos" "175" "zpos" "5" "wide" "p1" "tall" "30" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "#TF_CollectionCrafting_WaitingForResponse" "textAlignment" "center" "mouseinputenabled" "0" "paintbackground" "0" "proportionaltoparent" "1" "paintborder" "0" "fgcolor" "TanLight" } "ResponseTimeout" { "ControlName" "CExLabel" "fieldName" "ResponseTimeout" "font" "HudFontSmall" "textAlignment" "center" "xpos" "cs-0.5" "ypos" "175" "zpos" "5" "wide" "p1" "tall" "30" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "#TF_CollectionCrafting_ReponseTimeout" "textAlignment" "center" "centerwrap" "1" "mouseinputenabled" "0" "paintbackground" "0" "proportionaltoparent" "1" "paintborder" "0" "fgcolor" "TanLight" } "NewItemPanel" { "fieldName" "NewItemPanel" "xpos" "cs-0.5" "ypos" "20" "zpos" "50" "wide" "o1" "tall" "p1" "visible" "0" "proportionaltoparent" "1" "bgcolor_override" "0 0 0 0" "YouTradedForLabel" { "ControlName" "CExLabel" "fieldName" "YouTradedForLabel" "font" "HudFontSmall" "textAlignment" "center" "xpos" "f0" "ypos" "17" "zpos" "1" "wide" "f0" "tall" "50" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%resultstring%" "mouseinputenabled" "0" "paintbackground" "0" "proportionaltoparent" "1" "paintborder" "0" "fgcolor" "TanLight" } "ItemName" { "ControlName" "CItemModelPanel" "fieldName" "ItemName" "xpos" "cs-0.5" "ypos" "35" "zpos" "5" "wide" "o1.5" "tall" "p0.5" "visible" "1" "bgcolor_override" "0 0 0 0" "noitem_textcolor" "117 107 94 255" "PaintBackgroundType" "2" "paintborder" "0" "mouseinputenabled" "0" "proportionaltoparent" "1" "text_ypos" "15" "text_center" "0" "paint_icon_hide" "1" "model_hide" "1" "text_forcesize" "4" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "BGImage" { "ControlName" "EditablePanel" "fieldName" "BGImage" "xpos" "cs-0.5" "ypos" "p0.2" "zpos" "1" "wide" "p0.7" "tall" "p0.4" "visible" "1" "enabled" "1" "image" "item_carousel_bg" "scaleImage" "1" "proportionaltoparent" "1" } "CosmeticResultItemModelPanel" { "ControlName" "CItemModelPanel" "fieldName" "CosmeticResultItemModelPanel" "xpos" "cs-0.5" "ypos" "p0.1" "zpos" "6" "wide" "o1.5" "tall" "p0.5" "visible" "1" "bgcolor_override" "0 0 0 0" "noitem_textcolor" "117 107 94 255" "PaintBackgroundType" "2" "paintborder" "0" "actionsignallevel" "4" "proportionaltoparent" "1" "model_center_x" "1" "model_center_y" "1" "model_ypos" "0" "model_wide" "200" "model_tall" "125" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "model_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "ModelInspectionPanel" { "fieldName" "ModelInspectionPanel" "xpos" "cs-0.5" "ypos" "p0.1" "zpos" "6" "wide" "o1.5" "tall" "p0.5" "visible" "1" "proportionaltoparent" "1" "bgcolor_override" "255 0 0 255" "force_use_model" "1" "use_item_rendertarget" "0" "allow_rot" "1" "allow_pitch" "1" "max_pitch" "30" "use_pedestal" "1" "use_particle" "1" "fov" "75" "model" { "force_pos" "1" "angles_x" "7" "angles_y" "130" "angles_z" "0" "origin_x" "175" "origin_y" "0" "origin_z" "0" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } "lights" { "default" { "name" "directional" "color" "1 1 1" "direction" "0 0 -1" } "spot light" { "name" "spot" "color" "1 .9 .9" "attenuation" "4.5 0 0" "origin" "0 0 100" "direction" "1 0 -0.5" "inner_cone_angle" "1" "outer_cone_angle" "90" "maxDistance" "1000" "exponent" "25" } "point light" { "name" "point" "color" ".7 .8 1" "attenuation" "15 0 0" "origin" "15 -50 -200" "maxDistance" "1000" } } } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "c92" "ypos" "c-98" "zpos" "100" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "close" "proportionaltoparent" "1" "actionsignallevel" "2" "paintbackground" "0" "pin_to_sibling" "MainContainer" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "150 60 45 255" "image_armedcolor" "200 80 60 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "visible" "0" "enabled" "1" "image" "close_button" "scaleImage" "1" "proportionaltoparent" "1" } } "TeamNavPanel" { "ControlName" "CNavigationPanel" "fieldName" "TeamNavPanel" "xpos" "cs-0.5" "ypos" "c-10" "zpos" "100" "wide" "60" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "proportionaltoparent" "1" "auto_scale" "1" "auto_layout" "1" "selected_button_default" "0" "auto_layout_vertical_buffer" "-4" "display_vertically" "0" "align" "west" "ButtonSettings" { "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "2" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "textAlignment" "south-west" "scaleImage" "1" "fgcolor" "TanDark" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanDark" "depressedFgColor_override" "TanDark" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "paintbackground" "0" "paintbackgroundtype" "0" "defaultBgColor_Override" "0 0 0 255" "paintborder" "0" "image_drawcolor" "255 255 255 77" "image_armedcolor" "255 255 255 128" "image_selectedcolor" "255 255 255 255" "stayselectedonclick" "1" "keyboardinputenabled" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "scaleImage" "1" } } "Buttons" { "all" { "userdata" "2" "image_default" "store/store_redteam" "image_armed" "store/store_redteam" "image_selected" "store/store_redteam" "SubImage" { "image" "store/store_redteam" } } "scout" { "userdata" "3" "image_default" "store/store_blueteam" "image_armed" "store/store_blueteam" "image_selected" "store/store_blueteam" "SubImage" { "image" "store/store_blueteam" } } } } } "ReturnModel" { "ControlName" "CBaseModelPanel" "fieldName" "ReturnModel" "xpos" "cs-0.5" "ypos" "0" "zpos" "100" "wide" "o1.3333" "tall" "450" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "mouseinputenabled" "0" "proportionaltoparent" "1" "fov" "70" "allow_manip" "0" "start_framed" "0" "spotlight" "1" "model" { "force_pos" "1" "modelname" "" "spotlight" "1" "angles_y" "180" "origin_x" "75" "origin_y" "0" "origin_z" "-10" } } "LetterFront" { "fieldName" "LetterFront" "ControlName" "ImagePanel" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "60" "zpos" "3" "wide" "o2" "tall" "250" "proportionaltoparent" "1" "scaleImage" "1" "image" "trade_ups/trade_ups_letter_back_front" } "Stamp" { "fieldName" "Stamp" "ControlName" "ImagePanel" "visible" "1" "enabled" "1" "xpos" "c150" "ypos" "63" "zpos" "4" "wide" "o1" "tall" "120" "proportionaltoparent" "1" "scaleImage" "1" "image" "trade_ups/trade_ups_stamp_02" } "ApplyStampButton" { "ControlName" "CExButton" "fieldName" "ApplyStampButton" "xpos" "c182" "ypos" "p0.18" "zpos" "10" "wide" "p0.058" "tall" "p0.12" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_CollectionCrafting_ApplyStamp" "font" "HudFontSmallestBold" "textAlignment" "center" "centerwrap" "0" "wrap" "0" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "placestamp" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "actionsignallevel" "3" "proportionaltoparent" "1" "paintbackground" "0" "defaultFgColor_override" "50 50 50 245" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "200 100 80 255" } "SendEvelopeButton" { "ControlName" "CExButton" "fieldName" "SendEvelopeButton" "xpos" "cs-0.5" "ypos" "100" "zpos" "2" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "Send" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "envelopesend" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "actionsignallevel" "1" "proportionaltoparent" "1" "paintbackground" "1" "defaultFgColor_override" "235 226 202 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "200 100 80 255" } "TradeUpContainer" { "fieldName" "TradeUpContainer" "ControlName" "EditablePanel" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "s-1" "zpos" "2" "wide" "f0" "tall" "250" "bgcolor_override" "46 43 42 0" "paintborder" "0" "paintbackgroundtype" "0" "proportionaltoparent" "1" "PaperContainer" { "ControlName" "EditablePanel" "fieldName" "PaperContainer" "xpos" "cs-0.5" "ypos" "0" "zpos" "0" "wide" "o2" "tall" "p1" "visible" "1" "proportionaltoparent" "1" "BlankPaperImage" { "ControlName" "ImagePanel" "fieldName" "BlankPaperImage" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "p1" "tall" "p1" "visible" "1" "proportionaltoparent" "1" "scaleImage" "1" "image" "trade_ups/trade_ups_bg_blank" } "LocalizedPaperImagePaperImage" { "ControlName" "ImagePanel" "fieldName" "LocalizedPaperImagePaperImage" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "p1" "tall" "p1" "visible" "1" "proportionaltoparent" "1" "scaleImage" "1" "image" "trade_ups/trade_ups_bg" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "p0.79" "ypos" "p0.855" "zpos" "1" "wide" "p0.175" "tall" "p0.085" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_CollectionCrafting_Submit" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "doneselectingitems" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "actionsignallevel" "3" "proportionaltoparent" "1" "paintbackground" "0" "defaultFgColor_override" "235 226 202 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "200 100 80 255" } } } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "c250" "ypos" "38" "zpos" "20" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "cancel" "proportionaltoparent" "1" "actionsignallevel" "2" "paintbackground" "0" "pin_to_sibling" "MainContainer" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "150 60 45 255" "image_armedcolor" "200 80 60 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "image" "close_button" "scaleImage" "1" "proportionaltoparent" "1" } } "NextItemButton" { "ControlName" "CExButton" "fieldName" "NextItemButton" "xpos" "c165" "ypos" "70" "zpos" "100" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#TF_CollectionCrafting_NextItem" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "nextitem" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ShowExplanationsButton1" { "ControlName" "CExButton" "fieldName" "ShowExplanationsButton1" "xpos" "c250" "ypos" "70" "zpos" "100" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "?" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "startexplanation1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "DebugReload" { "ControlName" "CExButton" "fieldName" "DebugReload" "xpos" "c250" "ypos" "200" "zpos" "100" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "?" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "reload" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ShowExplanationsButton2" { "ControlName" "CExButton" "fieldName" "ShowExplanationsButton2" "xpos" "c250" "ypos" "70" "zpos" "100" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "?" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "startexplanation2" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "StartExplanation" { "ControlName" "CExplanationPopup" "fieldName" "StartExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "140" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-150" "end_y" "100" "end_wide" "300" "end_tall" "155" "callout_inparents_x" "c0" "callout_inparents_y" "150" "next_explanation" "ItemSlotsExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#TradeUpsExplanation_Overview_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "46 43 42 255" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#TradeUpsExplanation_Overview_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "85" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "46 43 42 255" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "close" "paintbackground" "0" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "117 107 94 255" "image_armedcolor" "200 80 60 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "close_button" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "125" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "200 80 60 255" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "260" "ypos" "125" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "nextexplanation" "paintbackground" "0" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "235 226 202 255" "image_armedcolor" "255 255 255 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "ItemSlotsExplanation" { "ControlName" "CExplanationPopup" "fieldName" "ItemSlotsExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "200" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c0" "end_y" "100" "end_wide" "300" "end_tall" "200" "callout_inparents_x" "c-130" "callout_inparents_y" "153" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#TradeUpsExplanation_ItemSlots_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "46 43 42 255" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#TradeUpsExplanation_ItemSlots_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "p0.8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "proportionaltoparent" "1" "fgcolor_override" "46 43 42 255" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "close" "paintbackground" "0" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "117 107 94 255" "image_armedcolor" "200 80 60 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "close_button" "scaleImage" "1" } } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "r30" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "prevexplanation" "proportionaltoparent" "1" "paintbackground" "0" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "235 226 202 255" "image_armedcolor" "255 255 255 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "r30" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "fgcolor_override" "200 80 60 255" } } "SigningExplanation" { "ControlName" "CExplanationPopup" "fieldName" "SigningExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "120" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-30" "end_y" "100" "end_wide" "300" "end_tall" "120" "callout_inparents_x" "c-130" "callout_inparents_y" "100" "next_explanation" "StampExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#TradeUpsExplanation_Signing_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "46 43 42 255" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#TradeUpsExplanation_Signing_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "p0.8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "proportionaltoparent" "1" "fgcolor_override" "46 43 42 255" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "close" "paintbackground" "0" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "117 107 94 255" "image_armedcolor" "200 80 60 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "close_button" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "r30" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "fgcolor_override" "200 80 60 255" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "260" "ypos" "r30" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "nextexplanation" "proportionaltoparent" "1" "paintbackground" "0" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "235 226 202 255" "image_armedcolor" "255 255 255 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "StampExplanation" { "ControlName" "CExplanationPopup" "fieldName" "StampExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "150" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-200" "end_y" "100" "end_wide" "300" "end_tall" "150" "callout_inparents_x" "c190" "callout_inparents_y" "123" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#TradeUpsExplanation_Stamp_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "46 43 42 255" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#TradeUpsExplanation_Stamp_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "p0.8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "proportionaltoparent" "1" "fgcolor_override" "46 43 42 255" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "close" "paintbackground" "0" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "117 107 94 255" "image_armedcolor" "200 80 60 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "close_button" "scaleImage" "1" } } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "r30" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "prevexplanation" "proportionaltoparent" "1" "paintbackground" "0" "defaultFgColor_override" "46 43 42 255" "armedFgColor_override" "200 80 60 255" "depressedFgColor_override" "46 43 42 255" "image_drawcolor" "235 226 202 255" "image_armedcolor" "255 255 255 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "r30" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "fgcolor_override" "200 80 60 255" } } } ================================================ FILE: resource/ui/econ/comboboxbackpackoverlaydialog.res ================================================ "resource/ui/econ/comboboxbackpackoverlaydialogbase.res" { "ComboBoxBackpackOverlayDialogBase" { "fieldName" "ComboBoxBackpackOverlayDialogBase" "visible" "1" "enabled" "1" "xpos" "c-140" "ypos" "105" "wide" "280" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "1" "border" "WhiteBorder" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "#TF_Item_SelectStyle" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "280" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "preview_model" { "ControlName" "CItemModelPanel" "fieldName" "preview_model" "xpos" "60" "ypos" "40" "zpos" "1" "wide" "160" "tall" "120" "visible" "1" "enabled" "1" "paintbackground" "0" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "model_xpos" "2" "model_ypos" "5" "model_wide" "160" "model_tall" "120" "text_ypos" "120" // Hide it off the bottom "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "force_use_model" "1" "use_item_rendertarget" "1" "allow_rot" "1" "inventory_image_type" "1" } } "ComboBox" { "ControlName" "ComboBox" "fieldName" "ComboBox" "Font" "HudFontSmallest" "xpos" "30" "ypos" "170" "zpos" "1" "wide" "220" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "disabledFgColor_override" "TanLight" "disabledBgColor_override" "Black" "selectionColor_override" "Black" "selectionTextColor_override" "TanLight" "defaultSelectionBG2Color_override" "Black" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "60" "ypos" "200" "zpos" "1" "wide" "70" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "150" "ypos" "200" "zpos" "1" "wide" "70" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_OK" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmapplydecodedialog.res ================================================ "resource/ui/confirmapplydecodedialog.res" { "ConfirmApplyDecodeDialog" { "fieldName" "ConfirmApplyDecodeDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "c-200" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "100" "ypos" "10" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_icon" { "ControlName" "ScalableImagePanel" "fieldName" "tool_icon" "xpos" "10" "ypos" "10" "zpos" "2" "wide" "16" "tall" "16" "visible" "1" "enabled" "1" "image" "backpack_jewel_modify_target_b_g" "tileImage" "0" "tileVertically" "0" "drawcolor" "112 176 74 255" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "subject_icon" { "ControlName" "ScalableImagePanel" "fieldName" "subject_icon" "xpos" "300" "ypos" "10" "zpos" "2" "wide" "16" "tall" "16" "visible" "1" "enabled" "1" "image" "backpack_jewel_modify_target_b_g" "tileImage" "0" "tileVertically" "0" "drawcolor" "71 98 145 255" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "ConfirmLabel" { "ControlName" "CExLabel" "fieldName" "ConfirmLabel" "font" "FontRegular14" "labelText" "%confirm_text%" "textAlignment" "center" "xpos" "20" "ypos" "120" "zpos" "0" "wide" "360" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "OptionalAppendLabel" { "ControlName" "CExLabel" "fieldName" "OptionalAppendLabel" "font" "HudFontSmall" "labelText" "%optional_append%" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "50" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "220" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CraftNameConfirm" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmapplygiftwrapdialog.res ================================================ "resource/ui/confirmapplygiftwrapdialog.res" { "ConfirmApplyGiftWrapDialog" { "fieldName" "ConfirmApplyGiftWrapDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "c-200" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "100" "ypos" "10" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "ConfirmLabel" { "ControlName" "CExLabel" "fieldName" "ConfirmLabel" "font" "FontRegular12" "labelText" "#ToolGiftWrapConfirm" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "ConfirmLabelStrange" { "ControlName" "CExLabel" "fieldName" "ConfirmLabelStrange" "font" "HudFontSmall" "labelText" "#ToolGiftWrapConfirmStrange" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "fgcolor_override" "LightRed" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "50" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "220" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CraftNameConfirm" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmapplypaintcandialog.res ================================================ "resource/ui/confirmapplypaintcandialog.res" { "ConfirmApplyPaintCanDialog" { "fieldName" "ConfirmApplyPaintCanDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "c-200" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "100" "ypos" "10" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "ConfirmLabel" { "ControlName" "CExLabel" "fieldName" "ConfirmLabel" "font" "FontRegular12" "labelText" "#ToolPaintConfirm" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "paint_model" { "ControlName" "CItemModelPanel" "fieldName" "paint_model" "xpos" "150" "ypos" "95" "zpos" "1" "wide" "100" "tall" "100" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "100" "model_tall" "100" "text_ypos" "100" "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "force_use_model" "1" "use_item_rendertarget" "1" "allow_rot" "1" "inventory_image_type" "1" } } "WarningLabel" { "ControlName" "CExLabel" "fieldName" "WarningLabel" "font" "HudFontSmall" "labelText" "#ToolPaintConfirmWarning" "textAlignment" "center" "xpos" "0" "ypos" "170" "zpos" "0" "wide" "400" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "fgcolor_override" "LightRed" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "50" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "220" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CraftNameConfirm" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmapplystrangepartapplicationdialog.res ================================================ "resource/ui/confirmapplystrangepartapplicationdialog.res" { "ConfirmApplyStrangePartApplicationDialog" { "fieldName" "ConfirmApplyStrangePartApplicationDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "c-200" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "100" "ypos" "10" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "ConfirmLabel" { "ControlName" "CExLabel" "fieldName" "ConfirmLabel" "font" "FontRegular12" "labelText" "#ToolStrangePartApplyConfirm" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "50" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "220" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CraftNameConfirm" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmapplystrangerestrictionapplicationdialog.res ================================================ "resource/ui/confirmapplystrangerestrictionapplicationdialog.res" { "ConfirmApplyStrangeRestrictionApplicationDialog" { "fieldName" "ConfirmApplyStrangeRestrictionApplicationDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "c-200" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "100" "ypos" "10" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "ConfirmLabel" { "ControlName" "CExLabel" "fieldName" "ConfirmLabel" "font" "FontRegular12" "labelText" "#ToolStrangeRestrictionApplyConfirm" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "100" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "50" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "220" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CraftNameConfirm" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmapplystrangifierdialog.res ================================================ "resource/ui/confirmapplystrangifierdialog.res" { "ConfirmApplyStrangifierDialog" { "fieldName" "ConfirmApplyStrangifierDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "c-200" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "95" "ypos" "10" "zpos" "0" "wide" "210" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "ConfirmLabel" { "ControlName" "CExLabel" "fieldName" "ConfirmLabel" "font" "FontRegular12" "labelText" "#ToolStrangifierConfirm" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "100" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "50" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "220" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CraftNameConfirm" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmapplyteamcolorpaintcandialog.res ================================================ "resource/ui/confirmapplyteamcolorpaintcandialog.res" { "ConfirmApplyTeamColorPaintCanDialog" { "fieldName" "ConfirmApplyTeamColorPaintCanDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "c-200" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "100" "ypos" "10" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "ConfirmLabel" { "ControlName" "CExLabel" "fieldName" "ConfirmLabel" "font" "FontRegular12" "labelText" "#ToolPaintConfirm" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "paint_model_red" { "ControlName" "CItemModelPanel" "fieldName" "paint_model_red" "xpos" "100" "ypos" "95" "zpos" "1" "wide" "100" "tall" "100" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "100" "model_tall" "100" "text_ypos" "100" "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "force_use_model" "1" "use_item_rendertarget" "1" "inventory_image_type" "1" "allow_rot" "1" } } "paint_model_blue" { "ControlName" "CItemModelPanel" "fieldName" "paint_model_blue" "xpos" "200" "ypos" "95" "zpos" "1" "wide" "100" "tall" "100" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "100" "model_tall" "100" "text_ypos" "100" "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "force_use_model" "1" "use_item_rendertarget" "1" "inventory_image_type" "1" "allow_rot" "1" } } "WarningLabel" { "ControlName" "CExLabel" "fieldName" "WarningLabel" "font" "HudFontSmall" "labelText" "#ToolPaintConfirmWarning" "textAlignment" "center" "xpos" "0" "ypos" "170" "zpos" "0" "wide" "400" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "fgcolor_override" "LightRed" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "50" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "220" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CraftNameConfirm" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmcustomizetexturedialog.res ================================================ "resource/ui/econ/confirmcustomizetexturedialog.res" { "ConfirmCustomizeTextureDialog" { "fieldName" "ConfirmCustomizeTextureDialog" "visible" "1" "enabled" "1" "xpos" "c-280" "ypos" "c-225" "wide" "560" "tall" "345" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_icon" { "ControlName" "ScalableImagePanel" "fieldName" "tool_icon" "xpos" "10" "ypos" "10" "zpos" "2" "wide" "16" "tall" "16" "visible" "1" "enabled" "1" "image" "backpack_jewel_modify_target_b_g" "tileImage" "0" "tileVertically" "0" "drawcolor" "112 176 74 255" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "100" "ypos" "10" "zpos" "0" "wide" "365" "tall" "60" "centerwrap" "1" } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "465" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "paintbackground" "0" "border" "BackpackItemBorder_3" } "subject_icon" { "ControlName" "ScalableImagePanel" "fieldName" "subject_icon" "xpos" "465" "ypos" "10" "zpos" "2" "wide" "16" "tall" "16" "visible" "1" "enabled" "1" "image" "backpack_jewel_modify_target_b_g" "tileImage" "0" "tileVertically" "0" "drawcolor" "71 98 145 255" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "465" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } // Dynamically sized and moded based on the current page "paint_model" { "ControlName" "CItemModelPanel" "fieldName" "paint_model" "xpos" "275" "ypos" "20" "zpos" "100" "wide" "160" "tall" "160" "visible" "1" "bgcolor_override" "0 0 0 0" "noitem_textcolor" "117 107 94 255" //"PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "00" "model_ypos" "00" "model_wide" "160" "model_tall" "160" //"text_ypos" "1" //"text_center" "1" //"name_only" "1" "model_only" "1" "paint_icon_hide" "1" "itemmodelpanel" { "force_use_model" "1" "inventory_image_type" "1" "use_item_rendertarget" "0" "allow_rot" "1" } } // ---------------------------- "SelectImagePage" { "ControlName" "EditablePanel" "fieldName" "SelectImagePage" "xpos" "10" "ypos" "80" "wide" "540" "tall" "260" "visible" "1" "enabled" "1" "PageTitleLabel" { "ControlName" "CExLabel" "fieldName" "PageTitleLabel" "font" "HudFontMediumSmall" "labelText" "#ToolCustomizeTextureStep1" "textAlignment" "north-west" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "540" "tall" "20" } "ImagePaletteGroupBox" { "ControlName" "EditablePanel" "fieldName" "ImagePaletteGroupBox" "xpos" "0" "ypos" "25" "zpos" "-1" "wide" "350" "tall" "200" "border" "GrayDialogBorder" "bgcolor_override" "DarkGrey" "UseAvatarRadio" { "ControlName" "RadioButton" "fieldName" "UseAvatarRadio" "xpos" "10" "ypos" "10" "wide" "330" "tall" "20" "labelText" "#ToolCustomizeTextureUseAvatarImage" "textAlignment" "west" "font" "HudFontSmallBold" } "UseAnyImageRadio" { "ControlName" "RadioButton" "fieldName" "UseAnyImageRadio" "xpos" "10" "ypos" "80" "wide" "330" "tall" "20" "labelText" "#ToolCustomizeTextureUseAnyImage" "textAlignment" "west" "font" "HudFontSmallBold" } "BrowseForNewImageButton" { "ControlName" "CExButton" "fieldName" "BrowseForNewImageButton" "xpos" "40" "ypos" "110" "zpos" "1" "wide" "300" "tall" "20" "labelText" "#ToolCustomizeTextureBrowseButton" "font" "HudFontSmallBold" "Command" "pick_image" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ForBestResultsLabel" { "ControlName" "CExLabel" "fieldName" "ForBestResultsLabel" "font" "HudFontSmall" "xpos" "40" "ypos" "140" "wide" "300" "tall" "40" "labelText" "#ToolCustomizeTextureBestResults" "textAlignment" "north-west" "wrap" "1" } } "PreviewImageGroupBox" { "ControlName" "EditablePanel" "fieldName" "PreviewImageGroupBox" "xpos" "360" "ypos" "25" "zpos" "-1" "wide" "180" "tall" "200" "border" "GrayDialogBorder" "bgcolor_override" "DarkGrey" "PreviewCroppedImage" { "ControlName" "CRGBAImagePanel" "fieldName" "PreviewCroppedImage" "xpos" "20" "ypos" "20" "zpos" "-1" "wide" "140" "tall" "140" } "SquarizeComboBox" { "ControlName" "ComboBox" "fieldName" "SquarizeComboBox" "xpos" "20" "ypos" "170" "zpos" "-1" "wide" "140" "tall" "15" "editable" "0" "font" "HudFontSmall" //"fgcolor_override" "235 226 202 255" "bgcolor_override" "0 0 0 255" //"disabledFgColor_override" "235 226 202 255" "disabledBgColor_override" "0 0 0 255" "selectionColor_override" "0 0 0 255" "selectionTextColor_override" "235 226 202 255" "defaultSelectionBG2Color_override" "0 0 0 0" } } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "0" "ypos" "230" "zpos" "1" "wide" "130" "tall" "25" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "NextButton" { "ControlName" "CExButton" "fieldName" "NextButton" "xpos" "410" "ypos" "230" "zpos" "1" "wide" "130" "tall" "25" "labelText" "#TF_NextCarat" "font" "FontBold14" "textAlignment" "center" "Command" "next_page" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } // ---------------------------- "AdjustFilterPage" { "ControlName" "EditablePanel" "fieldName" "AdjustFilterPage" "xpos" "10" "ypos" "80" "wide" "540" "tall" "260" "visible" "1" "enabled" "1" "PageTitleLabel" { "ControlName" "CExLabel" "fieldName" "PageTitleLabel" "font" "HudFontMediumSmall" "labelText" "#ToolCustomizeTextureStep2" "textAlignment" "north-west" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "540" "tall" "20" } "FilterOptionsGroupBox" { "ControlName" "EditablePanel" "fieldName" "FilterOptionsGroupBox" "Font" "HudFontSmallestBold" "xpos" "0" "ypos" "25" "zpos" "-1" "wide" "160" "tall" "200" "border" "GrayDialogBorder" "bgcolor_override" "DarkGrey" "FilterLabel" { "ControlName" "CExLabel" "fieldName" "FilterLabel" "font" "HudFontSmallBold" "xpos" "10" "ypos" "10" "wide" "140" "tall" "20" "labelText" "Filter:" // !FIXME! Localize "textAlignment" "north-west" "visible" "0" } "FilterComboBox" { "ControlName" "ComboBox" "fieldName" "FilterComboBox" "xpos" "10" "ypos" "30" "zpos" "-1" "wide" "140" "tall" "15" "editable" "0" "font" "HudFontSmall" "visible" "0" //"fgcolor_override" "235 226 202 255" "bgcolor_override" "0 0 0 255" //"disabledFgColor_override" "235 226 202 255" "disabledBgColor_override" "0 0 0 255" "selectionColor_override" "0 0 0 255" "selectionTextColor_override" "235 226 202 255" "defaultSelectionBG2Color_override" "0 0 0 0" } "PainterlyOptions" { "ControlName" "EditablePanel" "fieldName" "PainterlyOptions" "xpos" "10" "ypos" "50" "zpos" "-1" "wide" "140" "tall" "150" "FilterDescriptionLabel" { "ControlName" "CExLabel" "fieldName" "FilterDescriptionLabel" "xpos" "0" "ypos" "0" "wide" "140" "tall" "80" "labelText" "#ToolCustomizeTexturePainterlyDescription" "textAlignment" "north-west" "font" "HudFontSmall" "wrap" "1" } } "StencilOptions" { "ControlName" "EditablePanel" "fieldName" "StencilOptions" "xpos" "10" "ypos" "50" "zpos" "-1" "wide" "140" "tall" "150" "FilterDescriptionLabel" { "ControlName" "CExLabel" "fieldName" "FilterDescriptionLabel" "xpos" "0" "ypos" "0" "wide" "120" "tall" "60" "labelText" "#ToolCustomizeTextureStencilDescription" "textAlignment" "north-west" "font" "HudFontSmall" "wrap" "1" "visible" "0" } "ColorPaletteLabel" { "ControlName" "CExLabel" "fieldName" "ColorPaletteLabel" "xpos" "0" "ypos" "60" "wide" "140" "tall" "15" "labelText" "#ToolCustomizeTextureColorPalette" "textAlignment" "north-west" "font" "HudFontSmallBold" } "PrevStencilPaletteButton" { "ControlName" "CExButton" "fieldName" "PrevStencilPaletteButton" "xpos" "0" "ypos" "80" "zpos" "1" "wide" "65" "tall" "15" "labelText" "<<" "font" "HudFontSmallBold" "textAlignment" "center" "Command" "prev_stencil_palette" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "NextStencilPaletteButton" { "ControlName" "CExButton" "fieldName" "NextStencilPaletteButton" "xpos" "75" "ypos" "80" "zpos" "1" "wide" "65" "tall" "15" "labelText" ">>" "font" "HudFontSmallBold" "textAlignment" "center" "Command" "next_stencil_palette" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "StencilGradientMap" { "ControlName" "CustomTextureStencilGradientMapWidget" "fieldName" "StencilGradientMap" "xpos" "0" "ypos" "100" "zpos" "1" "wide" "140" "tall" "20" } "StencilModeComboBox" { "ControlName" "ComboBox" "fieldName" "StencilModeComboBox" "xpos" "0" "ypos" "125" "zpos" "-1" "wide" "140" "tall" "15" "editable" "0" "font" "HudFontSmall" //"fgcolor_override" "235 226 202 255" "bgcolor_override" "0 0 0 255" //"disabledFgColor_override" "235 226 202 255" "disabledBgColor_override" "0 0 0 255" "selectionColor_override" "0 0 0 255" "selectionTextColor_override" "235 226 202 255" "defaultSelectionBG2Color_override" "0 0 0 0" } } } "PreviewImageGroupBox" { "ControlName" "EditablePanel" "fieldName" "PreviewImageGroupBox" "xpos" "170" "ypos" "25" "zpos" "-1" "wide" "180" "tall" "200" "border" "GrayDialogBorder" "bgcolor_override" "DarkGrey" "PreviewFilteredImage" { "ControlName" "CRGBAImagePanel" "fieldName" "PreviewFilteredImage" "xpos" "20" "ypos" "30" "zpos" "-1" "wide" "140" "tall" "140" } } "PreviewModelGroupBox" { "ControlName" "EditablePanel" "fieldName" "PreviewModelGroupBox" "xpos" "360" "ypos" "25" "zpos" "-1" "wide" "180" "tall" "200" "border" "GrayDialogBorder" "bgcolor_override" "DarkGrey" "GradientBgPanel" { "ControlName" "ImagePanel" "FieldName" "GradientBgPanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "160" "tall" "180" "visible" "1" "tileImage" "0" "scaleImage" "1" "image" "loadout_bottom_gradient" "border" "ButtonBorder" "paintbackgroundtype" "2" "paintbackground" "1" } "DragToRotateLabel" { "ControlName" "CExLabel" "fieldName" "DragToRotateLabel" "font" "HudFontSmall" "labelText" "#Store_PreviewItem" "textAlignment" "center" "xpos" "10" "ypos" "170" "zpos" "2" "wide" "160" "tall" "20" "centerwrap" "1" } } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "00" "ypos" "230" "zpos" "1" "wide" "130" "tall" "25" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "BackButton" { "ControlName" "CExButton" "fieldName" "BackButton" "xpos" "270" "ypos" "230" "zpos" "1" "wide" "130" "tall" "25" "labelText" "#TF_BackCarat" "font" "FontBold14" "textAlignment" "center" "Command" "prev_page" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "NextButton" { "ControlName" "CExButton" "fieldName" "NextButton" "xpos" "410" "ypos" "230" "zpos" "1" "wide" "130" "tall" "25" "labelText" "#TF_NextCarat" "font" "FontBold14" "textAlignment" "center" "Command" "next_page" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } // ---------------------------- "FinalConfirmPage" { "ControlName" "EditablePanel" "fieldName" "FinalConfirmPage" "xpos" "10" "ypos" "80" "wide" "540" "tall" "260" "PageTitleLabel" { "ControlName" "CExLabel" "fieldName" "PageTitleLabel" "font" "HudFontMediumSmall" "labelText" "#ToolCustomizeTextureStep3" "textAlignment" "north-west" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "540" "tall" "20" } "WarningTextGroupBox" { "ControlName" "EditablePanel" "fieldName" "WarningTextGroupBox" "Font" "HudFontSmallestBold" "xpos" "0" "ypos" "25" "zpos" "-1" "wide" "350" "tall" "200" "border" "GrayDialogBorder" "bgcolor_override" "DarkGrey" "WarningText" { "ControlName" "CExLabel" "fieldName" "WarningText" "font" "HudFontSmall" "xpos" "10" "ypos" "10" "wide" "330" "tall" "180" "labelText" "#ToolCustomizeTextureConfirmWarning" "textAlignment" "west" "wrap" "1" } } "PreviewModelGroupBox" { "ControlName" "EditablePanel" "fieldName" "PreviewModelGroupBox" "xpos" "360" "ypos" "25" "zpos" "-1" "wide" "180" "tall" "200" "border" "GrayDialogBorder" "bgcolor_override" "DarkGrey" "GradientBgPanel" { "ControlName" "ImagePanel" "FieldName" "GradientBgPanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "160" "tall" "180" "visible" "1" "tileImage" "0" "scaleImage" "1" "image" "loadout_bottom_gradient" "border" "ButtonBorder" "paintbackgroundtype" "2" "paintbackground" "1" } "DragToRotateLabel" { "ControlName" "CExLabel" "fieldName" "DragToRotateLabel" "font" "HudFontSmall" "labelText" "#ToolCustomizeTextureDragToRotate" "textAlignment" "center" "xpos" "10" "ypos" "170" "zpos" "2" "wide" "160" "tall" "20" "centerwrap" "1" } } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "00" "ypos" "230" "zpos" "1" "wide" "130" "tall" "25" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "BackButton" { "ControlName" "CExButton" "fieldName" "BackButton" "xpos" "270" "ypos" "230" "zpos" "1" "wide" "130" "tall" "25" "labelText" "#TF_BackCarat" "font" "FontBold14" "textAlignment" "center" "Command" "prev_page" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "410" "ypos" "230" "zpos" "1" "wide" "130" "tall" "25" "labelText" "#ToolCustomizeTextureOKButton" "font" "FontBold14" "textAlignment" "center" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } // ---------------------------- "PerformingActionPage" { "ControlName" "EditablePanel" "fieldName" "PerformingActionPage" "xpos" "10" "ypos" "80" "wide" "540" "tall" "260" "PleaseWaitLabel" { "ControlName" "CExLabel" "fieldName" "PleaseWaitLabel" "font" "HudFontSmallBold" "labelText" "#ToolCustomizeTexturePleaseWait" "textAlignment" "center" "xpos" "20" "ypos" "25" "zpos" "0" "wide" "340" "tall" "200" "centerwrap" "1" } "PreviewModelGroupBox" { "ControlName" "EditablePanel" "fieldName" "PreviewModelGroupBox" "xpos" "360" "ypos" "25" "zpos" "-1" "wide" "180" "tall" "200" "border" "GrayDialogBorder" "bgcolor_override" "DarkGrey" "GradientBgPanel" { "ControlName" "ImagePanel" "FieldName" "GradientBgPanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "160" "tall" "180" "visible" "1" "tileImage" "0" "scaleImage" "1" "image" "loadout_bottom_gradient" "border" "ButtonBorder" "paintbackgroundtype" "2" "paintbackground" "1" } "DragToRotateLabel" { "ControlName" "CExLabel" "fieldName" "DragToRotateLabel" "font" "HudFontSmall" "labelText" "#ToolCustomizeTextureDragToRotate" "textAlignment" "center" "xpos" "10" "ypos" "170" "zpos" "2" "wide" "160" "tall" "20" "centerwrap" "1" } } } } ================================================ FILE: resource/ui/econ/confirmdialog.res ================================================ "resource/ui/confirmdialog.res" { "ConfirmDialog" { "ControlName" "Frame" "fieldName" "ConfirmDialog" "xpos" "c-150" "ypos" "140" "wide" "324" "tall" "200" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "2" "paintbackground" "1" "paintborder" "0" "border" "WhiteBorder" "bgcolor_override" "DarkerGrey" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "labelText" "#ConfirmTitle" "textAlignment" "center" "xpos" "0" "ypos" "5" "zpos" "1" "wide" "324" "tall" "30" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "ExplanationLabel" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel" "font" "FontRegular12" "labelText" "%text%" "textAlignment" "center" "xpos" "8" "ypos" "40" "zpos" "1" "wide" "308" "tall" "80" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "166" "ypos" "170" "zpos" "20" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ConfirmButton" { "ControlName" "CExButton" "fieldName" "ConfirmButton" "xpos" "8" "ypos" "170" "zpos" "20" "wide" "150" "tall" "25" "default" "1" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#ConfirmButtonText" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "confirm" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmdialogabandonnopenalty.res ================================================ "resource/ui/confirmdialogabandonnopenalty.res" { "ConfirmDialog" { "ControlName" "Frame" "fieldName" "ConfirmDialog" "xpos" "c-150" "ypos" "140" "wide" "300" "tall" "200" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "paintbackground" "1" "bgcolor_override" "DarkerGrey" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "labelText" "#ConfirmTitle" "textAlignment" "north" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "300" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "AbandonIcon" { "ControlName" "ImagePanel" "fieldName" "AbandonIcon" "xpos" "10" "ypos" "52" "wide" "40" "tall" "40" "image" "pve/mvm_timeout_active_large" "visible" "0" "enabled" "0" "scaleImage" "1" } "ExplanationLabel" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel" "font" "FontRegular12" "labelText" "%text%" "textAlignment" "north-west" "xpos" "60" "ypos" "50" "zpos" "1" "wide" "220" "tall" "170" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "190" "ypos" "165" "zpos" "20" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ConfirmButton" { "ControlName" "CExButton" "fieldName" "ConfirmButton" "xpos" "10" "ypos" "165" "zpos" "20" "wide" "175" "tall" "20" "default" "1" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#ConfirmButtonText" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "confirm" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmdialogabandonpenalty.res ================================================ "resource/ui/confirmdialogabandonpenalty.res" { "ConfirmDialog" { "ControlName" "Frame" "fieldName" "ConfirmDialog" "xpos" "c-150" "ypos" "140" "wide" "300" "tall" "200" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "paintbackground" "1" "bgcolor_override" "DarkerGrey" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "labelText" "#ConfirmTitle" "textAlignment" "north" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "300" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "AbandonIcon" { "ControlName" "ImagePanel" "fieldName" "AbandonIcon" "xpos" "10" "ypos" "52" "wide" "40" "tall" "40" "image" "pve/mvm_timeout_active_large" "visible" "0" "enabled" "0" "scaleImage" "1" } "ExplanationLabel" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel" "font" "FontRegular12" "labelText" "%text%" "textAlignment" "north-west" "xpos" "60" "ypos" "50" "zpos" "1" "wide" "220" "tall" "170" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "190" "ypos" "165" "zpos" "20" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ConfirmButton" { "ControlName" "CExButton" "fieldName" "ConfirmButton" "xpos" "10" "ypos" "165" "zpos" "20" "wide" "175" "tall" "20" "default" "1" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#ConfirmButtonText" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "confirm" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/confirmdialogabandonsafe.res ================================================ "resource/ui/confirmdialogabandonsafe.res" { "ConfirmDialog" { "ControlName" "Frame" "fieldName" "ConfirmDialog" "xpos" "c-150" "ypos" "140" "wide" "300" "tall" "200" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "paintbackground" "1" "bgcolor_override" "DarkerGrey" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "labelText" "#ConfirmTitle" "textAlignment" "north" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "300" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "ExplanationLabel" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel" "font" "FontRegular12" "labelText" "%text%" "textAlignment" "north" "xpos" "40" "ypos" "50" "zpos" "1" "wide" "220" "tall" "170" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "190" "ypos" "165" "zpos" "20" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ConfirmButton" { "ControlName" "CExButton" "fieldName" "ConfirmButton" "xpos" "10" "ypos" "165" "zpos" "20" "wide" "175" "tall" "20" "default" "1" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#ConfirmButtonText" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "confirm" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/genericnotificationtoast.res ================================================ "resource/ui/genericnotificationtoast.res" { "GenericNotificationToast" { "ControlName" "CGenericNotificationToast" "fieldName" "GenericNotificationToast" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "150" "tall" "50" "visible" "1" "enabled" "1" "fgcolor" "56 47 29 255" "fgcolor_override" "56 47 29 255" } "AvatarBGPanel" { "ControlName" "EditablePanel" "fieldName" "AvatarBGPanel" "xpos" "5" "ypos" "5" "zpos" "-1" "wide" "36" "tall" "36" "visible" "1" "bgcolor_override" "117 107 94 255" "PaintBackgroundType" "2" } "AvatarImage" { "ControlName" "CAvatarImagePanel" "fieldName" "AvatarImage" "xpos" "7" "ypos" "7" "zpos" "0" "wide" "32" "tall" "32" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "52 48 45 255" } "AvatarTextLabel" { "ControlName" "CExLabel" "fieldName" "AvatarTextLabel" "fgcolor" "TanLight" "xpos" "47" "ypos" "5" "zpos" "2" "wide" "98" "tall" "38" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "labelText" "%avatartext%" "textAlignment" "west" "font" "FontRegular9" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "fgcolor" "TanLight" "xpos" "5" "ypos" "5" "zpos" "2" "wide" "140" "tall" "38" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "labelText" "%text%" "textAlignment" "west" "font" "FontRegular9" } } ================================================ FILE: resource/ui/econ/genericnotificationtoastmainmenu.res ================================================ #base "genericnotificationtoast.res" "resource/ui/genericnotificationtoastmainmenu.res" { "TextLabel" { "wide" "138" "tall" "38" "font" "FontRegular12" } } ================================================ FILE: resource/ui/econ/genericwaitingdialog.res ================================================ "resource/ui/genericwaitingdialog.res" { "GenericWaitingDialog" { "fieldName" "GenericWaitingDialog" "visible" "1" "enabled" "1" "xpos" "c-100" "ypos" "200" "wide" "200" "tall" "105" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "1" "settitlebarvisible" "0" "border" "NoBorder" } "TitleLabel" { "ControlName" "Label" "fieldName" "TitleLabel" "font" "FontBold16" "xpos" "0" "ypos" "8" "zpos" "0" "wide" "200" "tall" "42" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "centerwrap" "1" "labelText" "%updatetext%" "textAlignment" "center" "fgcolor_override" "TanLight" } "EllipsesLabel" { "ControlName" "Label" "fieldName" "EllipsesLabel" "font" "FontBold14" "xpos" "0" "ypos" "42" "zpos" "0" "wide" "200" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%ellipses%" "textAlignment" "center" "fgcolor_override" "TanLight" "bgcolor_override" "Transparent" } "DurationLabel" { "ControlName" "Label" "fieldName" "DurationLabel" "font" "FontBold14" "xpos" "0" "ypos" "52" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%duration%" "textAlignment" "center" "fgcolor_override" "TanLight" "bgcolor_override" "Transparent" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "50" "ypos" "70" "zpos" "1" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "user_close" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/inspectionpanel.res ================================================ "resource/ui/econ/questeditorpanel.res" { "BGImage" { "ControlName" "ImagePanel" "fieldName" "BGImage" "xpos" "cs-0.5" "ypos" "0" "zpos" "1" "wide" "o1" "tall" "p0.75" "visible" "0" "enabled" "0" "image" "item_carousel_bg" "scaleImage" "1" "proportionaltoparent" "1" } "ItemName" { "ControlName" "CItemModelPanel" "fieldName" "ItemName" "xpos" "0" "ypos" "6" "zpos" "5" "wide" "f0" "tall" "60" "visible" "1" "paintborder" "0" "mouseinputenabled" "0" "text_ypos" "15" "text_center" "0" "paint_icon_hide" "1" "model_hide" "1" "text_forcesize" "4" "name_only" "1" "proportionaltoparent" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" "continued_velocity" "1" } } "ModelInspectionPanel" { "fieldName" "ModelInspectionPanel" "xpos" "cs-0.5" "ypos" "10" "zpos" "5" "wide" "o1.5" "tall" "p0.8" "visible" "1" "proportionaltoparent" "1" "force_use_model" "1" "use_item_rendertarget" "0" "allow_rot" "1" "allow_pitch" "1" "max_pitch" "30" "use_pedestal" "1" "use_particle" "1" "fov" "75" "consume_mode" { "xpos" "20" "wide" "o1.5" "tall" "p0.5" "fov" "60" "proportionaltoparent" "0" } "model" { "force_pos" "1" "angles_x" "7" "angles_y" "130" "angles_z" "0" "origin_x" "175" "origin_y" "0" "origin_z" "0" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } "lights" { "default" { "name" "directional" "color" "1 1 1" "direction" "0 0 -1" } "spot light" { "name" "spot" "color" "1 .9 .9" "attenuation" "4.5 0 0" "origin" "0 0 100" "direction" "1 0 -0.5" "inner_cone_angle" "1" "outer_cone_angle" "90" "maxDistance" "1000" "exponent" "25" } "point light" { "name" "point" "color" ".7 .8 1" "attenuation" "15 0 0" "origin" "15 -50 -200" "maxDistance" "1000" } } } "TeamNavPanel" { "ControlName" "CNavigationPanel" "fieldName" "TeamNavPanel" "xpos" "cs-0.5" "ypos" "c-135" "zpos" "100" "wide" "60" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "auto_scale" "1" "auto_layout" "1" "selected_button_default" "0" "auto_layout_vertical_buffer" "-4" "display_vertically" "0" "align" "west" "consume_mode" { "xpos" "cs-0.47" "ypos" "r105" } "ButtonSettings" { "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "textAlignment" "south-west" "scaleImage" "1" "fgcolor" "TanDark" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanDark" "depressedFgColor_override" "TanDark" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "paintbackground" "0" "paintbackgroundtype" "0" "defaultBgColor_Override" "0 0 0 255" "paintborder" "0" "image_drawcolor" "255 255 255 77" "image_armedcolor" "255 255 255 128" "image_selectedcolor" "TanLight" "stayselectedonclick" "1" "keyboardinputenabled" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "scaleImage" "1" } } "Buttons" { "all" { "userdata" "2" "image_default" "store/store_redteam" "image_armed" "store/store_redteam" "image_selected" "store/store_redteam" "SubImage" { "image" "store/store_redteam" } } "scout" { "userdata" "3" "image_default" "store/store_blueteam" "image_armed" "store/store_blueteam" "image_selected" "store/store_blueteam" "SubImage" { "image" "store/store_blueteam" } } } } "PaintkitPreviewContainer" { "ControlName" "EditablePanel" "fieldName" "PaintkitPreviewContainer" "xpos" "cs-0.5" "ypos" "p.68" "wide" "400" "tall" "100" "zpos" "100" "visible" "1" "bgcolor_override" "DarkerGrey" "PaintBackgroundType" "2" "mouseinputenabled" "1" "proportionaltoparent" "1" "paintborder" "0" "fixed_item" { "tall" "100" "visible" "1" } "fixed_paintkit" { "tall" "125" "visible" "1" } "consume_mode" { "xpos" "cs-0.31" "ypos" "r110" "bgcolor_override" "Transparent" } "DebugButton" { "ControlName" "CExImageButton" "fieldName" "DebugButton" "xpos" "5" "ypos" "0" "zpos" "1005" "wide" "8" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "debug_menu" "proportionaltoparent" "1" "actionsignallevel" "2" "paintbackground" "0" "defaultFgColor_override" "Transparent" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "TanDark" "image_armedcolor" "LightRed" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" "image" "glyph_workshop_edit" "scaleImage" "1" } } "ComboBoxValidPaintkits" { "ControlName" "ComboBox" "fieldName" "ComboBoxValidPaintkits" "Font" "HudFontSmallest" "wrap" "0" "xpos" "80" "ypos" "10" "zpos" "100" "wide" "165" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "default" "0" "actionsignallevel" "2" "proportionaltoparent" "1" "fixed_paintkit" { "visible" "0" } "fgcolor_override" "TanLight" "bgcolor_override" "DarkGrey" "disabledFgColor_override" "TanLight" "disabledBgColor_override" "DarkGrey" "selectionColor_override" "Transparent" "selectionTextColor_override" "TanLight" "defaultSelectionBG2Color_override" "Transparent" } "PaintkitLabel" { "ControlName" "CExLabel" "fieldName" "PaintkitLabel" "font" "HudFontSmallest" "labelText" "#TF_ItemPreview_ItemPaintkit" "textAlignment" "west" "xpos" "8" "ypos" "10" "wide" "70" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "fixed_paintkit" { "visible" "0" } } "ComboBoxValidItems" { "ControlName" "ComboBox" "fieldName" "ComboBoxValidItems" "Font" "HudFontSmallest" "wrap" "0" "xpos" "80" "ypos" "30" "fixed_paintkit" { "ypos" "10" } "zpos" "100" "wide" "165" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "default" "0" "actionsignallevel" "2" "proportionaltoparent" "1" "fixed_item" { "visible" "0" } "consume_mode" { "xpos" "76" "ypos" "25" } "fgcolor_override" "TanLight" "bgcolor_override" "DarkGrey" "disabledFgColor_override" "TanLight" "disabledBgColor_override" "DarkGrey" "selectionColor_override" "Transparent" "selectionTextColor_override" "TanLight" "defaultSelectionBG2Color_override" "Transparent" } "ItemLabel" { "ControlName" "CExLabel" "fieldName" "ItemLabel" "font" "HudFontSmallest" "labelText" "#TF_ItemPreview_ItemPreview" "textAlignment" "west" "xpos" "8" "ypos" "30" "fixed_paintkit" { "ypos" "10" } "wide" "70" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "fixed_item" { "visible" "0" } "consume_mode" { "xpos" "7" "ypos" "25" "labelText" "#TF_ItemPreview_RedeemItem" } } "WearSlider" { "ControlName" "Slider" "fieldName" "WearSlider" "xpos" "8" "ypos" "60" "fixed_item" { "ypos" "30" } "zpos" "1" "wide" "234" "tall" "30" "numticks" "4" "rangemin" "1" "rangemax" "5" "lefttext" "#TFUI_InvTooltip_BattleScared" "righttext" "#TFUI_InvTooltip_FactoryNew" "proportionaltoparent" "1" "actionsignallevel" "2" "fixed_paintkit" { "visible" "0" } "consume_mode" { "visible" "0" } } "WearLabel" { "ControlName" "CExLabel" "fieldName" "WearLabel" "font" "HudFontSmallest" "labelText" "#TF_ItemPreview_ItemWear" "textAlignment" "west" "xpos" "8" "ypos" "50" "fixed_item" { "ypos" "30" } "wide" "70" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "fixed_paintkit" { "visible" "0" } "consume_mode" { "visible" "0" } } "NewSeedButton" { "ControlName" "Button" "fieldName" "NewSeedButton" "font" "FontBold14" "xpos" "c57" "ypos" "35" "fixed_item" { "ypos" "50" } "fixed_paintkit" { "ypos" "55" } "zpos" "10" "wide" "130" "tall" "25" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ItemPreview_PaintkitSeed" "actionsignallevel" "2" "use_proportional_insets" "1" "textAlignment" "center" "proportionaltoparent" "1" "keyboardinputenabled" "0" "command" "random_seed" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "consume_mode" { "visible" "0" } } "SeedTextEntry" { "ControlName" "TextEntry" "fieldName" "SeedTextEntry" "xpos" "255" "ypos" "10" "fixed_item" { "ypos" "50" } "fixed_paintkit" { "ypos" "30" } "zpos" "10" "wide" "115" "tall" "20" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "actionsignallevel" "2" "default" "1" "NumericInputOnly" "1" "maxchars" "20" "defaultFgColor_override" "TanLight" "defaultBgColor_override" "DarkGrey" "selectedFgColor_override" "DarkGrey" "selectedBgColor_override" "TanLight" "consume_mode" { "visible" "0" } } "MarketButton" { "ControlName" "CExButton" "fieldName" "MarketButton" "font" "FontBold14" "xpos" "c57" "ypos" "65" "fixed_item" { "ypos" "50" } "fixed_paintkit" { "ypos" "90" } "consume_mode" { "xpos" "c-193" "ypos" "r80" "wide" "234" } "zpos" "100" "wide" "130" "tall" "25" "visible" "1" "enabled" "1" "labelText" "#TF_ItemAd_ViewOnMarket" "textinsetx" "0" "textAlignment" "center" "proportionaltoparent" "1" "paintbackground" "1" "command" "market" "actionsignallevel" "2" "use_proportional_insets" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } } ================================================ FILE: resource/ui/econ/inspectionpanel_cosmetic.res ================================================ "resource/ui/econ/inspectionpanel_cosmetic.res" { "storepreviewitem" { "ControlName" "CStorePreviewItemPanel" "fieldName" "storepreviewitem" "xpos" "0" "ypos" "0" "zpos" "1000" "wide" "f0" "tall" "f0" "autoResize" "0" "skip_autoresize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "small_vertical_break_size" "0" "medium_vertical_break_size" "6" "big_vertical_break_size" "7" "horizontal_break_size" "3" "paint_style_buttons_y" "c-140" "control_button_width" "70" "control_button_height" "15" "control_button_y" "c-190" "FullscreenStorePreview" { "ControlName" "CMouseMessageForwardingPanel" "fieldName" "FullscreenStorePreview" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "f0" "tall" "f0" "visible" "0" "enabled" "1" "paintbackground" "1" "PaintBackgroundType" "0" "bgcolor_override" "0 0 0 255" "proportionaltoparent" "1" "fullscreen_fade_to_black_duration" "0.32" "fullscreen_modelpanel_origin_x" "275" "fullscreen_modelpanel_origin_y" "0" "fullscreen_modelpanel_origin_z" "-30" "ui_fadeout_time" "3.0" "ui_fadeout_duration" "2.0" "RotateLeftButton" { "ControlName" "CExButton" "fieldName" "RotateLeftButton" "xpos" "c-200" "ypos" "c-10" "zpos" "4" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "<" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintbackground" "0" "defaultFgColor_override" "118 107 94 255" "armedFgColor_override" "128 117 104 255" "depressedFgColor_override" "236 227 203 255" } "RotateRightButton" { "ControlName" "CExButton" "fieldName" "RotateRightButton" "xpos" "c180" "ypos" "c-10" "zpos" "4" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" ">" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintbackground" "0" "defaultFgColor_override" "118 107 94 255" "armedFgColor_override" "128 117 104 255" "depressedFgColor_override" "236 227 203 255" } "ZoomButton" { "ControlName" "CExImageButton" "fieldName" "ZoomButton" "xpos" "r24" "ypos" "50" "zpos" "4" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "zoom_toggle" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintbackground" "0" "image_drawcolor" "118 107 94 200" "image_armedcolor" "246 247 213 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "store/store_zoom" "scaleImage" "1" } } } } "ScrollBar" { "ControlName" "ScrollBar" "FieldName" "ScrollBar" "xpos" "c222" "ypos" "c-120" "wide" "11" "tall" "200" "zpos" "1000" "visible" "1" "nobuttons" "1" "Slider" { "PaintBackgroundType" "2" "fgcolor_override" "118 107 94 255" } "UpButton" { "ControlName" "Button" "FieldName" "UpButton" "visible" "0" "tall" "0" "wide" "0" } "DownButton" { "ControlName" "Button" "FieldName" "DownButton" "visible" "0" "tall" "0" "wide" "0" } } // Fullscreen background panel "BgPanel" { "ControlName" "EditablePanel" "fieldName" "BgPanel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "PaintBackgroundType" "0" "bgcolor_override" "0 0 0 128" } // Rounded dialog border "DialogFrame" { "ControlName" "EditablePanel" "fieldName" "DialogFrame" "xpos" "c-240" "ypos" "c-200" "zpos" "0" "wide" "480" "tall" "300" "visible" "1" "enabled" "1" "paintbackground" "1" "border" "WhiteBorder" "bgcolor_override" "DarkGrey" "PaintBorder" "1" // Background for the player model & item preview panels "PreviewViewportBg" { "ControlName" "EditablePanel" "fieldName" "PreviewViewportBg" "xpos" "10" "ypos" "18" "zpos" "1" "wide" "220" "tall" "264" "visible" "1" "enabled" "1" "paintborder" "1" "border" "StoreInnerShadowBorder" } "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontBold14" "labelText" "%itemname%" "textAlignment" "west" "xpos" "240" "ypos" "17" "wide" "221" "tall" "15" "autoResize" "0" "skip_autoresize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } // Scrollable editable panel for right-hand side of preview, for all text details "DetailsView" { "ControlName" "EditablePanel" "fieldName" "DetailsView" "xpos" "240" "ypos" "30" "zpos" "100" "wide" "230" "tall" "201" "visible" "1" "PaintBackgroundType" "0" "bgcolor_override" "Transparent" "skip_autoresize" "1" "autoresize" "0" "ScrollableChild" { "ControlName" "EditablePanel" "fieldName" "ScrollableChild" "xpos" "240" "ypos" "0" "zpos" "100" "wide" "230" "tall" "222" "visible" "1" "PaintBackgroundType" "0" "bgcolor_override" "Transparent" "skip_autoresize" "1" "autoresize" "0" "ItemLevelInfoLabel" { "ControlName" "CExLabel" "fieldName" "ItemLevelInfoLabel" "font" "FontStoreOriginalPrice" "labelText" "%item_level_info%" "textAlignment" "north-west" "wide" "228" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "DullWhite" } "RestrictionsLabel" { "ControlName" "CExLabel" "fieldName" "RestrictionsLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_ItemDesc_Restrictions" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "fgcolor" "LightRed" } "RestrictionsTextLabel" { "ControlName" "CExLabel" "fieldName" "RestrictionsTextLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_HolidayRestrictionText" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "fgcolor" "LightRed" } "UsedByLabel" { "ControlName" "CExLabel" "fieldName" "UsedByLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_ItemDesc_UsedBy" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "DullWhite" } "UsedByTextLabel" { "ControlName" "CExLabel" "fieldName" "UsedByTextLabel" "font" "FontStoreOriginalPrice" "labelText" "%used_by_classes%" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "SlotLabel" { "ControlName" "CExLabel" "fieldName" "SlotLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_ItemDesc_Slot" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "DullWhite" } "SlotTextLabel" { "ControlName" "CExLabel" "fieldName" "SlotTextLabel" "font" "FontStoreOriginalPrice" "labelText" "%slot%" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "ArmoryTextLabel" { "ControlName" "CExLabel" "fieldName" "ArmoryTextLabel" "font" "FontStoreOriginalPrice" "textAlignment" "north-west" "wide" "206" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labeltext" "%armory_text%" } "AttributesLabel" { "ControlName" "CExLabel" "fieldName" "AttributesLabel" "font" "FontStoreOriginalPrice" "textAlignment" "north-west" "zpos" "2" "wide" "206" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "collectionhighlight" { "ControlName" "EditablePanel" "fieldName" "collectionhighlight" "xpos" "208" "ypos" "42" "zpos" "1" "wide" "145" "tall" "9" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "215 206 182 255" } "ItemWikiPageButton" { "ControlName" "CExButton" "fieldName" "ItemWikiPageButton" "zpos" "20" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Store_ItemDesc_ItemWikiPage" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "viewwikipage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } } } "classmodelpanel" { "ControlName" "CTFPlayerModelPanel" "fieldName" "classmodelpanel" "xpos" "c-230" "ypos" "c-160" "zpos" "1" "wide" "220" "tall" "266" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "render_texture" "0" "fov" "40" "allow_rot" "1" "paintbackground" "1" "paintbackgroundenabled" "1" "bgcolor_override" "255 255 255 0" "model" { "force_pos" "1" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "150" "origin_y" "0" "origin_z" "-30" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } } "PreviewItemModelPanel" { "ControlName" "CItemModelPanel" "fieldName" "PreviewItemModelPanel" "xpos" "c-230" "ypos" "c-170" "zpos" "1" "wide" "220" "tall" "220" "visible" "1" "paintbackground" "0" "paintborder" "0" "model_xpos" "10" "model_ypos" "10" "model_wide" "200" "model_tall" "200" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "0" "text_ypos" "10" "itemmodelpanel" { "inventory_image_type" "1" "allow_rot" "0" "force_square_image" "1" } } "ItemIcon1" { "ControlName" "CStorePreviewItemIcon" "fieldName" "ItemIcon1" "xpos" "c-215" "ypos" "c56" "zpos" "13" "wide" "30" "tall" "20" "visible" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "255 255 255 255" "image_indent" "0" "PaintBackgroundType" "2" "bgblockout" { "ControlName" "EditablePanel" "fieldName" "bgblockout" "xpos" "2" "ypos" "2" "zpos" "-10" "wide" "26" "tall" "16" "visible" "1" "enabled" "0" "PaintBackgroundType" "2" "bgcolor_override" "51 47 46 255" } "itempanel" { "fieldName" "itempanel" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "1" "model_ypos" "2" "model_wide" "28" "model_tall" "16" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "0" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } } "ClassUsageImage1" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage1" "xpos" "65" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage2" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage2" "xpos" "85" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage3" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage3" "xpos" "105" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage4" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage4" "xpos" "125" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage5" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage5" "xpos" "145" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage6" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage6" "xpos" "165" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "IconsMoveLeftButton" { "ControlName" "CExButton" "fieldName" "IconsMoveLeftButton" "xpos" "c-210" "ypos" "c58" "zpos" "20" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "<" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "icons_left" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintbackground" "0" "defaultFgColor_override" "118 107 94 255" "armedFgColor_override" "128 117 104 255" "depressedFgColor_override" "236 227 203 255" } "IconsMoveRightButton" { "ControlName" "CExButton" "fieldName" "IconsMoveRightButton" "xpos" "c-45" "ypos" "c58" "zpos" "20" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" ">" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "icons_right" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintbackground" "0" "defaultFgColor_override" "118 107 94 255" "armedFgColor_override" "128 117 104 255" "depressedFgColor_override" "236 227 203 255" } "ClassUsageMouseoverLabel" { "ControlName" "CExLabel" "fieldName" "ClassUsageMouseoverLabel" "font" "HudFontSmallest" "textAlignment" "center" "xpos" "c-265" "ypos" "c125" "zpos" "100" "wide" "230" "tall" "55" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "centerwrap" "1" "paintborder" "1" "textinsetx" "100" "border" "LoadoutItemPopupBorder" } "GoFullscreenButton" { "ControlName" "CExImageButton" "fieldName" "GoFullscreenButton" "xpos" "c-31" "ypos" "c-173" "zpos" "20" "wide" "11" "tall" "11" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "gofullscreen" "paintbackground" "0" "image_drawcolor" "118 107 94 200" "image_armedcolor" "128 117 104 255" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "11" "tall" "11" "visible" "1" "enabled" "1" "image" "store/store_fullscreen" "scaleImage" "1" } } "OptionsButton" { "ControlName" "CExImageButton" "fieldName" "OptionsButton" "xpos" "c-31" "ypos" "c-153" "zpos" "20" "wide" "11" "tall" "11" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "options" "paintbackground" "0" "image_drawcolor" "118 107 94 200" "image_armedcolor" "246 247 213 255" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "11" "tall" "11" "visible" "1" "enabled" "1" "image" "glyph_options" "scaleImage" "1" } } "TeamNavPanel" { "ControlName" "CNavigationPanel" "fieldName" "TeamNavPanel" "xpos" "c-220" "ypos" "c-173" "zpos" "2" "wide" "19" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "auto_scale" "1" "auto_layout" "1" "selected_button_default" "0" "auto_layout_vertical_buffer" "-4" "display_vertically" "1" "align" "west" "ButtonSettings" { "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "textAlignment" "south-west" "scaleImage" "1" "fgcolor" "TanDark" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanDark" "depressedFgColor_override" "TanDark" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "paintbackground" "0" "paintbackgroundtype" "0" "defaultBgColor_Override" "0 0 0 255" "paintborder" "0" "image_drawcolor" "255 255 255 77" "image_armedcolor" "255 255 255 128" "image_selectedcolor" "255 255 255 255" "stayselectedonclick" "1" "keyboardinputenabled" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "scaleImage" "1" } } "Buttons" { "all" { "userdata" "2" "image_default" "store/store_redteam" "image_armed" "store/store_redteam" "image_selected" "store/store_redteam" "SubImage" { "image" "store/store_redteam" } } "scout" { "userdata" "3" "image_default" "store/store_blueteam" "image_armed" "store/store_blueteam" "image_selected" "store/store_blueteam" "SubImage" { "image" "store/store_blueteam" } } } } "CycleTextLabel" { "ControlName" "CExLabel" "fieldName" "CycleTextLabel" "font" "FontStorePrice" "labelText" "" "textAlignment" "west" "xpos" "c-186" "ypos" "c-176" "wide" "138" "tall" "28" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "centerwrap" "1" } "PaintNameLabel" { "ControlName" "CExLabel" "fieldName" "PaintNameLabel" "font" "FontStorePrice" "labelText" "#Store_NoPaint" "textAlignment" "west" "xpos" "c-186" "ypos" "-1000" "wide" "138" "tall" "28" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "centerwrap" "1" } "StyleNameLabel" { "ControlName" "CExLabel" "fieldName" "StyleNameLabel" "font" "FontStorePrice" "labelText" "None" "textAlignment" "west" "xpos" "132" "ypos" "-1000" "wide" "110" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "centerwrap" "1" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "c221" "ypos" "c-194" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "closex" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "mouseoveritempanel" { "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "1001" "wide" "200" "tall" "150" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_center_x" "1" "resize_to_text" "1" "padding_height" "15" "model_ypos" "15" "model_wide" "150" "model_tall" "100" "hide_collection_panel" "1" "model_center_x" "1" "name_only" "1" } } ================================================ FILE: resource/ui/econ/itemdiscardpanel.res ================================================ "resource/ui/itemdiscardpanel.res" { "item_discard" { "ControlName" "Frame" "fieldName" "item_discard" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "bgcolor_override" "DarkGrey" "infocus_bgcolor_override" "DarkGrey" "outoffocus_bgcolor_override" "DarkGrey" "title" "#CharInfoAndSetup" "title_font" "HudFontMediumBold" "titletextinsetX" "40" "titletextinsetY" "0" "titlebarfgcolor_override" "HudOffWhite" "titlebardisabledfgcolor_override" "HudOffWhite" "titlebarbgcolor_override" "DarkGrey" } "modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "modelpanel" "xpos" "c-75" "ypos" "30" "zpos" "1" "wide" "150" "tall" "100" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "model_ypos" "5" "model_tall" "80" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "ItemMouseOverItemPanel" { "ControlName" "CItemModelPanel" "fieldName" "ItemMouseOverItemPanel" "xpos" "c-150" "ypos" "130" "zpos" "100" "wide" "300" "tall" "100" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "CaratLabel2" { "ControlName" "CExLabel" "fieldName" "CaratLabel2" "font" "HudFontSmallestBold" "labelText" ">>" "textAlignment" "west" "xpos" "c-105" "ypos" "40" "zpos" "10" "wide" "20" "tall" "15" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "ExplanationLabel" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel" "font" "HudFontSmallest" "labelText" "#DiscardExplanation" "textAlignment" "north" "xpos" "c-280" "ypos" "40" "zpos" "10" "wide" "175" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "ExplanationLabel2" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel2" "font" "HudFontSmallest" "labelText" "#DiscardExplanation2" "textAlignment" "north" "xpos" "c90" "ypos" "40" "zpos" "10" "wide" "175" "tall" "50" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "DiscardedCaratLabel" { "ControlName" "CExLabel" "fieldName" "DiscardedCaratLabel" "font" "HudFontSmallBold" "labelText" "<<" "textAlignment" "east" "xpos" "c90" "ypos" "50" "zpos" "10" "wide" "20" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "DiscardedLabel" { "ControlName" "CExLabel" "fieldName" "DiscardedLabel" "font" "HudFontMediumBold" "labelText" "#Discarded" "textAlignment" "west" "xpos" "c115" "ypos" "50" "zpos" "10" "wide" "200" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "DiscardButton" { "ControlName" "CExButton" "fieldName" "DiscardButton" "xpos" "c125" "ypos" "90" "zpos" "20" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#X_DiscardItem" "font" "HudFontSmallBold" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "discarditem" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "backpack_panel" { "ControlName" "CBackpackPanel" "fieldName" "backpack_panel" "xpos" "0" "ypos" "100" "wide" "f0" "tall" "400" "zpos" "0" "visible" "1" "items_only" "1" "button_override_delete_xpos" "0" } "CloseButton" { "ControlName" "CExButton" "fieldName" "CloseButton" "xpos" "c185" "ypos" "423" "zpos" "20" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Close" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "vguicancel" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ShowExplanationsButton" { "ControlName" "CExButton" "fieldName" "ShowExplanationsButton" "xpos" "c265" "ypos" "30" "zpos" "100" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "?" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "show_explanations" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "StartExplanation" { "ControlName" "CExplanationPopup" "fieldName" "StartExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "140" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-150" "end_y" "150" "end_wide" "300" "end_tall" "155" "callout_inparents_x" "c0" "callout_inparents_y" "200" "next_explanation" "DiscardButtonExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#DiscardItemsExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#DiscardItemsExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "85" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "125" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "260" "ypos" "125" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "nextexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "DiscardButtonExplanation" { "ControlName" "CExplanationPopup" "fieldName" "DiscardButtonExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "100" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c-50" "end_y" "200" "end_wide" "300" "end_tall" "125" "callout_inparents_x" "c175" "callout_inparents_y" "135" "next_explanation" "DeleteButtonExplanation" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#DiscardButtonExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#DiscardButtonExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "45" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "95" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "prevexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "95" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "NextButton" { "ControlName" "CExImageButton" "fieldName" "NextButton" "xpos" "260" "ypos" "95" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "nextexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "DeleteButtonExplanation" { "ControlName" "CExplanationPopup" "fieldName" "DeleteButtonExplanation" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "250" "tall" "100" "visible" "0" "PaintBackgroundType" "2" "paintbackground" "0" "border" "MainMenuHighlightBorder" "force_close" "1" "end_x" "c0" "end_y" "200" "end_wide" "300" "end_tall" "155" "callout_inparents_x" "c235" "callout_inparents_y" "423" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#DiscardDeleteExplanation_Title" "textAlignment" "north" "xpos" "20" "ypos" "10" "wide" "260" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "font" "HudFontSmall" "labelText" "#DiscardDeleteExplanation_Text" "textAlignment" "north-west" "xpos" "20" "ypos" "45" "wide" "260" "tall" "85" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanDarker" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "280" "ypos" "5" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "PrevButton" { "ControlName" "CExImageButton" "fieldName" "PrevButton" "xpos" "10" "ypos" "125" "zpos" "10" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "prevexplanation" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanDarker" "image_drawcolor" "NeutralWhite" "image_armedcolor" "TanLight" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "PositionLabel" { "ControlName" "CExLabel" "fieldName" "PositionLabel" "font" "HudFontSmallBold" "labelText" "%explanationnumber%" "textAlignment" "center" "xpos" "0" "ypos" "125" "zpos" "-1" "wide" "300" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } } } ================================================ FILE: resource/ui/econ/itemmodelpanel.res ================================================ "resource/ui/itemmodelpanel.res" { "mouseoveritempanel" { "fieldName" "mouseoveritempanel" "collection_list_xpos" "250" "is_mouseover" "1" "text_xpos_collection" "0" "text_ypos" "15" "text_forcesize" "0" "text_xpos" "15" "text_wide" "270" //"model_xpos_collection" "77" //"model_ypos_collection" "20" //"model_wide_collection" "156" //"model_tall_collection" "100" } "LoadingSpinner" { "ControlName" "ImagePanel" "fieldName" "LoadingSpinner" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "paintborder" "0" "image" "animated/tf2_logo_hourglass" "scaleImage" "1" } "MainContentsContainer" { "ControlName" "EditablePanel" "fieldName" "MainContentsContainer" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "visible" "1" "bgcolor_override" "Transparent" "itemmodelpanel" { "ControlName" "CEmbeddedItemModelPanel" "fieldName" "itemmodelpanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "140" "tall" "100" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "useparentbg" "1" "inset_eq_x" "2" "inset_eq_y" "2" "fov" "54" "start_framed" "1" "disable_manipulation" "1" "inventory_image_type" "1" "model" { "angles_x" "10" "angles_y" "130" "angles_z" "0" "spotlight" "1" } } "namelabel" { "ControlName" "CExLabel" "fieldName" "namelabel" "font" "FontBold14" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "140" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%itemname%" "textAlignment" "south" "fgcolor" "TanLight" "centerwrap" "1" } "attriblabel" { "ControlName" "CExLabel" "fieldName" "attriblabel" "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "south" "fgcolor" "TextColor" "centerwrap" "1" } "equippedlabel" { "ControlName" "CExLabel" "fieldName" "equippedlabel" "font" "ItemFontAttribSmallest" "xpos" "37" "ypos" "28" "zpos" "2" "wide" "35" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#ItemPanelEquipped" "textAlignment" "center" "fgcolor" "LightRed" "bgcolor_override" "Black" "PaintBackgroundType" "0" } "paint_icon" { "ControlName" "CItemMaterialCustomizationIconPanel" "fieldName" "paint_icon" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" } "quantitylabel" { "ControlName" "CExLabel" "fieldName" "quantitylabel" "font" "ItemFontAttribSmall" "xpos" "4" "ypos" "4" "zpos" "2" "wide" "10" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "" "textAlignment" "center" "fgcolor" "LightRed" "bgcolor_override" "Black" "PaintBackgroundType" "0" } "serieslabel" { "ControlName" "CExLabel" "fieldName" "serieslabel" "font" "ItemFontAttribSmall" "xpos" "4" "ypos" "4" "zpos" "2" "wide" "17" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "" "textAlignment" "center" "fgcolor" "200 180 60 255" "bgcolor_override" "0 40 30 255" "PaintBackgroundType" "0" } "matcheslabel" { "ControlName" "CExLabel" "fieldName" "matcheslabel" "font" "ItemFontAttribSmall" "xpos" "4" "ypos" "4" "zpos" "2" "wide" "20" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "" "textAlignment" "center" "fgcolor" "200 180 60 255" "bgcolor_override" "0 40 30 255" "PaintBackgroundType" "2" } "vision_restriction_icon" { "ControlName" "ImagePanel" "fieldName" "vision_restriction_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "is_strange_icon" { "ControlName" "ImagePanel" "fieldName" "is_strange_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "is_unusual_icon" { "ControlName" "ImagePanel" "fieldName" "is_unusual_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "is_loaner_icon" { "ControlName" "ImagePanel" "fieldName" "is_loaner_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "contained_item_panel" { "ControlName" "CItemModelPanel" "xpos" "32" "ypos" "20" "zpos" "4" "wide" "18" "tall" "18" "visible" "0" "bgcolor_override" "0 0 0 200" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "useparentbg" "0" "enabled" "1" "model_xpos" "1" "model_ypos" "1" "model_wide" "16" "model_tall" "16" "text_ypos" "60" "text_center" "1" "model_only" "1" "inset_eq_x" "2" "inset_eq_y" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } "use_item_sounds" "1" } } } ================================================ FILE: resource/ui/econ/itemmodelpanelcollectioncosmeticitem.res ================================================ "resource/ui/itemmodelpanelcollectioncosmeticitem.res" { "mouseoveritempanel" { "fieldName" "mouseoveritempanel" "collection_list_xpos" "200" "is_mouseover" "1" "text_xpos_collection" "15" "text_ypos" "15" "model_xpos" "5" "model_ypos" "10" "model_wide" "180" "model_tall" "120" "text_forcesize" "2" } "LoadingSpinner" { "ControlName" "ImagePanel" "fieldName" "LoadingSpinner" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "paintborder" "0" "image" "animated/tf2_logo_hourglass" "scaleImage" "1" } "MainContentsContainer" { "ControlName" "EditablePanel" "fieldName" "MainContentsContainer" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "visible" "1" "bgcolor_override" "0 0 0 0" "itemmodelpanel" { "ControlName" "CEmbeddedItemModelPanel" "fieldName" "itemmodelpanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "140" "tall" "100" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "useparentbg" "1" "proportionaltoparent" "1" "inset_eq_x" "2" "inset_eq_y" "2" } "namelabel" { "ControlName" "CExLabel" "fieldName" "namelabel" "font" "ItemFontNameLarge" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "100" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%itemname%" "textAlignment" "west" "fgcolor" "235 226 202 255" "centerwrap" "1" } "attriblabel" { "ControlName" "CExLabel" "fieldName" "attriblabel" "font" "ItemFontAttribSmall" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "100" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "west" "fgcolor" "117 107 94 255" "centerwrap" "0" } "collectionnamelabel" { "ControlName" "CExLabel" "fieldName" "collectionnamelabel" "font" "ItemFontNameLarge" "xpos" "100" "ypos" "30" "zpos" "2" "wide" "100" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "%collectionname%" "textAlignment" "west" "fgcolor" "235 226 202 255" "centerwrap" "0" } "collectionlistlabel" { "ControlName" "CExLabel" "fieldName" "collectionlistlabel" "font" "ItemFontAttribSmall" "xpos" "100" "ypos" "60" "zpos" "2" "wide" "100" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "%collectionlist%" "textAlignment" "west" "fgcolor" "117 107 94 255" "centerwrap" "0" } "collectionhighlight" { "ControlName" "EditablePanel" "fieldName" "collectionhighlight" "xpos" "208" "ypos" "42" "zpos" "1" "wide" "145" "tall" "9" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "215 206 182 255" } "equippedlabel" { "ControlName" "CExLabel" "fieldName" "equippedlabel" "font" "ItemFontAttribSmall" "xpos" "37" "ypos" "28" "zpos" "2" "wide" "35" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#ItemPanelEquipped" "textAlignment" "center" "fgcolor" "200 80 60 255" "bgcolor_override" "0 0 0 255" "PaintBackgroundType" "2" } "paint_icon" { "ControlName" "CItemMaterialCustomizationIconPanel" "fieldName" "paint_icon" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" } "quantitylabel" { "ControlName" "CExLabel" "fieldName" "quantitylabel" "font" "ItemFontAttribSmall" "xpos" "4" "ypos" "4" "zpos" "2" "wide" "10" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "" "textAlignment" "center" "fgcolor" "200 80 60 255" "bgcolor_override" "0 0 0 255" "PaintBackgroundType" "2" } "serieslabel" { "ControlName" "CExLabel" "fieldName" "serieslabel" "font" "ItemFontAttribSmall" "xpos" "4" "ypos" "4" "zpos" "2" "wide" "14" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "" "textAlignment" "center" "fgcolor" "200 180 60 255" "bgcolor_override" "0 40 30 255" "PaintBackgroundType" "2" } "matcheslabel" { "ControlName" "CExLabel" "fieldName" "matcheslabel" "font" "ItemFontAttribSmall" "xpos" "4" "ypos" "4" "zpos" "2" "wide" "20" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "" "textAlignment" "center" "fgcolor" "200 180 60 255" "bgcolor_override" "0 40 30 255" "PaintBackgroundType" "2" } "vision_restriction_icon" { "ControlName" "ImagePanel" "fieldName" "vision_restriction_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "is_strange_icon" { "ControlName" "ImagePanel" "fieldName" "is_strange_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "is_unusual_icon" { "ControlName" "ImagePanel" "fieldName" "is_unusual_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "is_loaner_icon" { "ControlName" "ImagePanel" "fieldName" "is_loaner_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "contained_item_panel" { "ControlName" "CItemModelPanel" "xpos" "32" "ypos" "20" "zpos" "4" "wide" "18" "tall" "18" "visible" "0" "bgcolor_override" "0 0 0 200" "noitem_textcolor" "117 107 94 255" "PaintBackgroundType" "2" "paintborder" "0" "useparentbg" "0" "enabled" "1" "model_xpos" "1" "model_ypos" "1" "model_wide" "16" "model_tall" "16" "text_ypos" "60" "text_center" "1" "model_only" "1" "inset_eq_x" "2" "inset_eq_y" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } "use_item_sounds" "1" } } } ================================================ FILE: resource/ui/econ/itemmodelpanelcollectionitem.res ================================================ "resource/ui/itemmodelpanelcollectionitem.res" { "mouseoveritempanel" { "fieldName" "mouseoveritempanel" "collection_list_xpos" "200" "is_mouseover" "1" "text_xpos_collection" "15" "text_ypos" "15" "model_xpos" "3" "model_ypos" "3" "model_wide" "195" "model_tall" "130" "text_wide" "180" "text_forcesize" "2" } "LoadingSpinner" { "ControlName" "ImagePanel" "fieldName" "LoadingSpinner" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "paintborder" "0" "image" "animated/tf2_logo_hourglass" "scaleImage" "1" } "MainContentsContainer" { "ControlName" "EditablePanel" "fieldName" "MainContentsContainer" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "visible" "1" "bgcolor_override" "0 0 0 0" "itemmodelpanel" { "ControlName" "CEmbeddedItemModelPanel" "fieldName" "itemmodelpanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "140" "tall" "100" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "useparentbg" "1" "proportionaltoparent" "1" "inset_eq_x" "2" "inset_eq_y" "2" "disable_manipulation" "1" "force_use_model" "1" "use_item_rendertarget" "0" "allow_rot" "0" "use_pedestal" "1" "use_particle" "1" "fov" "75" "model_rotate_yaw_speed" "50" "model" { "force_pos" "1" "angles_x" "7" "angles_y" "130" "angles_z" "0" "origin_x" "175" "origin_y" "0" "origin_z" "0" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } } "namelabel" { "ControlName" "CExLabel" "fieldName" "namelabel" "font" "ItemFontNameLarge" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "100" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%itemname%" "textAlignment" "west" "fgcolor" "235 226 202 255" "centerwrap" "1" } "attriblabel" { "ControlName" "CExLabel" "fieldName" "attriblabel" "font" "ItemFontAttribSmall" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "100" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "west" "fgcolor" "117 107 94 255" "centerwrap" "0" } "collectionnamelabel" { "ControlName" "CExLabel" "fieldName" "collectionnamelabel" "font" "ItemFontNameLarge" "xpos" "100" "ypos" "30" "zpos" "2" "wide" "100" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "%collectionname%" "textAlignment" "west" "fgcolor" "235 226 202 255" "centerwrap" "0" } "collectionlistlabel" { "ControlName" "CExLabel" "fieldName" "collectionlistlabel" "font" "ItemFontAttribSmall" "xpos" "100" "ypos" "60" "zpos" "2" "wide" "100" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "%collectionlist%" "textAlignment" "west" "fgcolor" "117 107 94 255" "centerwrap" "0" } "collectionhighlight" { "ControlName" "EditablePanel" "fieldName" "collectionhighlight" "xpos" "208" "ypos" "42" "zpos" "1" "wide" "145" "tall" "9" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "215 206 182 255" } "equippedlabel" { "ControlName" "CExLabel" "fieldName" "equippedlabel" "font" "ItemFontAttribSmall" "xpos" "37" "ypos" "28" "zpos" "2" "wide" "35" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#ItemPanelEquipped" "textAlignment" "center" "fgcolor" "200 80 60 255" "bgcolor_override" "0 0 0 255" "PaintBackgroundType" "2" } "paint_icon" { "ControlName" "CItemMaterialCustomizationIconPanel" "fieldName" "paint_icon" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" } "quantitylabel" { "ControlName" "CExLabel" "fieldName" "quantitylabel" "font" "ItemFontAttribSmall" "xpos" "4" "ypos" "4" "zpos" "2" "wide" "10" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "" "textAlignment" "center" "fgcolor" "200 80 60 255" "bgcolor_override" "0 0 0 255" "PaintBackgroundType" "2" } "serieslabel" { "ControlName" "CExLabel" "fieldName" "serieslabel" "font" "ItemFontAttribSmall" "xpos" "4" "ypos" "4" "zpos" "2" "wide" "14" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "" "textAlignment" "center" "fgcolor" "200 180 60 255" "bgcolor_override" "0 40 30 255" "PaintBackgroundType" "2" } "matcheslabel" { "ControlName" "CExLabel" "fieldName" "matcheslabel" "font" "ItemFontAttribSmall" "xpos" "4" "ypos" "4" "zpos" "2" "wide" "20" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "" "textAlignment" "center" "fgcolor" "200 180 60 255" "bgcolor_override" "0 40 30 255" "PaintBackgroundType" "2" } "vision_restriction_icon" { "ControlName" "ImagePanel" "fieldName" "vision_restriction_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "is_strange_icon" { "ControlName" "ImagePanel" "fieldName" "is_strange_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "is_unusual_icon" { "ControlName" "ImagePanel" "fieldName" "is_unusual_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "is_loaner_icon" { "ControlName" "ImagePanel" "fieldName" "is_loaner_icon" "xpos" "4" "ypos" "4" "zpos" "2" "autoResize" "0" "pinCorner" "0" "wide" "16" "tall" "16" "visible" "0" "enabled" "1" "scaleImage" "1" } "contained_item_panel" { "ControlName" "CItemModelPanel" "xpos" "32" "ypos" "20" "zpos" "4" "wide" "18" "tall" "18" "visible" "0" "bgcolor_override" "0 0 0 200" "noitem_textcolor" "117 107 94 255" "PaintBackgroundType" "2" "paintborder" "0" "useparentbg" "0" "enabled" "1" "model_xpos" "1" "model_ypos" "1" "model_wide" "16" "model_tall" "16" "text_ypos" "60" "text_center" "1" "model_only" "1" "inset_eq_x" "2" "inset_eq_y" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } "use_item_sounds" "1" } } } ================================================ FILE: resource/ui/econ/itempickuppanel.res ================================================ "resource/ui/itempickuppanel.res" { "item_pickup" { "ControlName" "Frame" "fieldName" "item_pickup" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "modelpanels_spacing" "40" "modelpanels_width" "500" "modelpanels_height" "260" "modelpanels_ypos" "110" "settitlebarvisible" "0" "PaintBackgroundType" "0" "bgcolor_override" "DarkGrey" "infocus_bgcolor_override" "DarkGrey" "outoffocus_bgcolor_override" "DarkGrey" "modelpanelskv" { "PaintBackgroundType" "0" "paintborder" "1" "bgcolor_override" "DarkGrey" "model_xpos" "0" "model_center_y" "1" "model_tall" "160" "model_wide" "240" "text_forcesize" "1" "text_xpos" "245" "text_wide" "230" "text_center" "1" "is_mouseover" "1" "hide_collection_panel" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" } } } "classimageoutline" { "ControlName" "EditablePanel" "fieldName" "classimageoutline" "xpos" "c208" "ypos" "115" "zpos" "6" "wide" "36" "tall" "36" "visible" "1" "bgcolor_override" "0 0 0 255" } "classimage" { "ControlName" "ImagePanel" "fieldName" "classimage" "xpos" "c211" "ypos" "118" "zpos" "7" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "achievements/tf_medic_heal_grind" "scaleImage" "1" } "ItemsFoundLabel" { "ControlName" "CExLabel" "fieldName" "ItemsFoundLabel" "font" "FontBold37" "labelText" "#NewItemsAcquired" "textAlignment" "center" "xpos" "0" "ypos" "30" "zpos" "1" "wide" "f0" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "SelectedItemFoundMethodLabel" { "ControlName" "CExLabel" "fieldName" "SelectedItemFoundMethodLabel" "font" "FontBold20" "labelText" "" "textAlignment" "center" "xpos" "0" "ypos" "70" "zpos" "1" "wide" "f0" "tall" "35" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ItemCountLabel" { "ControlName" "CExLabel" "fieldName" "ItemCountLabel" "font" "FontBold16" "labelText" "#Item" "textAlignment" "west" "xpos" "c-245" "ypos" "110" "zpos" "5" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "SelectedItemNumberLabel" { "ControlName" "CExLabel" "fieldName" "SelectedItemNumberLabel" "font" "FontBold16" "labelText" "#SelectedItemNumber" "textAlignment" "west" "xpos" "c-245" "ypos" "125" "zpos" "5" "wide" "120" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "NextButton" { "ControlName" "CExButton" "fieldName" "NextButton" "xpos" "c180" "ypos" "340" "zpos" "1" "wide" "70" "tall" "30" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&D" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextitem" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultBgColor_override" "Blank" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "Blank" } "PrevButton" { "ControlName" "CExButton" "fieldName" "PrevButton" "xpos" "c-250" "ypos" "340" "zpos" "1" "wide" "70" "tall" "30" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&A" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "previtem" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultBgColor_override" "Blank" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "Blank" } "CloseButton" { "ControlName" "CExButton" "fieldName" "CloseButton" "xpos" "c50" "ypos" "420" "zpos" "6" "wide" "250" "tall" "30" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CloseItemPanel" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "vguicancel" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OpenLoadoutButton" { "ControlName" "CExButton" "fieldName" "OpenLoadoutButton" "xpos" "c-300" "ypos" "420" "zpos" "6" "wide" "250" "tall" "30" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%loadouttext%" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "changeloadout" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "DiscardButton" { "ControlName" "CExImageButton" "fieldName" "DiscardButton" "xpos" "c224" "ypos" "155" "zpos" "10" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "T" "font" "MediumIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "discarditem" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "DiscardButtonTooltip" { "ControlName" "EditablePanel" "fieldName" "DiscardButtonTooltip" "xpos" "c200" "ypos" "175" "zpos" "11" "wide" "80" "tall" "25" "visible" "0" "paintbackground" "1" "border" "" "bgcolor_override" "DarkerGrey" "PaintBackgroundType" "2" "TipLabel" { "ControlName" "CExLabel" "fieldName" "TipLabel" "font" "HudFontSmallestBold" "labelText" "#DiscardItem" "textAlignment" "center" "xpos" "0" "ypos" "0" "wide" "80" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "centerwrap" "1" } } "DiscardedLabel" { "ControlName" "CExLabel" "fieldName" "DiscardedLabel" "font" "FontBold20" "labelText" "#Discarded" "textAlignment" "center" "xpos" "c-215" "ypos" "210" "zpos" "5" "wide" "420" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" "bgcolor_override" "TanDarker" } "ScoreEntry" { "ControlName" "TextEntry" "fieldName" "ScoreEntry" "xpos" "c-100" "ypos" "380" "wide" "200" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" "textHidden" "0" "editable" "1" "maxchars" "5" "NumericInputOnly" "0" "unicode" "0" "wrap" "0" "fgcolor_override" "TanLight" "bgcolor_override" "0 0 0 255" "labelText" "Enter Score Here" "textAlignment" "center" } } ================================================ FILE: resource/ui/econ/messageboxdialog.res ================================================ "resource/ui/messageboxdialog.res" { "ConfirmDialog" { "ControlName" "Frame" "fieldName" "ConfirmDialog" "xpos" "c-150" "ypos" "140" "wide" "300" "tall" "230" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "paintbackground" "1" "bgcolor_override" "DarkerGrey" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "labelText" "#ConfirmTitle" "textAlignment" "north" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "300" "tall" "30" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "ExplanationLabel" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel" "font" "EconFontSmall" "labelText" "%text%" "textAlignment" "north" "xpos" "10" "ypos" "50" "zpos" "1" "wide" "280" "tall" "170" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" "fgcolor_override" "TanLight" } "ConfirmButton" { "ControlName" "CExButton" "fieldName" "ConfirmButton" "xpos" "62" "ypos" "190" "zpos" "20" "wide" "175" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#ConfirmButtonText" "font" "FontBold18" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "confirm" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/notificationspresentpanel.res ================================================ "resource/ui/notificationspresentpanel.res" { "NotificationsPresentPanel" { "ControlName" "CNotificationsPresentPanel" "fieldName" "NotificationsPresentPanel" "xpos" "c45" "ypos" "30" "zpos" "10000" "wide" "280" "tall" "26" "visible" "0" "enabled" "1" "paintborder" "0" } "TextLabel" { "ControlName" "CExLabel" "fieldName" "TextLabel" "fgcolor" "QuestGold" "xpos" "cs-0.5" "ypos" "0" "zpos" "2" "wide" "f10" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "labelText" "#Notifications_Present" "textAlignment" "center" "font" "FontRegular10" "proportionaltoparent" "1" } } ================================================ FILE: resource/ui/econ/notificationtoastcontainer.res ================================================ "resource/ui/notificationtoastcontainer.res" { "NotificationToastContainer" { "ControlName" "CNotificationToastControl" "fieldName" "NotificationToastContainer" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "150" "tall" "50" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "border" "NoBorder" } "HelpTextLabel" { "ControlName" "CExLabel" "fieldName" "HelpTextLabel" "fgcolor" "RedSolid" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "140" "tall" "38" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labelText" "" "textAlignment" "North" "font" "FontRegular9" "textinsety" "5" } } ================================================ FILE: resource/ui/econ/notificationtoastcontrol.res ================================================ "resource/ui/notificationtoastcontrol.res" { "NotificationToastControl" { "ControlName" "CNotificationToastControl" "fieldName" "NotificationToastControl" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "190" "tall" "30" "visible" "1" "enabled" "1" "border" "NoBorder" "paintborder" "1" "paintbackground" "1" "PaintBackgroundType" "0" "defaultbgcolor_override" "HudBlack" } "DeleteButton" { "ControlName" "CExImageButton" "fieldName" "DeleteButton" "xpos" "165" "ypos" "5" "zpos" "10" "wide" "25" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "delete" "paintbackground" "1" "defaultBgColor_override" "Black" "armedBgColor_override" "LightRed" "depressedBgColor_override" "Black" } "TriggerButton" { "ControlName" "CExImageButton" "fieldName" "TriggerButton" "xpos" "138" "if_one_button" { "xpos" "165" } "ypos" "5" "zpos" "10" "wide" "25" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labeltext" "s" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "trigger" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultBgColor_override" "Black" "armedBgColor_override" "CreditsGreen" "depressedBgColor_override" "Black" } "AcceptButton" { "ControlName" "CExImageButton" "fieldName" "AcceptButton" "xpos" "138" "if_one_button" { "xpos" "165" } "ypos" "5" "zpos" "10" "wide" "25" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labeltext" "s" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "accept" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultBgColor_override" "Black" "armedBgColor_override" "CreditsGreen" "depressedBgColor_override" "Black" } "DeclineButton" { "ControlName" "CExImageButton" "fieldName" "DeclineButton" "xpos" "165" "ypos" "5" "zpos" "10" "wide" "25" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "decline" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultBgColor_override" "Black" "armedBgColor_override" "LightRed" "depressedBgColor_override" "Black" } } ================================================ FILE: resource/ui/econ/paintkitconsumedialog.res ================================================ "resource/ui/paintkitconsumedialog.res" { "PaintkitConsume" { "fieldName" "PaintkitConsume" "xpos" "cs-0.5" "ypos" "cs-0.5" "wide" "400" "tall" "400" "visible" "1" "zpos" "1000" } "Title" { "ControlName" "Label" "fieldName" "Title" "font" "FontBold22" "labelText" "#TF_UsePaintkit_Panel_Title" "textAlignment" "north" "xpos" "cs-0.5" "ypos" "10" "zpos" "10" "wide" "f20" "tall" "30" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "proportionaltoparent" "1" } "DescText" { "ControlName" "Label" "fieldName" "DescText" "font" "FontRegular12" "labelText" "#TF_UsePaintkit_Panel_Desc" "textAlignment" "north" "xpos" "0" //"cs-0.5" "ypos" "0" //"r40" "zpos" "10" "wide" "f0" "tall" "30" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "proportionaltoparent" "1" "pin_to_sibling" "InspectionPanel" } "BGPanel" { "fieldName" "BGPanel" "controlname" "EditablePanel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "border" "WhiteBorder" "bgcolor_override" "DarkerGrey" "proportionaltoparent" "1" } "Shade" { "fieldName" "Shade" "controlname" "EditablePanel" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "f0" "tall" "f0" "visible" "0" "mouseinputenabled" "1" "bgcolor_override" "0 0 0 150" "proportionaltoparent" "1" } "RedeemingPanel" { "fieldName" "RedeemingPanel" "controlname" "EditablePanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "101" "wide" "250" "tall" "150" "visible" "0" "border" "WhiteBorder" "bgcolor_override" "DarkerGrey" "proportionaltoparent" "1" "CTFLogoPanel" { "fieldName" "CTFLogoPanel" "controlname" "CTFLogoPanel" "xpos" "cs-0.5" "ypos" "cs-0.5-15" "zpos" "1" "wide" "100" "tall" "o1" "velocity" "200" "radius" "30" "fgcolor_override" "TanDark" "proportionaltoparent" "1" } "WorkingText" { "ControlName" "Label" "fieldName" "WorkingText" "font" "HudFontSmallBold" "labelText" "#TF_UsePaintkit_Working" "textAlignment" "north" "xpos" "cs-0.5" "ypos" "r30" "wide" "f20" "tall" "30" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "proportionaltoparent" "1" } } "SuccessPanel" { "fieldName" "SuccessPanel" "controlname" "EditablePanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "101" "wide" "250" "tall" "150" "visible" "0" "border" "WhiteBorder" "bgcolor_override" "DarkerGrey" "proportionaltoparent" "1" "CTFLogoPanel" { "fieldName" "CTFLogoPanel" "controlname" "CTFLogoPanel" "xpos" "cs-0.5" "ypos" "cs-0.5-15" "zpos" "1" "wide" "100" "tall" "o1" "velocity" "0" "radius" "30" "fgcolor_override" "CreditsGreen" "proportionaltoparent" "1" } "SuccessText" { "ControlName" "Label" "fieldName" "SuccessText" "font" "HudFontMediumBold" "labelText" "#AbuseReport_SucceededTitle" "textAlignment" "north" "xpos" "cs-0.5" "ypos" "r40" "wide" "f20" "tall" "30" "visible" "1" "enabled" "1" "fgcolor_override" "CreditsGreen" "proportionaltoparent" "1" } } "FailurePanel" { "fieldName" "FailurePanel" "controlname" "EditablePanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "101" "wide" "250" "tall" "150" "visible" "0" "border" "WhiteBorder" "bgcolor_override" "DarkerGrey" "proportionaltoparent" "1" "CTFLogoPanel" { "fieldName" "CTFLogoPanel" "controlname" "CTFLogoPanel" "xpos" "cs-0.5" "ypos" "cs-0.5-15" "zpos" "1" "wide" "100" "tall" "o1" "velocity" "0" "radius" "30" "fgcolor_override" "RedSolid" "proportionaltoparent" "1" } "FailureText" { "ControlName" "Label" "fieldName" "FailureText" "font" "HudFontSmallBold" "labelText" "#TF_UsePaintkit_Failed" "textAlignment" "north" "xpos" "cs-0.5" "ypos" "r40" "wide" "f20" "tall" "30" "visible" "1" "enabled" "1" "fgcolor_override" "RedSolid" "centerwrap" "1" "proportionaltoparent" "1" } } "InspectionPanel" { "fieldName" "InspectionPanel" "xpos" "0" "ypos" "40" "zpos" "10" "wide" "f0" "tall" "p0.8" "proportionaltoparent" "1" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "rs1-45" "ypos" "rs1-15" "zpos" "20" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "cancel" "proportionaltoparent" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ConfirmButton" { "ControlName" "CExButton" "fieldName" "ConfirmButton" "xpos" "50" "ypos" "rs1-15" "zpos" "20" "wide" "150" "tall" "25" "default" "1" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_QuestView_RedeemReward" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "accept" "proportionaltoparent" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/questlogpanel.res ================================================ "resource/ui/econ/questlogpanel.res" { "QuestLog" { "ControlName" "CQuestLogPanel" "fieldName" "QuestLog" "xpos" "r360" "ypos" "64" "zpos" "1" "wide" "300" "tall" "350" "visible" "0" "enabled" "1" "proportionaltoparent" "1" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "0" "ypos" "0" "zpos" "1000" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "border" "MainMenuBGBorder" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attrib_only" "1" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "TooltipPanel" { "ControlName" "EditablePanel" "fieldName" "TooltipPanel" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "200" "tall" "100" "visible" "0" "PaintBackgroundType" "2" "border" "MainMenuBGBorder" "TipLabel" { "ControlName" "CExLabel" "fieldName" "TipLabel" "font" "HudFontSmallest" "labelText" "%tiptext%" "textAlignment" "center" "xpos" "20" "ypos" "10" "zpos" "2" "wide" "100" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "NeutralWhite" "wrap" "1" "centerwrap" "1" } } "MainContainer" { "ControlName" "EditablePanel" "fieldName" "MainContainer" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "visible" "1" "enabled" "1" "border" "PanelBorder" "paintborder" "1" "bgcolor_override" "DarkGrey" "UpperLine" { "ControlName" "EditablePanel" "fieldName" "UpperLine" "xpos" "cs-0.5" "ypos" "40" "zpos" "50" "wide" "p0.987" "tall" "1" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "bgcolor_override" "255 255 255 252" "proportionaltoparent" "1" } "QuestLogTitle" { "ControlName" "CExLabel" "fieldName" "QuestLogTitle" "font" "FontBold18" "labelText" "#QuestLog_Title" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "300" "tall" "28" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "proportionaltoparent" "1" "fgcolor" "TanLight" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "rs1.5" "ypos" "p.02" "zpos" "1000" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "QuestList" { "ControlName" "CScrollableQuestList" "fieldName" "QuestList" "xpos" "cs-0.5" "ypos" "p0.075" "zpos" "10" "wide" "p.95" "tall" "o1" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "entry_step" "10" "entry_y" "10" "no_quests" "#QuestLog_NoQuests" "need_a_pass" "#QuestLog_NeedPassForContracts" "not_possible" "#QuestLog_NoContractsPossible" } } "ProgressPanel" { "ControlName" "EditablePanel" "fieldName" "ProgressPanel" "xpos" "cs-0.5" "ypos" "p.9" "zpos" "50" "wide" "p0.95" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "bgcolor_override" "Transparent" "proportionaltoparent" "1" "CoinModelPanel" { "ControlName" "CItemModelPanel" "fieldName" "CoinModelPanel" "xpos" "0" "ypos" "cs-0.5" "zpos" "2" "wide" "30" "tall" "30" "visible" "1" "PaintBackgroundType" "0" "paintborder" "0" "proportionaltoparent" "1" "model_xpos" "0" "model_ypos" "5" "model_wide" "30" "model_tall" "20" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "0" "hide_modifier_icons" "1" "text_ypos" "10" "itemmodelpanel" { "inventory_image_type" "1" "allow_rot" "0" } } "BadgeProgressLabel" { "ControlName" "CExLabel" "fieldName" "BadgeProgressLabel" "font" "AdFont_AdText" "labelText" "#QuestLog_BadgeProgress" "textAlignment" "west" "xpos" "p.15" "ypos" "0" "zpos" "2" "wide" "100" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "proportionaltoparent" "1" "fgcolor" "TanLight" } "BadgeMeterContainer" { "ControlName" "EditablePanel" "fieldName" "BadgeMeterContainer" "xpos" "p.15" "ypos" "p.5" "zpos" "2" "wide" "100" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "NeutralWhite" // tanlight "proportionaltoparent" "1" "BadgeProgressMeter" { "ControlName" "ContinuousProgressBar" "fieldName" "BadgeProgressMeter" "xpos" "1" "ypos" "1" "zpos" "2" "wide" "98" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "proportionaltoparent" "1" "fgcolor_override" "132 76 0 255" "bgcolor_override" "0 0 0 255" } "BadgeProgressMeterText" { "ControlName" "CExLabel" "fieldName" "BadgeProgressMeterText" "font" "AdFont_AdText" "labelText" "" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "proportionaltoparent" "1" "fgcolor" "TanLight" } } "ContractsCompletedLabel" { "ControlName" "CExLabel" "fieldName" "ContractsCompletedLabel" "font" "AdFont_AdText" "labelText" "#QuestLog_ContractsCompleted" "textAlignment" "west" "xpos" "p.57" "ypos" "0" "zpos" "2" "wide" "100" "tall" "p.45" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "proportionaltoparent" "1" "fgcolor" "TanLight" } "ContractMeterContainer" { "ControlName" "EditablePanel" "fieldName" "ContractMeterContainer" "xpos" "p.57" "ypos" "p.5" "zpos" "2" "wide" "100" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "NeutralWhite" "proportionaltoparent" "1" "ContractsCompletedProgressMeter" { "ControlName" "ContinuousProgressBar" "fieldName" "ContractsCompletedProgressMeter" "xpos" "1" "ypos" "1" "zpos" "2" "wide" "98" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "proportionaltoparent" "1" "fgcolor_override" "132 76 0 255" "bgcolor_override" "0 0 0 255" } "ContractsCompletedProgressMeterText" { "ControlName" "CExLabel" "fieldName" "ContractsCompletedProgressMeterText" "font" "AdFont_AdText" "labelText" "" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "proportionaltoparent" "1" "fgcolor" "TanLight" } } } } ================================================ FILE: resource/ui/econ/questnotificationpanel_base.res ================================================ "resource/ui/questnotificationpanel_base.res" { "QuestNotificationPanel" { "ControlName" "EditablePanel" "fieldName" "QuestNotificationPanel" "xpos" "0" "ypos" "100" "zpos" "2" "wide" "f0" "tall" "f0" "visible" "0" "proportionaltoparent" "1" "output_step" "50" "MainContainer" { "ControlName" "EditablePanel" "fieldName" "MainContainer" "xpos" "r0" "ypos" "0" "wide" "110" "tall" "20" "visible" "1" "proportionaltoparent" "1" "border" "NoBorder" //QuestStatusBorder "paintborder" "1" "ItemName" { "ControlName" "Label" "fieldName" "ItemName" "labeltext" "#QuestNotification_Incoming" "xpos" "0" "ypos" "cs-0.5" "wide" "f0" "tall" "18" "zpos" "4" "textinsetx" "5" "fgcolor_override" "255 255 255 255" //235 226 202 255 "font" "AchievementTracker_Name" //"wrap" "1" "TextAlignment" "east" "proportionaltoparent" "1" } "CharacterImage" { "ControlName" "CTFImagePanel" "fieldName" "CharacterImage" "xpos" "3" "ypos" "cs-0.5" "zpos" "0" "wide" "o1" "tall" "p0.8" "visible" "1" "enabled" "1" "image" "animated/tf2_speaker_icon" "scaleImage" "1" "proportionaltoparent" "1" } } } } ================================================ FILE: resource/ui/econ/store/v2/storehome_base.res ================================================ "resource/ui/storehome_base.res" { "StorePage" { "ControlName" "Frame" "fieldName" "StorePage" "xpos" "0" "ypos" "40" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "bgcolor_override" "DarkGrey" "infocus_bgcolor_override" "DarkGrey" "outoffocus_bgcolor_override" "DarkGrey" "item_controls_xoffset" "2" "item_controls_yoffset" "2" "max_cart_model_panels" "11" "item_ypos" "70" "item_mod_wide" "40" "item_panels" "12" "item_columns" "4" "item_offcenter_x" "-230" "item_xdelta" "8" "item_ydelta" "8" "item_backdrop_zpos" "1" "show_item_backdrop" "1" "item_backdrop_color" "DarkGrey" "item_backdrop_left_margin" "11" "item_backdrop_right_margin" "11" "item_backdrop_top_margin" "9" "item_backdrop_bottom_margin" "42" "item_backdrop_paintbackgroundtype" "0" "item_backdrop_zpos" "1" "item_panel_bgcolor" "Grey" "item_panel_bgcolor_mouseover" "156 146 128 255" "item_panel_bgcolor_selected" "176 166 148 255" "classicon_xdelta" "5" "modelpanels_kv" { "ControlName" "CItemModelPanel" "xpos" "c-70" "ypos" "270" "zpos" "5" "wide" "111" "tall" "62" "visible" "0" "bgcolor_override" "0 0 0 255" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "0" "model_xpos" "24" "model_ypos" "6" "model_wide" "71" "model_tall" "47" "text_wide" "140" "text_xpos" "0" "text_ypos" "80" "text_center" "0" "name_only" "1" "resize_to_text" "0" "name_label_alignment" "3" "inset_eq_x" "2" "inset_eq_y" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } "use_item_sounds" "1" } "modelpanel_labels_kv" { "font" "HudFontSmallestBold" "textAlignment" "north-east" "xpos" "c-61" "ypos" "32" "zpos" "15" "wide" "16" "tall" "10" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "use_item_sounds" "1" } "cart_modelpanels_kv" { "ControlName" "CItemModelPanel" "xpos" "c-70" "ypos" "270" "zpos" "13" "wide" "32" "tall" "25" "visible" "0" "bgcolor_override" "0 0 0 255" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "0" "model_xpos" "2" "model_ypos" "2" "model_wide" "28" "model_tall" "21" "text_ypos" "60" "text_center" "1" "name_only" "1" "inset_eq_x" "2" "inset_eq_y" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } "use_item_sounds" "1" } "cart_labels_kv" { "font" "HudFontSmallestBold" "textAlignment" "north-east" "xpos" "c-61" "ypos" "32" "zpos" "15" "wide" "16" "tall" "10" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "use_item_sounds" "1" } } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "SaxtonBackgroundPanel" { "ControlName" "EditablePanel" "fieldName" "SaxtonBackgroundPanel" "xpos" "9999" } "StoreBackgroundPanel" { "ControlName" "EditablePanel" "fieldName" "StoreBackgroundPanel" "xpos" "9999" } "ReloadSchemeButton" { "ControlName" "CExButton" "fieldName" "ReloadSchemeButton" "xpos" "c-400" "ypos" "350" "zpos" "25" "wide" "100" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "RELOADSCHEME" "font" "HudFontSmallestBold" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "reloadscheme" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ItemCategoryTabs" { "ControlName" "CNavigationPanel" "fieldName" "ItemCategoryTabs" "xpos" "c-230" "ypos" "31" "zpos" "0" "wide" "430" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "auto_scale" "1" "auto_layout" "1" "selected_button_default" "0" "auto_layout_horizontal_buffer" "9" "display_vertically" "0" "ButtonSettings" { "wide" "100" "tall" "30" "textinsety" "0" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "textAlignment" "center" "scaleImage" "1" "font" "FontRegular12" "fgcolor" "TanDark" "defaultBgColor_override" "DarkGrey" "defaultFgColor_override" "TanDark" "armedBgColor_override" "DarkGrey" "armedFgColor_override" "TanLight" "selectedBgColor_override" "DarkerGrey" "selectedFgColor_override" "TanLight" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "paintbackground" "1" "paintborder" "1" "border" "ButtonBorder" "stayselectedonclick" "1" "keyboardinputenabled" "0" } } "PrevPageButton" { "ControlName" "CExButton" "fieldName" "PrevPageButton" "xpos" "c130" "ypos" "283" "zpos" "5" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "&A" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "prevpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CurPageLabel" { "ControlName" "CExLabel" "fieldName" "CurPageLabel" "font" "FontBold14" "labelText" "%backpackpage%" "textAlignment" "center" "xpos" "c160" "ypos" "283" "zpos" "5" "wide" "40" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "NextPageButton" { "ControlName" "CExButton" "fieldName" "NextPageButton" "xpos" "c210" "ypos" "283" "zpos" "5" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "&D" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "BackpackSpaceLabel" { "ControlName" "CExLabel" "fieldName" "BackpackSpaceLabel" "font" "FontRegular12" "labelText" "%freebackpackspace%" "textAlignment" "west" "xpos" "c-237" "ypos" "314" "zpos" "10" "wide" "160" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "CartButton" { "ControlName" "CExButton" "fieldName" "CartButton" "font" "FontBold14" "labelText" "%storecart%" "textAlignment" "east" "xpos" "c-238" "ypos" "334" "zpos" "12" "wide" "74" "tall" "24" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" "textinsetx" "15" "Command" "viewcart" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CartImage" { "ControlName" "ImagePanel" "fieldName" "CartImage" "xpos" "c-233" "ypos" "336" "zpos" "13" "wide" "24" "tall" "20" "visible" "1" "enabled" "1" "image" "store_cart" "scaleImage" "1" } "BrowseTheStoreButton" { "ControlName" "CExButton" "fieldName" "BrowseTheStoreButton" "xpos" "c-365" "ypos" "c-80" "zpos" "2" "wide" "160" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#Store_BrowseTheStore" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "startshopping" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MarketPlaceButton" { "ControlName" "CExButton" "fieldName" "MarketPlaceButton" "xpos" "c-230" "ypos" "c40" "zpos" "2" "wide" "170" "tall" "23" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Store_MarketPlace" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "marketplace" "paintbackground" "1" "defaultBgColor_override" "Black" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallest" "labelText" "" "textAlignment" "west" "xpos" "c-45" "ypos" "c-230" "zpos" "100" "wide" "350" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" } "HomePageLabelContainer" { "ControlName" "EditablePanel" "fieldName" "HomePageLabelContainer" "xpos" "c-295" "ypos" "54" "zpos" "5" "wide" "200" "tall" "160" "mouseinputenabled" "0" "visible" "0" "CaseLabel" { "ControlName" "CExLabel" "fieldName" "CaseLabel" "font" "HudFontMediumBold" "labelText" "#Store_Case_Label" "textAlignment" "west" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "200" "tall" "20" "autoresize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" } "KeyLabel" { "ControlName" "CExLabel" "fieldName" "KeyLabel" "font" "HudFontMediumBold" "labelText" "#Store_Key_Label" "textAlignment" "west" "xpos" "0" "ypos" "70" "zpos" "0" "wide" "200" "tall" "20" "autoresize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" } "TauntLabel" { "ControlName" "CExLabel" "fieldName" "TauntLabel" "font" "HudFontMediumBold" "labelText" "#Store_Taunt_Label" "textAlignment" "west" "xpos" "0" "ypos" "140" "zpos" "0" "wide" "200" "tall" "20" "autoresize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" } } "Wall" { "ControlName" "EditablePanel" "fieldName" "Wall" "xpos" "0" "ypos" "55" "zpos" "-5" "wide" "f0" "tall" "255" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "1" "bgcolor_override" "TransparentLightBlack" } } ================================================ FILE: resource/ui/econ/store/v2/storehome_premium.res ================================================ #base "storehome_base.res" "resource/ui/storehome_premium.res" { "PremiumCallout" { "ControlName" "EditablePanel" "fieldName" "PremiumCallout" "xpos" "9999" } } ================================================ FILE: resource/ui/econ/store/v2/storepage.res ================================================ "resource/ui/storepage.res" { "StorePage" { "ControlName" "Frame" "fieldName" "StorePage" "xpos" "0" "ypos" "40" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "bgcolor_override" "DarkGrey" "infocus_bgcolor_override" "DarkGrey" "outoffocus_bgcolor_override" "DarkGrey" "max_cart_model_panels" "14" "item_ypos" "70" "item_panels" "15" "item_columns" "5" "item_offcenter_x" "-292" "item_xdelta" "8" "item_ydelta" "8" "item_controls_xoffset" "2" "item_controls_yoffset" "2" "show_item_backdrop" "1" "item_backdrop_color" "DarkGrey" "item_backdrop_left_margin" "11" "item_backdrop_right_margin" "11" "item_backdrop_top_margin" "9" "item_backdrop_bottom_margin" "42" "item_backdrop_paintbackgroundtype" "0" "item_panel_bgcolor" "Grey" "item_panel_bgcolor_mouseover" "156 146 128 255" "item_panel_bgcolor_selected" "176 166 148 255" "classicon_xdelta" "5" "modelpanels_kv" { "ControlName" "CItemModelPanel" "xpos" "c-70" "ypos" "270" "zpos" "5" "wide" "111" "tall" "62" "visible" "0" "bgcolor_override" "0 0 0 255" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "0" "model_xpos" "24" "model_ypos" "6" "model_wide" "71" "model_tall" "47" "text_wide" "140" "text_xpos" "0" "text_ypos" "80" "text_center" "0" "name_only" "1" "resize_to_text" "0" "name_label_alignment" "3" "inset_eq_x" "2" "inset_eq_y" "2" "deferred_description" "1" "deferred_icon" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } "use_item_sounds" "1" } "modelpanel_labels_kv" { "font" "HudFontSmallestBold" "textAlignment" "north-east" "xpos" "c-61" "ypos" "32" "zpos" "15" "wide" "16" "tall" "10" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "use_item_sounds" "1" } "cart_modelpanels_kv" { "ControlName" "CItemModelPanel" "xpos" "c-70" "ypos" "270" "zpos" "13" "wide" "32" "tall" "25" "visible" "0" "bgcolor_override" "0 0 0 255" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "0" "model_xpos" "2" "model_ypos" "2" "model_wide" "28" "model_tall" "21" "text_ypos" "60" "text_center" "1" "name_only" "1" "inset_eq_x" "2" "inset_eq_y" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } "use_item_sounds" "1" } "cart_labels_kv" { "font" "HudFontSmallestBold" "textAlignment" "north-east" "xpos" "c-61" "ypos" "32" "zpos" "15" "wide" "16" "tall" "10" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "use_item_sounds" "1" } } "NameFilterTextEntry" { "ControlName" "TextEntry" "fieldName" "NameFilterTextEntry" "xpos" "c-70" "ypos" "30" "wide" "90" "tall" "19" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "1" "unicode" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "paintbackgroundtype" "2" "font" "HudFontSmall" } "SubcategoryFilterComboBox" { "ControlName" "ComboBox" "fieldName" "SubcategoryFilterComboBox" "Font" "HudFontSmallestBold" "xpos" "c30" "ypos" "30" "zpos" "1" "wide" "112" "tall" "19" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "border_override" "ButtonBorder" "paintborder" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "disabledFgColor_override" "TanLight" "disabledBgColor_override" "Black" "selectionColor_override" "Black" "selectionTextColor_override" "TanLight" "defaultSelectionBG2Color_override" "Black" "Button" { "defaultFgColor_override" "TanLight" "defaultBgColor_override" "Black" "armedFgColor_override" "Black" "armedBgColor_override" "251 235 202 255" "paintbackgroundtype" "0" } } "SortFilterComboBox" { "ControlName" "ComboBox" "fieldName" "SortFilterComboBox" "Font" "HudFontSmallestBold" "xpos" "c152" "ypos" "30" "zpos" "1" "wide" "142" "tall" "19" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "border_override" "ButtonBorder" "paintborder" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "disabledFgColor_override" "TanLight" "disabledBgColor_override" "Black" "selectionColor_override" "Black" "selectionTextColor_override" "TanLight" "defaultSelectionBG2Color_override" "Black" "Button" { "defaultFgColor_override" "TanLight" "defaultBgColor_override" "Black" "armedFgColor_override" "Black" "armedBgColor_override" "251 235 202 255" "paintbackgroundtype" "0" } } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "BackColor" { "ControlName" "EditablePanel" "fieldName" "BackColor" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "pinCorner" "0" "autoResize" "0" "PaintBackgroundType" "2" "border" "NoBorder" "bgcolor_override" "DarkerGrey" } "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "ClassFilterTooltipLabel" { "ControlName" "CExLabel" "fieldName" "ClassFilterTooltipLabel" "font" "HudFontSmallBold" "textAlignment" "center" "xpos" "36" "ypos" "170" "zpos" "100" "wide" "200" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "centerwrap" "1" "paintborder" "1" "textinsetx" "100" "border" "LoadoutItemPopupBorder" "fgcolor" "TanLight" } "PrevPageButton" { "ControlName" "CExButton" "fieldName" "PrevPageButton" "xpos" "c190" "ypos" "280" "zpos" "5" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&A" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "prevpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CurPageLabel" { "ControlName" "CExLabel" "fieldName" "CurPageLabel" "font" "FontBold12" "labelText" "%backpackpage%" "textAlignment" "center" "xpos" "c220" "ypos" "280" "zpos" "5" "wide" "40" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "NextPageButton" { "ControlName" "CExButton" "fieldName" "NextPageButton" "xpos" "c270" "ypos" "280" "zpos" "5" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&D" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PriceLabel" { "ControlName" "CExLabel" "fieldName" "PriceLabel" "font" "HudFontSmallBold" "labelText" "%selectionprice%" "textAlignment" "east" "xpos" "c20" "ypos" "8" "zpos" "5" "wide" "303" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "centerwrap" "1" } "NameFilterLabel" { "ControlName" "CExLabel" "fieldName" "NameFilterLabel" "font" "HudFontSmallestBold" "labelText" "#Store_NameFilterLabel" "textAlignment" "west" "xpos" "c-70" "ypos" "12" "zpos" "1" "wide" "90" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } "SubcategoryFiltersLabel" { "ControlName" "CExLabel" "fieldName" "SubcategoryFiltersLabel" "font" "HudFontSmallestBold" "labelText" "#Store_ItemTypeFilterLabel" "textAlignment" "west" "xpos" "c30" "ypos" "12" "zpos" "1" "wide" "100" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } "SortFilterLabel" { "ControlName" "CExLabel" "fieldName" "SortFilterLabel" "font" "HudFontSmallestBold" "labelText" "#Store_SortByLabel" "textAlignment" "west" "xpos" "c152" "ypos" "12" "zpos" "1" "wide" "150" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } "ClassFilterLabel" { "ControlName" "CExLabel" "fieldName" "ClassFilterLabel" "font" "HudFontSmallestBold" "labelText" "#Store_ClassFilterLabel" "textAlignment" "west" "xpos" "c-300" "ypos" "12" "zpos" "1" "wide" "60" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } "ClassFilterNavPanel" { "ControlName" "CNavigationPanel" "fieldName" "ClassFilterNavPanel" "xpos" "c-300" "ypos" "30" "zpos" "1" "wide" "226" "tall" "19" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "auto_scale" "1" "auto_layout" "1" "selected_button_default" "0" "auto_layout_horizontal_buffer" "4" "display_vertically" "0" "align" "west" "ButtonSettings" { "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "textAlignment" "south-west" "scaleImage" "1" "fgcolor" "TanDark" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanDark" "depressedFgColor_override" "TanDark" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "paintbackground" "0" "paintborder" "0" "image_drawcolor" "255 255 255 180" "image_armedcolor" "TanLight" "image_selectedcolor" "TanLight" "stayselectedonclick" "1" "keyboardinputenabled" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "scaleImage" "1" } } "Buttons" { "all" { "userdata" "0" "image_default" "class_icons/filter_all" "image_armed" "class_icons/filter_all" "image_selected" "class_icons/filter_all_on" "tooltiptext" "#TF_Items_All" "SubImage" { "image" "class_icons/filter_all" } } "scout" { "userdata" "1" "image_default" "class_icons/filter_scout" "image_armed" "class_icons/filter_scout" "image_selected" "class_icons/filter_scout_on" "tooltiptext" "#TF_Items_Scout" "SubImage" { "image" "class_icons/filter_scout" } } "soldier" { "userdata" "3" "image_default" "class_icons/filter_soldier" "image_armed" "class_icons/filter_soldier" "image_selected" "class_icons/filter_soldier_on" "tooltiptext" "#TF_Items_Soldier" "SubImage" { "image" "class_icons/filter_soldier" } } "pyro" { "userdata" "7" "image_default" "class_icons/filter_pyro" "image_armed" "class_icons/filter_pyro" "image_selected" "class_icons/filter_pyro_on" "tooltiptext" "#TF_Items_Pyro" "SubImage" { "image" "class_icons/filter_pyro" } } "demo" { "userdata" "4" "image_default" "class_icons/filter_demo" "image_armed" "class_icons/filter_demo" "image_selected" "class_icons/filter_demo_on" "tooltiptext" "#TF_Items_Demoman" "SubImage" { "image" "class_icons/filter_demo" } } "heavy" { "userdata" "6" "image_default" "class_icons/filter_heavy" "image_armed" "class_icons/filter_heavy" "image_selected" "class_icons/filter_heavy_on" "tooltiptext" "#TF_Items_Heavy" "SubImage" { "image" "class_icons/filter_heavy" } } "engineer" { "userdata" "9" "image_default" "class_icons/filter_engineer" "image_armed" "class_icons/filter_engineer" "image_selected" "class_icons/filter_engineer_on" "tooltiptext" "#TF_Items_Engineer" "SubImage" { "image" "class_icons/filter_engineer" } } "medic" { "userdata" "5" "image_default" "class_icons/filter_medic" "image_armed" "class_icons/filter_medic" "image_selected" "class_icons/filter_medic_on" "tooltiptext" "#TF_Items_Medic" "SubImage" { "image" "class_icons/filter_medic" } } "sniper" { "userdata" "2" "image_default" "class_icons/filter_sniper" "image_armed" "class_icons/filter_sniper" "image_selected" "class_icons/filter_sniper_on" "tooltiptext" "#TF_Items_Sniper" "SubImage" { "image" "class_icons/filter_sniper" } } "spy" { "userdata" "8" "image_default" "class_icons/filter_spy" "image_armed" "class_icons/filter_spy" "image_selected" "class_icons/filter_spy_on" "tooltiptext" "#TF_Items_Spy" "SubImage" { "image" "class_icons/filter_spy" } } } } "BackpackSpaceLabel" { "ControlName" "CExLabel" "fieldName" "BackpackSpaceLabel" "font" "FontRegular12" "labelText" "%freebackpackspace%" "textAlignment" "west" "xpos" "c-300" "ypos" "315" "zpos" "0" "wide" "200" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "CartButton" { "ControlName" "CExButton" "fieldName" "CartButton" "font" "FontBold14" "labelText" "%storecart%" "textAlignment" "east" "xpos" "c-300" "ypos" "334" "zpos" "12" "wide" "74" "tall" "24" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" "textinsetx" "15" "Command" "viewcart" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CartImage" { "ControlName" "ImagePanel" "fieldName" "CartImage" "xpos" "c-295" "ypos" "336" "zpos" "13" "wide" "24" "tall" "20" "visible" "1" "enabled" "1" "image" "store_cart" "scaleImage" "1" } "CartFeaturedItemSymbol" { "ControlName" "ImagePanel" "fieldName" "CartFeaturedItemSymbol" "xpos" "c-225" "ypos" "243" "zpos" "14" "wide" "24" "tall" "24" "visible" "0" "enabled" "1" "image" "store_special" "scaleImage" "1" } "ReloadSchemeButton" { "ControlName" "CExButton" "fieldName" "ReloadSchemeButton" "xpos" "c0" "ypos" "330" "zpos" "25" "wide" "100" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" "labelText" "RELOADSCHEME" "font" "HudFontSmallestBold" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "reloadscheme" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ShowExplanationsButton" { "ControlName" "CExButton" "fieldName" "ShowExplanationsButton" "xpos" "9999" } "StartExplanation" { "ControlName" "CExplanationPopup" "fieldName" "StartExplanation" "zpos" "-50" "wide" "0" "tall" "0" "visible" "0" } "TabsExplanation" { "ControlName" "CExplanationPopup" "fieldName" "TabsExplanation" "zpos" "-50" "wide" "0" "tall" "0" "visible" "0" } "ItemsExplanation" { "ControlName" "CExplanationPopup" "fieldName" "ItemsExplanation" "zpos" "-50" "wide" "0" "tall" "0" "visible" "0" } "DetailsExplanation" { "ControlName" "CExplanationPopup" "fieldName" "DetailsExplanation" "zpos" "-50" "wide" "0" "tall" "0" "visible" "0" } "PreviewToggleExplanation" { "ControlName" "CExplanationPopup" "fieldName" "PreviewToggleExplanation" "zpos" "-50" "wide" "0" "tall" "0" "visible" "0" } "AddToCartExplanation" { "ControlName" "CExplanationPopup" "fieldName" "AddToCartExplanation" "zpos" "-50" "wide" "0" "tall" "0" "visible" "0" } "CartStatusExplanation" { "ControlName" "CExplanationPopup" "fieldName" "CartStatusExplanation" "zpos" "-50" "wide" "0" "tall" "0" "visible" "0" } "CheckoutExplanation" { "ControlName" "CExplanationPopup" "fieldName" "CheckoutExplanation" "zpos" "-50" "wide" "0" "tall" "0" "visible" "0" } "HelpExplanation" { "ControlName" "CExplanationPopup" "fieldName" "HelpExplanation" "zpos" "-50" "wide" "0" "tall" "0" "visible" "0" } "Wall" { "ControlName" "EditablePanel" "fieldName" "Wall" "xpos" "0" "ypos" "55" "zpos" "-5" "wide" "f0" "tall" "255" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "1" "bgcolor_override" "TransparentLightBlack" } } ================================================ FILE: resource/ui/econ/store/v2/storepanel.res ================================================ "resource/ui/storepanel.res" { "store_panel" { "ControlName" "EditablePanel" "fieldName" "store_panel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "1" "PaintBackgroundType" "0" "bgcolor_override" "27 27 27 0" "infocus_bgcolor_override" "27 27 27 0" "outoffocus_bgcolor_override" "27 27 27 0" "title" "#StoreTitle" "title_font" "HudFontMedium" "titletextinsetX" "40" "titletextinsetY" "0" "titlebarfgcolor_override" "HudOffWhite" "titlebardisabledfgcolor_override" "HudOffWhite" "titlebarbgcolor_override" "DarkGrey" "clientinsetx_override" "0" "sheetinset_bottom" "40" } "BackgroundHeader" { "ControlName" "ImagePanel" "fieldName" "BackgroundHeader" "xpos" "0" "ypos" "0" "zpos" "-2" "wide" "f0" "tall" "120" "visible" "1" "enabled" "1" "image" "loadout_header" "tileImage" "1" } "BackgroundHeader2" { "ControlName" "ImagePanel" "fieldName" "BackgroundHeader2" "xpos" "0" "ypos" "0" "zpos" "-2" "wide" "f0" "tall" "120" "visible" "1" "enabled" "1" "fillcolor" "27 27 27 200" "tileImage" "1" } "BackgroundFooter" { "ControlName" "ImagePanel" "fieldName" "BackgroundFooter" "xpos" "0" "ypos" "430" "zpos" "0" "wide" "f0" "tall" "60" "visible" "1" "enabled" "1" "image" "loadout_header" "tileImage" "1" } "BackgroundFooter2" { "ControlName" "ImagePanel" "fieldName" "BackgroundFooter2" "xpos" "0" "ypos" "430" "zpos" "1" "wide" "f0" "tall" "60" "visible" "1" "enabled" "1" "fillcolor" "27 27 27 200" "tileImage" "1" } "FooterLine" { "ControlName" "ImagePanel" "fieldName" "FooterLine" "xpos" "9999" "wide" "0" } "Sheet" { "ControlName" "EditablePanel" "fieldName" "Sheet" "tabxindent" "80" "tabxdelta" "10" "tabwidth" "240" "tabheight" "25" "transition_time" "0" "yoffset" "15" "HeaderLine" { "ControlName" "ImagePanel" "fieldName" "HeaderLine" "xpos" "0" "ypos" "20" "zpos" "5" "wide" "f0" "tall" "10" "visible" "0" "enabled" "0" "image" "loadout_solid_line" "scaleImage" "1" } "tabskv" { "textinsetx" "40" "textAlignment" "center" "font" "FontBold18" "selectedcolor" "TanLight" "unselectedcolor" "TanDark" "defaultBgColor_override" "DarkGrey" "paintbackground" "1" "activeborder_override" "ButtonDepressedBorder" "normalborder_override" "ButtonDepressedBorder" "armedBgColor_override" "37 37 37 255" "selectedBgColor_override" "DarkGrey" } } "CloseButton" { "ControlName" "CExButton" "fieldName" "CloseButton" "xpos" "c-238" "ypos" "440" "zpos" "2" "wide" "150" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#FH_exit_store" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "close" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "armory_panel" { "ControlName" "CArmoryPanel" "fieldName" "armory_panel" "xpos" "0" "ypos" "30" "wide" "f0" "tall" "390" "zpos" "500" "visible" "0" } "NotificationsPresentPanel" { "ControlName" "CNotificationsPresentPanel" "fieldName" "NotificationsPresentPanel" "xpos" "r200" "ypos" "10" "zpos" "10000" "wide" "190" "tall" "50" "visible" "0" "enabled" "1" } "SupportCommunityMapMakersCheckButton" { "ControlName" "CheckButton" "fieldName" "SupportCommunityMapMakersCheckButton" "xpos" "c225" "ypos" "445" "zpos" "5" "wide" "25" "tall" "25" "font" "HudFontSmall" "labelText" "" "visible" "0" } "SupportCommunityMapMakersLabel" { "ControlName" "CExLabel" "fieldName" "SupportCommunityMapMakersLabel" "textAlignment" "north-west" "xpos" "c250" "ypos" "445" "zpos" "5" "wide" "70" "tall" "100" "font" "FontRegular10" "wrap" "1" "labelText" "#Store_ConfirmStampDonationAddTitle" "visible" "0" } "CheckoutButton" { "ControlName" "CExButton" "fieldName" "CheckoutButton" "xpos" "c70" "ypos" "440" "zpos" "2" "wide" "150" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Store_Checkout" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "checkout" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/store/v2/storepreviewitempanel.res ================================================ "resource/ui/storepreviewitempanel.res" { "storepreviewitem" { "ControlName" "CStorePreviewItemPanel" "fieldName" "storepreviewitem" "xpos" "0" "ypos" "0" "zpos" "1000" "wide" "f0" "tall" "f0" "autoResize" "0" "skip_autoresize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "small_vertical_break_size" "0" "medium_vertical_break_size" "6" "big_vertical_break_size" "7" "horizontal_break_size" "3" "paint_style_buttons_y" "c-140" "control_button_width" "70" "control_button_height" "15" "control_button_y" "c-140" } "ScrollBar" { "ControlName" "ScrollBar" "FieldName" "ScrollBar" "xpos" "c222" "ypos" "c-120" "wide" "11" "tall" "200" "zpos" "1000" "visible" "1" "nobuttons" "1" "Slider" { "PaintBackgroundType" "0" "fgcolor_override" "DullWhite" } "UpButton" { "ControlName" "Button" "FieldName" "UpButton" "visible" "0" "tall" "0" "wide" "0" } "DownButton" { "ControlName" "Button" "FieldName" "DownButton" "visible" "0" "tall" "0" "wide" "0" } } // Fullscreen background panel "BgPanel" { "ControlName" "EditablePanel" "fieldName" "BgPanel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "PaintBackgroundType" "0" "bgcolor_override" "0 0 0 128" } // Rounded dialog border "DialogFrame" { "ControlName" "EditablePanel" "fieldName" "DialogFrame" "xpos" "c-240" "ypos" "c-150" "zpos" "0" "wide" "480" "tall" "300" "visible" "1" "enabled" "1" "paintbackground" "1" "border" "WhiteBorder" "bgcolor_override" "DarkGrey" "PaintBorder" "1" // Background for the player model & item preview panels "PreviewViewportBg" { "ControlName" "EditablePanel" "fieldName" "PreviewViewportBg" "xpos" "10" "ypos" "18" "zpos" "1" "wide" "220" "tall" "213" "visible" "1" "enabled" "1" "paintborder" "1" "border" "PanelBorder" "bgcolor_override" "Grey" } "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontBold14" "labelText" "%itemname%" "textAlignment" "west" "xpos" "240" "ypos" "17" "wide" "221" "tall" "15" "autoResize" "0" "skip_autoresize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } // Scrollable editable panel for right-hand side of preview, for all text details "DetailsView" { "ControlName" "EditablePanel" "fieldName" "DetailsView" "xpos" "240" "ypos" "30" "zpos" "100" "wide" "230" "tall" "201" "visible" "1" "PaintBackgroundType" "0" "bgcolor_override" "Transparent" "skip_autoresize" "1" "autoresize" "0" "ScrollableChild" { "ControlName" "EditablePanel" "fieldName" "ScrollableChild" "xpos" "240" "ypos" "0" "zpos" "100" "wide" "230" "tall" "222" "visible" "1" "PaintBackgroundType" "0" "bgcolor_override" "Transparent" "skip_autoresize" "1" "autoresize" "0" "ItemLevelInfoLabel" { "ControlName" "CExLabel" "fieldName" "ItemLevelInfoLabel" "font" "FontStoreOriginalPrice" "labelText" "%item_level_info%" "textAlignment" "north-west" "wide" "228" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "DullWhite" } "RestrictionsLabel" { "ControlName" "CExLabel" "fieldName" "RestrictionsLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_ItemDesc_Restrictions" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "fgcolor" "LightRed" } "RestrictionsTextLabel" { "ControlName" "CExLabel" "fieldName" "RestrictionsTextLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_HolidayRestrictionText" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "fgcolor" "LightRed" } "UsedByLabel" { "ControlName" "CExLabel" "fieldName" "UsedByLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_ItemDesc_UsedBy" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "DullWhite" } "UsedByTextLabel" { "ControlName" "CExLabel" "fieldName" "UsedByTextLabel" "font" "FontStoreOriginalPrice" "labelText" "%used_by_classes%" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "SlotLabel" { "ControlName" "CExLabel" "fieldName" "SlotLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_ItemDesc_Slot" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "DullWhite" } "SlotTextLabel" { "ControlName" "CExLabel" "fieldName" "SlotTextLabel" "font" "FontStoreOriginalPrice" "labelText" "%slot%" "textAlignment" "north-west" "wide" "228" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "PriceLabel" { "ControlName" "CExLabel" "fieldName" "PriceLabel" "font" "FontBold14" "textAlignment" "north-west" "wide" "228" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labeltext" "%price%" } "ArmoryTextLabel" { "ControlName" "CExLabel" "fieldName" "ArmoryTextLabel" "font" "FontStoreOriginalPrice" "textAlignment" "north-west" "wide" "206" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labeltext" "%armory_text%" } "AttributesLabel" { "ControlName" "CExLabel" "fieldName" "AttributesLabel" "font" "FontStoreOriginalPrice" "textAlignment" "north-west" "wide" "206" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "ItemWikiPageButton" { "ControlName" "CExButton" "fieldName" "ItemWikiPageButton" "zpos" "20" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Store_ItemDesc_ItemWikiPage" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "viewwikipage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "TradableLabel" { "ControlName" "CExLabel" "fieldName" "TradableLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_ItemDesc_Tradable" "textAlignment" "north-west" "wide" "205" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "DullWhite" } "TradableTextLabel" { "ControlName" "CExLabel" "fieldName" "TradableTextLabel" "font" "FontStoreOriginalPrice" "labelText" "%tradable%" "textAlignment" "north-west" "wide" "205" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "GiftableLabel" { "ControlName" "CExLabel" "fieldName" "GiftableLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_ItemDesc_Giftable" "textAlignment" "north-west" "wide" "205" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "DullWhite" } "GiftableTextLabel" { "ControlName" "CExLabel" "fieldName" "GiftableTextLabel" "font" "FontStoreOriginalPrice" "labelText" "%giftable%" "textAlignment" "north-west" "wide" "205" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "NameableLabel" { "ControlName" "CExLabel" "fieldName" "NameableLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_ItemDesc_Nameable" "textAlignment" "north-west" "wide" "205" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "DullWhite" } "NameableTextLabel" { "ControlName" "CExLabel" "fieldName" "NameableTextLabel" "font" "FontStoreOriginalPrice" "labelText" "%nameable%" "textAlignment" "north-west" "wide" "205" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "CraftableLabel" { "ControlName" "CExLabel" "fieldName" "CraftableLabel" "font" "FontStoreOriginalPrice" "labelText" "#Store_ItemDesc_Craftable" "textAlignment" "north-west" "wide" "205" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "DullWhite" } "CraftableTextLabel" { "ControlName" "CExLabel" "fieldName" "CraftableTextLabel" "font" "FontStoreOriginalPrice" "labelText" "%craftable%" "textAlignment" "north-west" "wide" "205" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } } } } "classmodelpanel" { "ControlName" "CTFPlayerModelPanel" "fieldName" "classmodelpanel" "xpos" "c-230" "ypos" "c-132" "zpos" "1" "wide" "220" "tall" "213" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "render_texture" "0" "fov" "40" "allow_rot" "1" "paintbackground" "1" "paintbackgroundenabled" "1" "bgcolor_override" "255 255 255 0" "model" { "force_pos" "1" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "190" "origin_y" "0" "origin_z" "-36" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } } "PreviewItemModelPanel" { "ControlName" "CItemModelPanel" "fieldName" "PreviewItemModelPanel" "xpos" "c-230" "ypos" "c-140" "zpos" "1" "wide" "220" "tall" "220" "visible" "1" "paintbackground" "0" "paintborder" "0" "model_xpos" "10" "model_ypos" "10" "model_wide" "200" "model_tall" "200" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "0" "text_ypos" "10" "itemmodelpanel" { "inventory_image_type" "1" "allow_rot" "0" "force_square_image" "1" } } "ItemIcon1" { "ControlName" "CStorePreviewItemIcon" "fieldName" "ItemIcon1" "xpos" "c-215" "ypos" "c56" "zpos" "13" "wide" "30" "tall" "20" "visible" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "0" "PaintBackgroundType" "2" "bgblockout" { "ControlName" "EditablePanel" "fieldName" "bgblockout" "xpos" "2" "ypos" "2" "zpos" "-10" "wide" "26" "tall" "16" "visible" "1" "enabled" "0" "PaintBackgroundType" "2" "bgcolor_override" "Grey" } "itempanel" { "fieldName" "itempanel" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "1" "model_ypos" "2" "model_wide" "28" "model_tall" "16" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "0" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } } "ItemIcon2" { "ControlName" "CStorePreviewItemIcon" "fieldName" "ItemIcon2" "xpos" "20" "ypos" "225" "zpos" "13" "wide" "30" "tall" "20" "visible" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "0" "PaintBackgroundType" "2" "bgblockout" { "ControlName" "EditablePanel" "fieldName" "bgblockout" "xpos" "2" "ypos" "2" "zpos" "-10" "wide" "26" "tall" "16" "visible" "1" "enabled" "0" "PaintBackgroundType" "2" "bgcolor_override" "Grey" } "itempanel" { "fieldName" "itempanel" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "1" "model_ypos" "2" "model_wide" "28" "model_tall" "16" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "0" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } } "ItemIcon3" { "ControlName" "CStorePreviewItemIcon" "fieldName" "ItemIcon3" "xpos" "20" "ypos" "225" "zpos" "13" "wide" "30" "tall" "20" "visible" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "0" "PaintBackgroundType" "2" "bgblockout" { "ControlName" "EditablePanel" "fieldName" "bgblockout" "xpos" "2" "ypos" "2" "zpos" "-10" "wide" "26" "tall" "16" "visible" "1" "enabled" "0" "PaintBackgroundType" "2" "bgcolor_override" "Grey" } "itempanel" { "fieldName" "itempanel" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "1" "model_ypos" "2" "model_wide" "28" "model_tall" "16" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "0" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } } "ItemIcon4" { "ControlName" "CStorePreviewItemIcon" "fieldName" "ItemIcon4" "xpos" "20" "ypos" "225" "zpos" "13" "wide" "30" "tall" "20" "visible" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "0" "PaintBackgroundType" "2" "bgblockout" { "ControlName" "EditablePanel" "fieldName" "bgblockout" "xpos" "2" "ypos" "2" "zpos" "-10" "wide" "26" "tall" "16" "visible" "1" "enabled" "0" "PaintBackgroundType" "2" "bgcolor_override" "Grey" } "itempanel" { "fieldName" "itempanel" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "1" "model_ypos" "2" "model_wide" "28" "model_tall" "16" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "0" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } } "ItemIcon5" { "ControlName" "CStorePreviewItemIcon" "fieldName" "ItemIcon5" "xpos" "20" "ypos" "225" "zpos" "13" "wide" "30" "tall" "20" "visible" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "0" "PaintBackgroundType" "2" "bgblockout" { "ControlName" "EditablePanel" "fieldName" "bgblockout" "xpos" "2" "ypos" "2" "zpos" "-10" "wide" "26" "tall" "16" "visible" "1" "enabled" "0" "PaintBackgroundType" "2" "bgcolor_override" "Grey" } "itempanel" { "fieldName" "itempanel" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "1" "model_ypos" "2" "model_wide" "28" "model_tall" "16" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "0" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } } "ClassUsageImage1" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage1" "xpos" "65" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage2" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage2" "xpos" "85" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage3" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage3" "xpos" "105" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage4" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage4" "xpos" "125" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage5" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage5" "xpos" "145" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage6" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage6" "xpos" "165" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "IconsMoveLeftButton" { "ControlName" "CExButton" "fieldName" "IconsMoveLeftButton" "xpos" "c-210" "ypos" "c58" "zpos" "20" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "<" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "icons_left" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "118 107 94 255" "armedFgColor_override" "128 117 104 255" "depressedFgColor_override" "236 227 203 255" } "IconsMoveRightButton" { "ControlName" "CExButton" "fieldName" "IconsMoveRightButton" "xpos" "c-45" "ypos" "c58" "zpos" "20" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" ">" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "icons_right" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "118 107 94 255" "armedFgColor_override" "128 117 104 255" "depressedFgColor_override" "236 227 203 255" } "ClassUsageMouseoverLabel" { "ControlName" "CExLabel" "fieldName" "ClassUsageMouseoverLabel" "font" "HudFontSmallest" "textAlignment" "center" "xpos" "c-215" "ypos" "c75" "zpos" "100" "wide" "230" "tall" "55" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "centerwrap" "1" "paintborder" "1" "textinsetx" "100" "border" "LoadoutItemPopupBorder" } "RotLeftButton" { "ControlName" "CPreviewRotButton" "fieldName" "RotLeftButton" "xpos" "c-224" "ypos" "190" "zpos" "20" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "<" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "-1" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "118 107 94 255" "armedFgColor_override" "128 117 104 255" "depressedFgColor_override" "236 227 203 255" "button_activation_type" "0" } "RotRightButton" { "ControlName" "CPreviewRotButton" "fieldName" "RotRightButton" "xpos" "c-35" "ypos" "190" "zpos" "20" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" ">" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "1" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "118 107 94 255" "armedFgColor_override" "128 117 104 255" "depressedFgColor_override" "236 227 203 255" "button_activation_type" "0" } "NextWeaponButton" { "ControlName" "CExButton" "fieldName" "NextWeaponButton" "zpos" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#Store_NextWeapon" "font" "FontRegular12" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "next_weapon" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "GoFullscreenButton" { "ControlName" "CExImageButton" "fieldName" "GoFullscreenButton" "xpos" "c-31" "ypos" "c-123" "zpos" "20" "wide" "11" "tall" "11" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "gofullscreen" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "image_drawcolor" "118 107 94 200" "image_armedcolor" "246 247 213 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "11" "tall" "11" "visible" "1" "enabled" "1" "image" "store/store_fullscreen" "scaleImage" "1" } } "ZoomButton" { "ControlName" "CExImageButton" "fieldName" "ZoomButton" "xpos" "c-31" "ypos" "c-104" "zpos" "20" "wide" "11" "tall" "11" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "zoom_toggle" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "image_drawcolor" "118 107 94 200" "image_armedcolor" "246 247 213 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "11" "tall" "11" "visible" "1" "enabled" "1" "image" "store/store_zoom" "scaleImage" "1" } } "OptionsButton" { "ControlName" "CExImageButton" "fieldName" "OptionsButton" "xpos" "c-31" "ypos" "c-86" "zpos" "20" "wide" "11" "tall" "11" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "options" "paintbackground" "0" "image_drawcolor" "118 107 94 200" "image_armedcolor" "246 247 213 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "11" "tall" "11" "visible" "1" "enabled" "1" "image" "glyph_options" "scaleImage" "1" } } "TeamNavPanel" { "ControlName" "CNavigationPanel" "fieldName" "TeamNavPanel" "xpos" "c-220" "ypos" "c-123" "zpos" "2" "wide" "19" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "auto_scale" "1" "auto_layout" "1" "selected_button_default" "0" "auto_layout_vertical_buffer" "-4" "display_vertically" "1" "align" "west" "ButtonSettings" { "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "textAlignment" "south-west" "scaleImage" "1" "fgcolor" "TanDark" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanDark" "depressedFgColor_override" "TanDark" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "sound_armed" "UI/buttonrollover.wav" "paintbackground" "0" "paintbackgroundtype" "0" "defaultBgColor_Override" "0 0 0 255" "paintborder" "0" "image_drawcolor" "255 255 255 77" "image_armedcolor" "255 255 255 128" "image_selectedcolor" "TanLight" "stayselectedonclick" "1" "keyboardinputenabled" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "19" "tall" "19" "visible" "1" "enabled" "1" "scaleImage" "1" } } "Buttons" { "all" { "userdata" "2" "image_default" "store/store_redteam" "image_armed" "store/store_redteam" "image_selected" "store/store_redteam" "SubImage" { "image" "store/store_redteam" } } "scout" { "userdata" "3" "image_default" "store/store_blueteam" "image_armed" "store/store_blueteam" "image_selected" "store/store_blueteam" "SubImage" { "image" "store/store_blueteam" } } } } "CycleTextLabel" { "ControlName" "CExLabel" "fieldName" "CycleTextLabel" "font" "FontStorePrice" "labelText" "" "textAlignment" "west" "xpos" "c-186" "ypos" "c-126" "wide" "138" "tall" "28" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "centerwrap" "1" } "PaintNameLabel" { "ControlName" "CExLabel" "fieldName" "PaintNameLabel" "font" "FontStorePrice" "labelText" "#Store_NoPaint" "textAlignment" "west" "xpos" "c-186" "ypos" "-1000" "wide" "138" "tall" "28" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "centerwrap" "1" } "StyleNameLabel" { "ControlName" "CExLabel" "fieldName" "StyleNameLabel" "font" "FontStorePrice" "labelText" "None" "textAlignment" "west" "xpos" "132" "ypos" "-1000" "wide" "110" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "centerwrap" "1" } //--- "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "c221" "ypos" "c-144" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "closex" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "BackButton" { "ControlName" "CExButton" "fieldName" "BackButton" "xpos" "c-230" "ypos" "c105" "zpos" "2" "wide" "90" "tall" "30" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_BackCarat" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "close" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "TryItOutButton" { "ControlName" "CExButton" "fieldName" "TryItOutButton" "xpos" "c-130" "ypos" "c105" "zpos" "2" "wide" "120" "tall" "30" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Store_TryItOut" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "tryitout" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "AddToCartButton" { "ControlName" "CExButton" "fieldName" "AddToCartButton" "xpos" "c0" "ypos" "c105" "zpos" "2" "wide" "160" "tall" "30" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%storeaddtocart%" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "addtocart" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "mouseoveritempanel" { "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "1001" "wide" "200" "tall" "150" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_center_x" "1" "resize_to_text" "1" "padding_height" "15" "model_ypos" "15" "model_wide" "150" "model_tall" "100" "hide_collection_panel" "1" "model_center_x" "1" "name_only" "1" } } ================================================ FILE: resource/ui/econ/store/v2/storepreviewitempanel_maps.res ================================================ "resource/ui/storepreviewitempanel.res" { "storepreviewitem" { "ControlName" "CStorePreviewItemPanel" "fieldName" "storepreviewitem" "xpos" "0" "ypos" "0" "zpos" "1000" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" } // Fullscreen background panel "BgPanel" { "ControlName" "EditablePanel" "fieldName" "BgPanel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "PaintBackgroundType" "0" "bgcolor_override" "0 0 0 128" } // Rounded dialog border "DialogFrame" { "ControlName" "EditablePanel" "fieldName" "DialogFrame" "xpos" "c-140" "ypos" "c-150" "zpos" "0" "wide" "280" "tall" "270" "visible" "1" "enabled" "1" "paintbackground" "1" "border" "WhiteBorder" "bgcolor_override" "DarkGrey" "PaintBorder" "1" // Background for the player model & item preview panels "PreviewViewportBg" { "ControlName" "EditablePanel" "fieldName" "PreviewViewportBg" "xpos" "10" "ypos" "22" "zpos" "1" "wide" "260" "tall" "209" "visible" "0" "enabled" "0" "paintborder" "1" "border" "PanelBorder" "bgcolor_override" "Grey" } } "classmodelpanel" { "ControlName" "CTFPlayerModelPanel" "fieldName" "classmodelpanel" "xpos" "c-230" "ypos" "c-140" "zpos" "1" "wide" "220" "tall" "220" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "render_texture" "0" "fov" "40" "allow_rot" "0" "paintbackground" "1" "paintbackgroundenabled" "1" "bgcolor_override" "255 255 255 0" "model" { "force_pos" "1" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "190" "origin_y" "0" "origin_z" "-36" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } } "PreviewItemModelPanel" { "ControlName" "CItemModelPanel" "fieldName" "PreviewItemModelPanel" "xpos" "c-110" "ypos" "c-120" "zpos" "1" "wide" "225" "tall" "200" "visible" "1" "paintbackground" "0" "paintborder" "0" "model_xpos" "25" "model_ypos" "17" "model_wide" "175" "model_tall" "175" "name_only" "0" "attrib_only" "0" "model_only" "1" "paint_icon_hide" "0" "text_ypos" "10" "itemmodelpanel" { "inventory_image_type" "2" "allow_rot" "0" "force_square_image" "1" } } "ItemNameLabel" { "ControlName" "CExLabel" "fieldName" "ItemNameLabel" "font" "FontBold16" "labelText" "%selectiontitle%" "textAlignment" "center" "xpos" "c-130" "ypos" "c-140" "wide" "260" "tall" "33" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "centerwrap" "1" } "ClassUsageImage1" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage1" "xpos" "65" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage2" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage2" "xpos" "85" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage3" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage3" "xpos" "105" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage4" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage4" "xpos" "125" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage5" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage5" "xpos" "145" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "ClassUsageImage6" { "ControlName" "CStorePreviewClassIcon" "fieldName" "ClassUsageImage6" "xpos" "165" "ypos" "225" "zpos" "5" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "panel_bgcolor" "TextColor" "panel_bgcolor_mouseover" "TanLight" "image_indent" "2" "PaintBackgroundType" "2" } "IconsMoveLeftButton" { "ControlName" "CExButton" "fieldName" "IconsMoveLeftButton" "xpos" "c-210" "ypos" "c53" "zpos" "20" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "<" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "icons_left" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "IconsMoveRightButton" { "ControlName" "CExButton" "fieldName" "IconsMoveRightButton" "xpos" "c-45" //238,227 "ypos" "c53" "zpos" "20" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" ">" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "icons_right" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ClassUsageMouseoverLabel" { "ControlName" "CExLabel" "fieldName" "ClassUsageMouseoverLabel" "font" "HudFontSmallest" "textAlignment" "center" "xpos" "c-215" "ypos" "c75" "zpos" "100" "wide" "230" "tall" "55" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "centerwrap" "1" "paintborder" "1" "textinsetx" "100" "border" "LoadoutItemPopupBorder" } "RotLeftButton" { "ControlName" "CPreviewRotButton" "fieldName" "RotLeftButton" "xpos" "c-220" "ypos" "260" "zpos" "20" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "<" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "-1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "RotRightButton" { "ControlName" "CPreviewRotButton" "fieldName" "RotRightButton" "xpos" "c-40" "ypos" "260" "zpos" "20" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" ">" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "NextWeaponButton" { "ControlName" "CExButton" "fieldName" "NextWeaponButton" "xpos" "100" "ypos" "172" "zpos" "20" "wide" "95" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#Store_NextWeapon" "font" "FontBold12" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "next_weapon" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ZoomButton" { "ControlName" "CExButton" "fieldName" "ZoomButton" "xpos" "c-174" "ypos" "263" "zpos" "20" "wide" "50" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#Store_Zoom" "font" "HudFontSmallest" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "zoom_toggle" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "TeamButton" { "ControlName" "CExButton" "fieldName" "TeamButton" "xpos" "c-106" "ypos" "263" "zpos" "20" "wide" "50" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#Store_Team" "font" "HudFontSmallest" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "team_toggle" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PaintNameLabel" { "ControlName" "CExLabel" "fieldName" "PaintNameLabel" "font" "FontStorePrice" "labelText" "#Store_NoPaint" "textAlignment" "west" "xpos" "132" "ypos" "168" "wide" "110" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "centerwrap" "1" } "StyleNameLabel" { "ControlName" "CExLabel" "fieldName" "StyleNameLabel" "font" "FontStorePrice" "labelText" "None" "textAlignment" "west" "xpos" "132" "ypos" "148" "wide" "110" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "centerwrap" "1" } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "c121" "ypos" "c-144" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "close" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "BackButton" { "ControlName" "CExButton" "fieldName" "BackButton" "xpos" "c-130" "ypos" "c88" "zpos" "2" "wide" "80" "tall" "25" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_BackCarat" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "close" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "AddToCartButton" { "ControlName" "CExButton" "fieldName" "AddToCartButton" "xpos" "c-30" "ypos" "c88" "zpos" "2" "wide" "160" "tall" "25" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Store_AddToCart" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "addtocart" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/store/v2/storeviewcartpanel.res ================================================ "resource/ui/storeviewcartpanel.res" { "store_viewcart_panel" { "ControlName" "EditablePanel" "fieldName" "store_viewcart_panel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "1" "PaintBackgroundType" "0" "bgcolor_override" "27 27 27 0" "infocus_bgcolor_override" "27 27 27 0" "outoffocus_bgcolor_override" "27 27 27 0" "title" "#StoreTitle" "title_font" "HudFontMedium" "titletextinsetX" "40" "titletextinsetY" "0" "titlebarfgcolor_override" "HudOffWhite" "titlebardisabledfgcolor_override" "HudOffWhite" "titlebarbgcolor_override" "DarkGrey" "clientinsetx_override" "0" "sheetinset_bottom" "40" "item_entry_kv" { "xpos" "0" "ypos" "0" "wide" "580" "tall" "60" "itempanel" { "ControlName" "CItemModelPanel" "fieldname" "itempanel" "xpos" "0" "ypos" "0" "wide" "400" "tall" "58" "visible" "1" "bgcolor_override" "0 0 0 255" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "3" "model_ypos" "3" "model_wide" "80" "model_tall" "53" "text_xpos" "110" "text_ypos" "24" "text_wide" "250" "text_center" "0" "text_forcesize" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "quantitylabel" { "ControlName" "Label" "fieldname" "quantitylabel" "font" "FontBold12" "textAlignment" "west" "xpos" "70" "ypos" "45" "zpos" "15" "wide" "21" "tall" "10" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%quantity%" } "SeparatorLine" { "ControlName" "ImagePanel" "fieldName" "SeparatorLine" "xpos" "0" "ypos" "58" "zpos" "5" "wide" "580" "tall" "5" "visible" "0" "enabled" "0" "image" "loadout_solid_line" "tileImage" "1" } "SeparatorLine2" { "ControlName" "ImagePanel" "fieldName" "SeparatorLine2" "xpos" "0" "ypos" "58" "zpos" "5" "wide" "580" "tall" "2" "visible" "1" "enabled" "1" "fillcolor" "DullWhite" "tileImage" "1" } "RemoveButton" { "ControlName" "CExButton" "fieldName" "RemoveButton" "xpos" "375" "ypos" "17" "zpos" "5" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Store_Remove" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "remove" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PriceLabel" { "ControlName" "Label" "fieldname" "PriceLabel" "font" "FontCartPrice" "textAlignment" "east" "xpos" "475" "ypos" "0" "zpos" "15" "wide" "95" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%price%" "fgcolor_override" "DullWhite" } } } "BackgroundHeader" { "ControlName" "ImagePanel" "fieldName" "BackgroundHeader" "xpos" "0" "ypos" "0" "zpos" "-2" "wide" "f0" "tall" "120" "visible" "1" "enabled" "1" "image" "loadout_header" "tileImage" "1" } "BackgroundHeader2" { "ControlName" "ImagePanel" "fieldName" "BackgroundHeader2" "xpos" "0" "ypos" "0" "zpos" "-2" "wide" "f0" "tall" "120" "visible" "1" "enabled" "1" "fillcolor" "27 27 27 200" "tileImage" "1" } "BackgroundFooter" { "ControlName" "ImagePanel" "fieldName" "BackgroundFooter" "xpos" "0" "ypos" "430" "zpos" "0" "wide" "f0" "tall" "60" "visible" "1" "enabled" "1" "image" "loadout_header" "tileImage" "1" } "BackgroundFooter2" { "ControlName" "ImagePanel" "fieldName" "BackgroundFooter2" "xpos" "0" "ypos" "430" "zpos" "1" "wide" "f0" "tall" "60" "visible" "1" "enabled" "1" "fillcolor" "27 27 27 200" "tileImage" "1" } "FooterLine" { "ControlName" "ImagePanel" "fieldName" "FooterLine" "xpos" "9999" "wide" "0" } "ClientArea" { "ControlName" "EditablePanel" "fieldName" "ClientArea" "xpos" "0" "ypos" "55" "wide" "f0" "tall" "f0" "bgcolor_override" "DarkGrey" "HeaderLine" { "ControlName" "ImagePanel" "fieldName" "HeaderLine" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "10" "visible" "0" "enabled" "0" "image" "loadout_solid_line" "scaleImage" "1" } "CartItemsLabel" { "ControlName" "CExLabel" "fieldName" "CartItemsLabel" "font" "FontBold20" "labelText" "%storecart%" "textAlignment" "west" "xpos" "c-300" "ypos" "25" "zpos" "1" "wide" "350" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "SeparatorLine" { "ControlName" "ImagePanel" "fieldName" "SeparatorLine" "xpos" "c-300" "ypos" "60" "zpos" "5" "wide" "600" "tall" "5" "visible" "0" "enabled" "0" "image" "loadout_solid_line" "tileImage" "1" } "SeparatorLine2" { "ControlName" "ImagePanel" "fieldName" "SeparatorLine2" "xpos" "c-300" "ypos" "60" "zpos" "5" "wide" "580" "tall" "2" "visible" "1" "enabled" "1" "fillcolor" "DullWhite" "tileImage" "1" } "EmptyCartLabel" { "ControlName" "Label" "fieldName" "EmptyCartLabel" "font" "HudFontSmallBold" "labelText" "#Store_CartIsEmpty" "textAlignment" "center" "xpos" "c-300" "ypos" "62" "zpos" "6" "wide" "600" "tall" "240" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" } "ItemListContainerScroller" { "ControlName" "EditablePanel" "fieldName" "ItemListContainerScroller" "xpos" "c-300" "ypos" "62" "zpos" "5" "wide" "f0" "tall" "240" "PaintBackgroundType" "2" "fgcolor_override" "DullWhite" // Gets copied to the scrollbar fgcolor as part of ScrollableEditablePanel "bgcolor_override" "DarkGrey" "autohide_buttons" "1" "Scrollbar" { "xpos" "586" "wide" "19" "tall" "240" "zpos" "1000" "Slider" { "PaintBackgroundType" "1" } "nobuttons" "0" "UpButton" { "ControlName" "Button" "FieldName" "UpButton" "visible" "1" "tall" "0" "wide" "0" } "DownButton" { "ControlName" "Button" "FieldName" "DownButton" "visible" "1" "tall" "0" "wide" "0" } } "ItemListContainer" { "ControlName" "EditablePanel" "fieldName" "ItemListContainer" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "500" "tall" "240" "PaintBackgroundType" "2" "bgcolor_override" "200 187 161 0" "FeaturedItemSymbol" { "ControlName" "ImagePanel" "fieldName" "FeaturedItemSymbol" "xpos" "c-225" "ypos" "243" "zpos" "99" "wide" "32" "tall" "32" "visible" "1" "enabled" "1" "image" "store_special" "scaleImage" "1" } "PurchaseFooter" { "ControlName" "EditablePanel" "fieldName" "PurchaseFooter" "wide" "580" "tall" "110" "bgcolor_override" "Transparent" "EstimatedTotalLabel" { "ControlName" "CExLabel" "fieldName" "EstimatedTotalLabel" "font" "HudFontSmall" "labelText" "#Store_EstimatedTotal" "textAlignment" "south-east" "xpos" "0" "ypos" "15" "zpos" "100" "wide" "425" "tall" "15" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "WashingtonStateSalesTaxLabel" { "ControlName" "CExLabel" "fieldName" "WashingtonStateSalesTaxLabel" "font" "HudFontSmallest" "labelText" "#Store_WAStateSalesTax" "textAlignment" "north-east" "xpos" "0" "ypos" "29" "zpos" "100" "wide" "425" "tall" "12" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "TotalSubtextLabelB" { "ControlName" "CExLabel" "fieldName" "TotalSubtextLabelB" "font" "HudFontSmallest" "labelText" "#Store_TotalSubtextB" "textAlignment" "north-east" "xpos" "0" "ypos" "39" "zpos" "100" "wide" "425" "tall" "12" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "TotalPriceLabel" { "ControlName" "Label" "fieldname" "TotalPriceLabel" "font" "FontCartPrice" "textAlignment" "east" "xpos" "475" "ypos" "0" "zpos" "15" "wide" "100" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%totalprice%" "fgcolor_override" "TanLight" } } } } } "CloseButton" { "ControlName" "CExButton" "fieldName" "CloseButton" "xpos" "100" "ypos" "440" "zpos" "2" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Store_ContinueShopping" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "close" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CheckoutButton" { "ControlName" "CExButton" "fieldName" "CheckoutButton" "xpos" "c120" "ypos" "440" "zpos" "2" "wide" "150" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Store_Checkout" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "checkout" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/econ/strangecounttransferdialog.res ================================================ "resource/ui/econ/strangecounttransferdialog.res" { "StrangeCountTrasnferDialog" { "fieldName" "StrangeCountTrasnferDialog" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "101" "wide" "f0" "tall" "f0" "bgcolor_override" "30 25 25 245" } "BG" { "fieldName" "BG" "ControlName" "EditablePanel" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "cs-0.7" "zpos" "0" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "proportionaltoparent" "1" "border" "WhiteBorder" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "#TF_StrangeCount_TransferTitle" "textAlignment" "center" "xpos" "95" "ypos" "10" "zpos" "0" "wide" "210" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "SourceItem" { "ControlName" "CItemModelPanel" "fieldName" "SourceItem" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "name_only" "1" "paint_icon_hide" "1" "actionsignallevel" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "TargetItem" { "ControlName" "CItemModelPanel" "fieldName" "TargetItem" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "name_only" "1" "actionsignallevel" "2" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" "inventory_image_type" "1" } } "ConfirmLabel" { "ControlName" "CExLabel" "fieldName" "ConfirmLabel" "font" "FontRegular14" "labelText" "#TF_StrangeCount_TransferExplain" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "100" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "50" "ypos" "200" "zpos" "1" "wide" "130" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "actionsignallevel" "2" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "220" "ypos" "200" "zpos" "1" "wide" "130" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CraftNameConfirm" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "actionsignallevel" "2" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } } ================================================ FILE: resource/ui/econ/tradingstartdialog.res ================================================ "resource/ui/tradingstartdialog.res" { "TradingStartDialog" { "fieldName" "TradingStartDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "80" "wide" "400" "tall" "300" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "2" "settitlebarvisible" "" "border" "WhiteBorder" "button_kv" { "xpos" "10" "ypos" "0" "wide" "350" "tall" "30" "button" { "xpos" "0" "ypos" "0" "wide" "350" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "font" "HudFontSmallBold" "textAlignment" "west" "textinsetx" "34" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "avatar" "xpos" "5" "ypos" "5" "zpos" "1" "wide" "20" "tall" "20" "image" "" "visible" "1" "enabled" "1" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } } } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold37" "labelText" "#TF_TradeStartDialog_Title" "textAlignment" "center" "xpos" "0" "ypos" "10" "zpos" "1" "wide" "400" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "PlayerListScroller" { "ControlName" "ScrollableEditablePanel" "fieldName" "PlayerListScroller" "xpos" "10" "ypos" "80" "wide" "380" "tall" "130" "PaintBackgroundType" "2" "fgcolor_override" "TextColor" "bgcolor_override" "0 0 0 64" "PlayerList" { "ControlName" "EditablePanel" "fieldName" "PlayerList" "xpos" "0" "ypos" "0" "wide" "190" "tall" "130" "visible" "1" } } "StatePanel0" { "ControlName" "EditablePanel" "fieldName" "StatePanel0" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "50" "wide" "400" "tall" "180" "PaintBackgroundType" "2" "QueryLabel" { "ControlName" "CExLabel" "fieldName" "QueryLabel" "font" "FontRegular14" "labelText" "#TF_TradeStartDialog_Select" "textAlignment" "north" "xpos" "0" "ypos" "10" "zpos" "-1" "wide" "400" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "HudOffWhite" } "subbutton0" { "ControlName" "CExButton" "fieldName" "subbutton0" "xpos" "100" "ypos" "50" "zpos" "1" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_TradeStartDialog_SelectFriends" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "friends" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "DarkGrey" "border_armed" "DarkGrey" } "subbutton1" { "ControlName" "CExButton" "fieldName" "subbutton1" "xpos" "100" "ypos" "90" "zpos" "1" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_TradeStartDialog_SelectServer" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "server" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "DarkGrey" "border_armed" "DarkGrey" } "subbutton2" { "ControlName" "CExButton" "fieldName" "subbutton2" "xpos" "100" "ypos" "130" "zpos" "1" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_TradeStartDialog_SelectProfile" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "profile" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "DarkGrey" "border_armed" "DarkGrey" } } "StatePanel1" { "ControlName" "EditablePanel" "fieldName" "StatePanel1" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "50" "wide" "400" "tall" "180" "PaintBackgroundType" "2" "QueryLabel" { "ControlName" "CExLabel" "fieldName" "QueryLabel" "font" "HudFontSmallBold" "labelText" "#TF_TradeStartDialog_Friends" "textAlignment" "north" "xpos" "0" "ypos" "10" "wide" "400" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "HudOffWhite" } "EmptyPlayerListLabel" { "ControlName" "CExLabel" "fieldName" "EmptyPlayerListLabel" "font" "HudFontSmallBold" "labelText" "#TF_TradeStartDialog_FriendsNone" "textAlignment" "north" "xpos" "0" "ypos" "60" "zpos" "1" "wide" "400" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "centerwrap" "1" "fgcolor_override" "HudOffWhite" } } "StatePanel2" { "ControlName" "EditablePanel" "fieldName" "StatePanel2" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "50" "wide" "400" "tall" "180" "PaintBackgroundType" "2" "QueryLabel" { "ControlName" "CExLabel" "fieldName" "QueryLabel" "font" "HudFontSmallBold" "labelText" "#TF_TradeStartDialog_Server" "textAlignment" "north" "xpos" "0" "ypos" "10" "zpos" "-1" "wide" "400" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "HudOffWhite" } "EmptyPlayerListLabel" { "ControlName" "CExLabel" "fieldName" "EmptyPlayerListLabel" "font" "HudFontSmallBold" "labelText" "#TF_TradeStartDialog_ServerNone" "textAlignment" "north" "xpos" "0" "ypos" "60" "zpos" "1" "wide" "400" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "centerwrap" "1" "fgcolor_override" "HudOffWhite" } } "StatePanel3" { "ControlName" "EditablePanel" "fieldName" "StatePanel3" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "50" "wide" "400" "tall" "180" "PaintBackgroundType" "2" "QueryLabel" { "ControlName" "CExLabel" "fieldName" "QueryLabel" "font" "HudFontSmallBold" "labelText" "#TF_TradeStartDialog_Profile" "textAlignment" "north" "xpos" "0" "ypos" "10" "zpos" "-1" "wide" "400" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "HudOffWhite" } "URLHelpLabel" { "ControlName" "Label" "fieldName" "URLHelpLabel" "font" "HudFontSmallest" "labelText" "#TF_TradeStartDialog_ProfileHelp" "textAlignment" "center" "xpos" "0" "ypos" "40" "zpos" "-1" "wide" "400" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "centerwrap" "1" } "URLFailLabel" { "ControlName" "Label" "fieldName" "URLFailLabel" "font" "HudFontSmallest" "labelText" "#TF_TradeStartDialog_ProfileFail" "textAlignment" "center" "xpos" "0" "ypos" "105" "zpos" "-1" "wide" "400" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "centerwrap" "1" "fgcolor_override" "LightRed" } "URLSearchingLabel" { "ControlName" "Label" "fieldName" "URLSearchingLabel" "font" "HudFontSmallest" "labelText" "#TF_TradeStartDialog_ProfileLookup" "textAlignment" "center" "xpos" "0" "ypos" "105" "zpos" "-1" "wide" "400" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "centerwrap" "1" "fgcolor_override" "LightRed" } "URLEntry" { "ControlName" "TextEntry" "fieldName" "URLEntry" "xpos" "20" "ypos" "80" "wide" "360" "tall" "24" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "textHidden" "0" "editable" "1" "maxchars" "256" "NumericInputOnly" "0" "unicode" "0" "wrap" "0" "fgcolor_override" "TanLight" "bgcolor_override" "0 0 0 60" "paintbackgroundtype" "2" "labelText" "" "font" "HudFontSmall" "textAlignment" "west" } "subbutton0" { "ControlName" "CExButton" "fieldName" "subbutton0" "xpos" "100" "ypos" "150" "zpos" "1" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_TradeStartDialog_ProfileGo" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "url_ok" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "DarkGrey" "border_armed" "DarkGrey" } } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "125" "ypos" "250" "zpos" "1" "wide" "150" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "DarkGrey" "border_armed" "DarkGrey" } } ================================================ FILE: resource/ui/flagstatus.res ================================================ "resource/ui/flagstatus.res" { "Arrow" { "ControlName" "CTFArrowPanel" "fieldName" "Arrow" "xpos" "55" "ypos" "21" "zpos" "1" "wide" "52" "tall" "52" "visible" "1" "enabled" "1" "scaleImage" "1" "if_mvm" { "ypos" "0" } } "Briefcase" { "ControlName" "CTFImagePanel" "fieldName" "Briefcase" "xpos" "68" "ypos" "34" "zpos" "2" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "image" "../hud/objectives_flagpanel_briefcase" "scaleImage" "1" "if_mvm" { "ypos" "14" "wide" "24" "tall" "24" } "if_specialdelivery" { "visible" "0" } } "StatusIcon" { "ControlName" "CTFImagePanel" "fieldName" "StatusIcon" "xpos" "65" "ypos" "31" "zpos" "3" "wide" "32" "tall" "32" "visible" "1" "enabled" "1" "image" "../hud/objectives_flagpanel_ico_flag_home" "scaleImage" "1" "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } } } ================================================ FILE: resource/ui/freezepanel_basic.res ================================================ #base "hudinspectpanel.res" "resource/ui/freezepanel_basic.res" { "itempanel" { // For some reason this doesnt obey the xpos set in HUD Layout "xpos" "r200" } "FreezePanel" { "ControlName" "CTFFreezePanel" "fieldName" "FreezePanel" "screenshot_move_panel_to_corner" "0" } "FreezePanelBase" { "ControlName" "EditablePanel" "fieldName" "FreezePanelBase" "xpos" "c-125" "ypos" "c80" "wide" "250" "tall" "29" "visible" "1" "proportionaltoparent" "1" "PaintBackgroundType" "2" "paintBackground" "1" "paintBorder" "0" "FreezePanelBG" { "ControlName" "ImagePanel" "fieldName" "FreezePanelBG" "xpos" "0" "ypos" "10" "zpos" "0" "wide" "250" "tall" "17" "visible" "1" "enabled" "1" //"image" "../hud/color_panel_blu" "fillcolor" "HudBlack" } "FreezeLabel" { "ControlName" "CExLabel" "fieldName" "FreezeLabel" "font" "FontRegular10" "xpos" "97" "ypos" "0" "zpos" "1" "wide" "153" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#FreezePanel_Killer" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "FreezePanelHealth" { "ControlName" "CTFFreezePanelHealth" "fieldName" "FreezePanelHealth" "xpos" "0" "ypos" "3" "zpos" "1" "wide" "80" "tall" "30" "visible" "1" "enabled" "1" "HealthBonusPosAdj" "0" "HealthDeathWarning" "0.40" "TFFont" "HudFontSmall" "HealthDeathWarningColor" "HUDDeathWarning" "TextColor" "HudOffWhite" } "FreezeLabelKiller" //hard coded xpos that is also affected by avatarimage { "ControlName" "CExLabel" "fieldName" "FreezeLabelKiller" "wide" "0" "visible" "0" "enabled" "0" } "FreezeLabelKiller2" { "ControlName" "CExLabel" "fieldName" "FreezeLabelKiller2" "font" "FontRegular12" "font_minmode" "StreamerMode" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "153" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%killername%" "textAlignment" "center" "use_proportional_insets" "1" "pin_to_sibling" "FreezeLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "AvatarImage" { "ControlName" "CAvatarImagePanel" "fieldName" "AvatarImage" "xpos" "80" "ypos" "10" "zpos" "2" "wide" "17" "wide_minmode" "0" "tall" "17" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "NemesisSubPanel" { "ControlName" "EditablePanel" "fieldName" "NemesisSubPanel" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "FreezeIDBG" { "ControlName" "CTFImagePanel" "fieldName" "FreezeIDBG" "xpos" "0" "ypos" "27" "zpos" "1" "wide" "f0" "tall" "5" "visible" "1" "enabled" "1" "image" "../hud/color_panel_brown" "scaleImage" "1" "teambg_1" "../hud/color_panel_brown" "teambg_2" "../hud/color_panel_blu" "teambg_3" "../hud/color_panel_red" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "0" "draw_corner_height" "0" } } "ScreenshotPanel" { "ControlName" "EditablePanel" "fieldName" "ScreenshotPanel" "wide" "0" "tall" "0" "visible" "0" } } ================================================ FILE: resource/ui/freezepanelkillerhealth.res ================================================ "resource/ui/freezepanelkillerhealth.res" { "PlayerStatusHealthImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthImage" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" } "PlayerStatusHealthImageBG" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthImageBG" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" } "BuildingStatusHealthImageBG" { "ControlName" "ImagePanel" "fieldName" "BuildingStatusHealthImageBG" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" } "PlayerStatusHealthBonusImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthBonusImage" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" } "TargetHealthValue" { "ControlName" "CExLabel" "fieldName" "TargetHealthValue" "xpos" "0" "ypos" "5" "zpos" "5" "wide" "80" "tall" "21" "visible" "1" "enabled" "1" "textAlignment" "center" "font" "FontBold22" "labeltext" "%Health%" } "TargetHealthShadow" { "ControlName" "CExLabel" "fieldName" "TargetHealthShadow" "xpos" "1" "ypos" "6" "zpos" "5" "wide" "80" "tall" "21" "visible" "1" "enabled" "1" "textAlignment" "center" "font" "FontBold22" "fgcolor" "Black" "labeltext" "%Health%" } } ================================================ FILE: resource/ui/globalchat.res ================================================ "resource/ui/globalchat.res" { "partychat" { "fieldName" "partychat" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "10" "zpos" "1001" "wide" "200" "tall" "200" "proportionaltoparent" "1" "keyboardinputenabled" "1" "mouseinputenabled" "1" "border" "PanelBorder" "bgcolor_override" "DarkGrey" "log_font_small" "HudFontSmallest" "log_font_medium" "HudFontSmallest" "log_font_large" "HudFontSmallest" "chat_color_default" "255 255 255 255" "chat_color_player_name" "255 255 0 255" "chat_color_chat_text" "255 255 255 255" "chat_color_party_event" "Orange" "collapsed_height" "0" "expanded_height" "200" "resize_time" "0.3" "invalidate_parent_on_resize" "0" } "chatlog" { // "ControlName" "richtext" "fieldName" "chatlog" "xpos" "cs-0.5" "ypos" "5" "zpos" "1" "wide" "f0" "tall" "f20" "visible" "1" "proportionaltoparent" "1" "RoundedCorners" "0" "font" "HudFontSmallest" "paintbackground" "0" "pinCorner" "2" "autoResize" "1" "ScrollBar" { "FieldName" "ScrollBar" "xpos" "rs1-1" "ypos" "0" "tall" "f0" "wide" "5" "zpos" "1000" "nobuttons" "1" "proportionaltoparent" "1" "Slider" { "fgcolor_override" "TanLight" } "UpButton" { "ControlName" "Button" "FieldName" "UpButton" "visible" "0" } "DownButton" { "ControlName" "Button" "FieldName" "DownButton" "visible" "0" } } } "chatentry" { // "ControlName" "TextEntry" "fieldName" "chatentry" "xpos" "-2" "ypos" "1" "zpos" "1" "wide" "f4" "tall" "13" "visible" "1" "proportionaltoparent" "1" "bgcolor_override" "DarkerGrey" "RoundedCorners" "0" "font" "HudFontSmallest" "alpha" "0" "mouseinputenabled" "0" "pinCorner" "2" //"autoResize" "1" "pin_to_sibling" "chatlog" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "EntryShadow" { "ControlName" "Panel" "fieldName" "EntryShadow" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "2" "wide" "f0" "tall" "15" "visible" "1" "proportionaltoparent" "1" "bgcolor_override" "Transparent" "RoundedCorners" "0" "border" "PanelBorder" "keyboardinputenabled" "0" "mouseinputenabled" "0" "pinCorner" "2" } } ================================================ FILE: resource/ui/healthiconpanel.res ================================================ "resource/ui/healthiconpanel.res" { "HealthIcon" { "ControlName" "EditablePanel" "fieldName" "HealthIcon" "xpos" "0" "ypos" "0" "wide" "70" "tall" "20" "visible" "1" "enabled" "1" "TFFont" "HudFontSmall" "TextColor" "HudOffWhite" "autoResize" "1" } "SpectatorGUIHealth" { "ControlName" "EditablePanel" "fieldName" "SpectatorGUIHealth" "xpos" "0" "ypos" "0" "wide" "70" "tall" "20" "visible" "1" "enabled" "1" "TFFont" "HudFontSmall" "TextColor" "HudOffWhite" "autoResize" "1" } } ================================================ FILE: resource/ui/hud_obj_dispenser.res ================================================ "resource/ui/hud_obj_dispenser.res" { "BuildingStatusItem" { "ControlName" "Frame" "fieldName" "BuildingStatusItem" "xpos" "0" "ypos" "0" "wide" "120" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "Background" { "ControlName" "CIconPanel" "fieldName" "Background" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "Icon_Dispenser" { "ControlName" "CIconPanel" "fieldName" "Icon_Dispenser" "xpos" "12" "ypos" "5" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "obj_status_dispenser" "iconColor" "TanLight" } "NotBuiltPanel" { "ControlName" "EditablePanel" "fieldName" "NotBuiltPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "35" "visible" "1" "NotBuiltLabel" { "ControlName" "CExLabel" "fieldName" "NotBuiltLabel" "font" "FontRegular10" "xpos" "0" "ypos" "5" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "#Building_hud_dispenser_not_built" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "BuiltPanel" { "ControlName" "EditablePanel" "fieldName" "BuiltPanel" "xpos" "0" "ypos" "0" "wide" "120" "tall" "40" "visible" "0" "Icon_Upgrade_1" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_1" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_1" "iconColor" "TanLight" } "Icon_Upgrade_2" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_2" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_2" "iconColor" "TanLight" } "Icon_Upgrade_3" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_3" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_3" "iconColor" "TanLight" } "AlertTray" { "ControlName" "CBuildingStatusAlertTray" "fieldName" "AlertTray" "xpos" "95" "ypos" "6" "zpos" "-2" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "icon" "obj_status_alert_background_tall" } "WrenchIcon" { "ControlName" "CIconPanel" "fieldName" "WrenchIcon" "xpos" "101" "ypos" "12" "zpos" "1" "wide" "17" "tall" "17" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "obj_status_icon_wrench" "iconColor" "TanLight" } "SapperIcon" { "ControlName" "CIconPanel" "fieldName" "SapperIcon" "xpos" "101" "ypos" "12" "zpos" "1" "wide" "17" "tall" "17" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "obj_status_icon_sapper" "iconColor" "TanLight" } "Health" { "ControlName" "CBuildingHealthBar" "fieldName" "Health" "font" "Default" "xpos" "1" "ypos" "10" "wide" "8" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingPanel" { "ControlName" "EditablePanel" "fieldName" "BuildingPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "40" "visible" "0" "BuildingLabel" { "ControlName" "CExLabel" "fieldName" "BuildingLabel" "font" "FontRegular10" "xpos" "0" "ypos" "10" "wide" "45" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_building" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingProgress" { "ControlName" "ContinuousProgressBar" "fieldName" "BuildingProgress" "font" "Default" "xpos" "0" "ypos" "20" "wide" "45" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "RunningPanel" { "ControlName" "EditablePanel" "fieldName" "RunningPanel" "xpos" "45" "ypos" "0" "wide" "50" "tall" "35" "visible" "0" "AmmoIcon" { "ControlName" "ImagePanel" "fieldName" "AmmoIcon" "xpos" "0" "ypos" "12" "zpos" "1" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../hud/hud_obj_status_ammo_64" "drawcolor" "ProgressOffWhite" } "Ammo" { "ControlName" "ContinuousProgressBar" "fieldName" "Ammo" "font" "Default" "xpos" "12" "ypos" "12" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "UpgradeIcon" { "ControlName" "CIconPanel" "fieldName" "UpgradeIcon" "xpos" "0" "ypos" "23" "zpos" "1" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "ico_metal" "iconColor" "ProgressOffWhite" } "Upgrade" { "ControlName" "ContinuousProgressBar" "fieldName" "Upgrade" "font" "Default" "xpos" "12" "ypos" "23" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } } } ================================================ FILE: resource/ui/hud_obj_sapper.res ================================================ "resource/ui/hud_obj_sapper.res" { "BuildingStatusItem" { "ControlName" "Frame" "fieldName" "BuildingStatusItem" "xpos" "0" "ypos" "0" "wide" "100" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "Background" { "ControlName" "CIconPanel" "fieldName" "Background" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "Icon" { "ControlName" "CIconPanel" "fieldName" "Icon" "xpos" "12" "ypos" "5" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "obj_status_sapper" "iconColor" "TanLight" } "NotBuiltPanel" { "ControlName" "EditablePanel" "fieldName" "NotBuiltPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "35" "visible" "1" "NotBuiltLabel" { "ControlName" "CExLabel" "fieldName" "NotBuiltLabel" "font" "FontRegular10" "xpos" "0" "ypos" "5" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_NotBuilt" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "BuiltPanel" { "ControlName" "EditablePanel" "fieldName" "BuiltPanel" "xpos" "0" "ypos" "0" "wide" "100" "tall" "40" "visible" "0" "Health" { "ControlName" "CBuildingHealthBar" "fieldName" "Health" "font" "Default" "xpos" "1" "ypos" "10" "wide" "8" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingPanel" { "ControlName" "EditablePanel" "fieldName" "BuildingPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "40" "visible" "0" "BuildingLabel" { "ControlName" "CExLabel" "fieldName" "BuildingLabel" "font" "FontRegular10" "xpos" "0" "ypos" "10" "wide" "45" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_building" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingProgress" { "ControlName" "ContinuousProgressBar" "fieldName" "BuildingProgress" "font" "Default" "xpos" "0" "ypos" "20" "wide" "45" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "RunningPanel" { "ControlName" "EditablePanel" "fieldName" "RunningPanel" "xpos" "45" "ypos" "0" "wide" "50" "tall" "35" "visible" "0" "TargetIcon" { "ControlName" "CIconPanel" "fieldName" "TargetIcon" "xpos" "0" "ypos" "12" "zpos" "1" "wide" "8" "tall" "8" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_sentrygun_1" "iconColor" "ProgressOffWhite" } "TargetHealth" { "ControlName" "ContinuousProgressBar" "fieldName" "TargetHealth" "font" "Default" "xpos" "0" "ypos" "17" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } } } ================================================ FILE: resource/ui/hud_obj_sentrygun.res ================================================ "resource/ui/hud_obj_sentrygun.res" { "BuildingStatusItem" { "ControlName" "Frame" "fieldName" "BuildingStatusItem" "xpos" "0" "ypos" "0" "wide" "120" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "Background" { "ControlName" "CIconPanel" "fieldName" "Background" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "Icon_Sentry_1" { "ControlName" "CIconPanel" "fieldName" "Icon_Sentry_1" "xpos" "12" "ypos" "5" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "obj_status_sentrygun_1" "iconColor" "TanLight" } "Icon_Sentry_2" { "ControlName" "CIconPanel" "fieldName" "Icon_Sentry_2" "xpos" "12" "ypos" "5" "wide" "30" "tall" "30" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_sentrygun_2" "iconColor" "TanLight" } "Icon_Sentry_3" { "ControlName" "CIconPanel" "fieldName" "Icon_Sentry_3" "xpos" "12" "ypos" "5" "wide" "30" "tall" "30" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_sentrygun_3" "iconColor" "TanLight" } "NotBuiltPanel" { "ControlName" "EditablePanel" "fieldName" "NotBuiltPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "35" "visible" "1" "NotBuiltLabel" { "ControlName" "CExLabel" "fieldName" "NotBuiltLabel" "font" "FontRegular10" "xpos" "0" "ypos" "5" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "#Building_hud_sentry_not_built" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "proportionaltoparent" "1" } } "BuiltPanel" { "ControlName" "EditablePanel" "fieldName" "BuiltPanel" "xpos" "0" "ypos" "0" "wide" "120" "tall" "40" "visible" "0" "Icon_Upgrade_1" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_1" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_1" "iconColor" "TanLight" } "Icon_Upgrade_2" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_2" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_2" "iconColor" "TanLight" } "Icon_Upgrade_3" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_3" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_3" "iconColor" "TanLight" } "AlertTray" { "ControlName" "CBuildingStatusAlertTray" "fieldName" "AlertTray" "xpos" "95" "ypos" "6" "zpos" "-2" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "icon" "obj_status_alert_background_tall" } "WrenchIcon" { "ControlName" "CIconPanel" "fieldName" "WrenchIcon" "xpos" "101" "ypos" "12" "zpos" "1" "wide" "17" "tall" "17" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "obj_status_icon_wrench" "iconColor" "TanLight" } "SapperIcon" { "ControlName" "CIconPanel" "fieldName" "SapperIcon" "xpos" "101" "ypos" "12" "zpos" "1" "wide" "17" "tall" "17" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "obj_status_icon_sapper" "iconColor" "TanLight" } "Health" { "ControlName" "CBuildingHealthBar" "fieldName" "Health" "font" "Default" "xpos" "1" "ypos" "10" "wide" "8" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingPanel" { "ControlName" "EditablePanel" "fieldName" "BuildingPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "40" "visible" "0" "BuildingLabel" { "ControlName" "CExLabel" "fieldName" "BuildingLabel" "font" "FontRegular10" "xpos" "0" "ypos" "10" "wide" "45" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_building" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingProgress" { "ControlName" "ContinuousProgressBar" "fieldName" "BuildingProgress" "font" "Default" "xpos" "0" "ypos" "20" "wide" "45" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "RunningPanel" { "ControlName" "EditablePanel" "fieldName" "RunningPanel" "xpos" "45" "ypos" "0" "wide" "50" "tall" "35" "visible" "0" "KillIcon" { "ControlName" "ImagePanel" "fieldName" "KillIcon" "xpos" "0" "ypos" "1" "zpos" "1" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../hud/hud_obj_status_kill_64" "drawcolor" "ProgressOffWhite" } "KillsLabel" { "ControlName" "CExLabel" "fieldName" "KillsLabel" "font" "FontRegular11" "xpos" "15" "ypos" "1" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_sentry_kills_assists" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "drawcolor" "ProgressOffWhite" } "ShellIcon" { "ControlName" "ImagePanel" "fieldName" "ShellIcon" "xpos" "0" "ypos" "12" "zpos" "1" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../hud/hud_obj_status_ammo_64" "drawcolor" "ProgressOffWhite" } "Shells" { "ControlName" "ContinuousProgressBar" "fieldName" "Shells" "font" "Default" "xpos" "12" "ypos" "12" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "RocketIcon" { "ControlName" "ImagePanel" "fieldName" "RocketIcon" "xpos" "0" "ypos" "23" "zpos" "1" "wide" "8" "tall" "8" "visible" "0" "enabled" "1" "scaleImage" "1" "image" "../hud/hud_obj_status_rockets_64" "drawcolor" "ProgressOffWhite" } "Rockets" { "ControlName" "ContinuousProgressBar" "fieldName" "Rockets" "font" "Default" "xpos" "12" "ypos" "23" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "UpgradeIcon" { "ControlName" "CIconPanel" "fieldName" "UpgradeIcon" "xpos" "0" "ypos" "23" "zpos" "1" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "ico_metal" "iconColor" "ProgressOffWhite" } "Upgrade" { "ControlName" "ContinuousProgressBar" "fieldName" "Upgrade" "font" "Default" "xpos" "12" "ypos" "23" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } } } ================================================ FILE: resource/ui/hud_obj_sentrygun_disp.res ================================================ "resource/ui/hud_obj_sentrygun_disp.res" { "BuildingStatusItem" { "ControlName" "Frame" "fieldName" "BuildingStatusItem" "xpos" "0" "ypos" "0" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "Background" { "ControlName" "CIconPanel" "fieldName" "Background" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "Icon_Sentry_1" { "ControlName" "CIconPanel" "fieldName" "Icon_Sentry_1" "xpos" "12" "ypos" "0" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "obj_status_sentrygun_1" "iconColor" "TanLight" } "NotBuiltPanel" { "ControlName" "EditablePanel" "fieldName" "NotBuiltPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "35" "visible" "1" "NotBuiltLabel" { "ControlName" "CExLabel" "fieldName" "NotBuiltLabel" "font" "FontRegular10" "xpos" "0" "ypos" "5" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "#Building_hud_disp_sentry_not_built" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "BuiltPanel" { "ControlName" "EditablePanel" "fieldName" "BuiltPanel" "xpos" "0" "ypos" "0" "wide" "100" "tall" "40" "visible" "0" "Icon_Upgrade_1" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_1" "xpos" "9999" } "AlertTray" { "ControlName" "CBuildingStatusAlertTray" "fieldName" "AlertTray" "xpos" "9999" } "WrenchIcon" { "ControlName" "CIconPanel" "fieldName" "WrenchIcon" "xpos" "9999" } "SapperIcon" { "ControlName" "CIconPanel" "fieldName" "SapperIcon" "xpos" "9999" } "Health" { "ControlName" "CBuildingHealthBar" "fieldName" "Health" "font" "Default" "xpos" "1" "ypos" "2" "wide" "8" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingPanel" { "ControlName" "EditablePanel" "fieldName" "BuildingPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "40" "visible" "0" "BuildingLabel" { "ControlName" "CExLabel" "fieldName" "BuildingLabel" "font" "FontRegular10" "xpos" "0" "ypos" "10" "wide" "45" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_building" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingProgress" { "ControlName" "ContinuousProgressBar" "fieldName" "BuildingProgress" "font" "Default" "xpos" "0" "ypos" "20" "wide" "45" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "RunningPanel" { "ControlName" "EditablePanel" "fieldName" "RunningPanel" "xpos" "45" "ypos" "0" "wide" "50" "tall" "35" "visible" "0" "KillIcon" { "ControlName" "ImagePanel" "fieldName" "KillIcon" "xpos" "0" "ypos" "10" "zpos" "1" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../hud/hud_obj_status_kill_64" "drawcolor" "ProgressOffWhite" } "KillsLabel" { "ControlName" "CExLabel" "fieldName" "KillsLabel" "font" "FontRegular11" "xpos" "15" "ypos" "11" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_sentry_kills_assists" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "drawcolor" "ProgressOffWhite" } "ShellIcon" { "ControlName" "ImagePanel" "fieldName" "ShellIcon" "xpos" "0" "ypos" "12" "zpos" "1" "wide" "8" "tall" "8" "visible" "0" "enabled" "1" "scaleImage" "1" "image" "../hud/hud_obj_status_ammo_64" "drawcolor" "ProgressOffWhite" } "Shells" { "ControlName" "ContinuousProgressBar" "fieldName" "Shells" "font" "Default" "xpos" "12" "ypos" "12" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } } } ================================================ FILE: resource/ui/hud_obj_tele.res ================================================ "resource/ui/hud_obj_tele.res" { "BuildingStatusItem" { "ControlName" "Frame" "fieldName" "BuildingStatusItem" "xpos" "0" "ypos" "0" "wide" "120" "tall" "31" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "Background" { "ControlName" "CIconPanel" "fieldName" "Background" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "Icon_Teleport" { "ControlName" "CIconPanel" "fieldName" "Icon_Teleport" "xpos" "21" "ypos" "1" "wide" "28" "tall" "28" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "obj_status_tele_entrance" "iconColor" "TanLight" } "NotBuiltPanel" { "ControlName" "EditablePanel" "fieldName" "NotBuiltPanel" "xpos" "0" "ypos" "0" "wide" "160" "tall" "31" "visible" "1" "NotBuiltLabel" { "ControlName" "CExLabel" "fieldName" "NotBuiltLabel" "font" "FontRegular10" "xpos" "60" "ypos" "0" "wide" "200" "tall" "31" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_tele_not_built" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "BuiltPanel" { "ControlName" "EditablePanel" "fieldName" "BuiltPanel" "xpos" "0" "ypos" "0" "wide" "120" "tall" "31" "visible" "0" "Icon_Upgrade_1" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_1" "xpos" "46" "ypos" "4" "zpos" "1" "wide" "8" "tall" "8" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_1" "iconColor" "TanLight" } "Icon_Upgrade_2" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_2" "xpos" "46" "ypos" "4" "zpos" "1" "wide" "8" "tall" "8" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_2" "iconColor" "TanLight" } "Icon_Upgrade_3" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_3" "xpos" "46" "ypos" "4" "zpos" "1" "wide" "8" "tall" "8" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_3" "iconColor" "TanLight" } "AlertTray" { "ControlName" "CBuildingStatusAlertTray" "fieldName" "AlertTray" "xpos" "95" "ypos" "6" "zpos" "-2" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "icon" "obj_status_alert_background_tall" } "WrenchIcon" { "ControlName" "CIconPanel" "fieldName" "WrenchIcon" "xpos" "101" "ypos" "12" "zpos" "1" "wide" "17" "tall" "17" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "obj_status_icon_wrench" "iconColor" "TanLight" } "SapperIcon" { "ControlName" "CIconPanel" "fieldName" "SapperIcon" "xpos" "101" "ypos" "12" "zpos" "1" "wide" "17" "tall" "17" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "obj_status_icon_sapper" "iconColor" "TanLight" } "Health" { "ControlName" "CBuildingHealthBar" "fieldName" "Health" "font" "Default" "xpos" "10" "ypos" "6" "wide" "8" "tall" "24" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingPanel" { "ControlName" "EditablePanel" "fieldName" "BuildingPanel" "xpos" "60" "ypos" "0" "wide" "100" "tall" "31" "visible" "0" "BuildingLabel" { "ControlName" "CExLabel" "fieldName" "BuildingLabel" "font" "FontRegular10" "xpos" "0" "ypos" "5" "wide" "200" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_building" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingProgress" { "ControlName" "ContinuousProgressBar" "fieldName" "BuildingProgress" "font" "Default" "xpos" "0" "ypos" "16" "wide" "50" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "RunningPanel" { "ControlName" "EditablePanel" "fieldName" "RunningPanel" "xpos" "60" "ypos" "0" "wide" "100" "tall" "31" "visible" "0" "ChargingPanel" { "ControlName" "EditablePanel" "fieldName" "ChargingPanel" "xpos" "0" "ypos" "0" "wide" "100" "tall" "31" "visible" "0" "RechargeLabel" { "ControlName" "CExLabel" "fieldName" "RechargeLabel" "font" "DefaultVerySmall" "xpos" "0" "ypos" "1" "wide" "200" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_tele_charging" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Recharge" { "ControlName" "ContinuousProgressBar" "fieldName" "Recharge" "font" "Default" "xpos" "0" "ypos" "11" "wide" "50" "tall" "5" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "FullyChargedPanel" { "ControlName" "EditablePanel" "fieldName" "FullyChargedPanel" "xpos" "0" "ypos" "0" "wide" "100" "tall" "31" "visible" "0" "TimesUsedLabel" { "ControlName" "CExLabel" "fieldName" "TimesUsedLabel" "font" "DefaultVerySmall" "xpos" "0" "ypos" "-6" "wide" "200" "tall" "31" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_tele_times_used" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "UpgradeLabel" { "ControlName" "CExLabel" "fieldName" "UpgradeLabel" "font" "DefaultVerySmall" "xpos" "0" "ypos" "14" "wide" "200" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_sentry_upgrade" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Upgrade" { "ControlName" "ContinuousProgressBar" "fieldName" "Upgrade" "font" "Default" "xpos" "0" "ypos" "24" "wide" "50" "tall" "2" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } } } ================================================ FILE: resource/ui/hud_obj_tele_entrance.res ================================================ "resource/ui/hud_obj_tele_entrance.res" { "BuildingStatusItem" { "ControlName" "Frame" "fieldName" "BuildingStatusItem" "xpos" "0" "ypos" "0" "wide" "120" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "Background" { "ControlName" "CIconPanel" "fieldName" "Background" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "Icon_Teleport_Entrance" { "ControlName" "CIconPanel" "fieldName" "Icon_Teleport_Entrance" "xpos" "12" "ypos" "5" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "obj_status_tele_entrance" "iconColor" "TanLight" } "NotBuiltPanel" { "ControlName" "EditablePanel" "fieldName" "NotBuiltPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "35" "visible" "1" "NotBuiltLabel" { "ControlName" "CExLabel" "fieldName" "NotBuiltLabel" "font" "FontRegular10" "xpos" "0" "ypos" "5" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "#Building_hud_tele_enter_not_built" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "BuiltPanel" { "ControlName" "EditablePanel" "fieldName" "BuiltPanel" "xpos" "0" "ypos" "0" "wide" "120" "tall" "40" "visible" "0" "Icon_Upgrade_1" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_1" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_1" "iconColor" "TanLight" } "Icon_Upgrade_2" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_2" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_2" "iconColor" "TanLight" } "Icon_Upgrade_3" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_3" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_3" "iconColor" "TanLight" } "AlertTray" { "ControlName" "CBuildingStatusAlertTray" "fieldName" "AlertTray" "xpos" "95" "ypos" "6" "zpos" "-2" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "icon" "obj_status_alert_background_tall" } "WrenchIcon" { "ControlName" "CIconPanel" "fieldName" "WrenchIcon" "xpos" "101" "ypos" "12" "zpos" "1" "wide" "17" "tall" "17" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "obj_status_icon_wrench" "iconColor" "TanLight" } "SapperIcon" { "ControlName" "CIconPanel" "fieldName" "SapperIcon" "xpos" "101" "ypos" "12" "zpos" "1" "wide" "17" "tall" "17" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "obj_status_icon_sapper" "iconColor" "TanLight" } "Health" { "ControlName" "CBuildingHealthBar" "fieldName" "Health" "font" "Default" "xpos" "1" "ypos" "10" "wide" "8" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingPanel" { "ControlName" "EditablePanel" "fieldName" "BuildingPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "40" "visible" "0" "BuildingLabel" { "ControlName" "CExLabel" "fieldName" "BuildingLabel" "font" "FontRegular10" "xpos" "0" "ypos" "10" "wide" "45" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_building" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingProgress" { "ControlName" "ContinuousProgressBar" "fieldName" "BuildingProgress" "font" "Default" "xpos" "0" "ypos" "20" "wide" "45" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "RunningPanel" { "ControlName" "EditablePanel" "fieldName" "RunningPanel" "xpos" "45" "ypos" "0" "wide" "50" "tall" "35" "visible" "0" "TeleportedIcon" { "ControlName" "ImagePanel" "fieldName" "TeleportedIcon" "xpos" "0" "ypos" "12" "zpos" "1" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../hud/hud_obj_status_teleport_64" "drawcolor" "ProgressOffWhite" } "ChargingPanel" { "ControlName" "EditablePanel" "fieldName" "ChargingPanel" "xpos" "12" "ypos" "12" "wide" "38" "tall" "8" "visible" "0" "Recharge" { "ControlName" "ContinuousProgressBar" "fieldName" "Recharge" "font" "Default" "xpos" "0" "ypos" "0" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "FullyChargedPanel" { "ControlName" "EditablePanel" "fieldName" "FullyChargedPanel" "xpos" "12" "ypos" "12" "wide" "38" "tall" "8" "visible" "0" "TimesUsedLabel" { "ControlName" "CExLabel" "fieldName" "TimesUsedLabel" "font" "FontRegular11" "xpos" "3" "ypos" "0" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%timesused%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "drawcolor" "ProgressOffWhite" } } "UpgradeIcon" { "ControlName" "CIconPanel" "fieldName" "UpgradeIcon" "xpos" "0" "ypos" "23" "zpos" "1" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "ico_metal" "iconColor" "ProgressOffWhite" } "Upgrade" { "ControlName" "ContinuousProgressBar" "fieldName" "Upgrade" "font" "Default" "xpos" "12" "ypos" "23" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } } } ================================================ FILE: resource/ui/hud_obj_tele_exit.res ================================================ "resource/ui/hud_obj_tele_exit.res" { "BuildingStatusItem" { "ControlName" "Frame" "fieldName" "BuildingStatusItem" "xpos" "0" "ypos" "0" "wide" "120" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "Background" { "ControlName" "CIconPanel" "fieldName" "Background" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "Icon_Teleport_Exit" { "ControlName" "CIconPanel" "fieldName" "Icon_Teleport_Exit" "xpos" "12" "ypos" "5" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "obj_status_tele_exit" "iconColor" "TanLight" } "NotBuiltPanel" { "ControlName" "EditablePanel" "fieldName" "NotBuiltPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "35" "visible" "1" "NotBuiltLabel" { "ControlName" "CExLabel" "fieldName" "NotBuiltLabel" "font" "FontRegular10" "xpos" "0" "ypos" "5" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "#Building_hud_tele_exit_not_built" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "BuiltPanel" { "ControlName" "EditablePanel" "fieldName" "BuiltPanel" "xpos" "0" "ypos" "0" "wide" "120" "tall" "40" "visible" "0" "Icon_Upgrade_1" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_1" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_1" "iconColor" "TanLight" } "Icon_Upgrade_2" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_2" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_2" "iconColor" "TanLight" } "Icon_Upgrade_3" { "ControlName" "CIconPanel" "fieldName" "Icon_Upgrade_3" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "10" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "icon" "obj_status_upgrade_3" "iconColor" "TanLight" } "AlertTray" { "ControlName" "CBuildingStatusAlertTray" "fieldName" "AlertTray" "xpos" "95" "ypos" "6" "zpos" "-2" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "icon" "obj_status_alert_background_tall" } "WrenchIcon" { "ControlName" "CIconPanel" "fieldName" "WrenchIcon" "xpos" "101" "ypos" "12" "zpos" "1" "wide" "17" "tall" "17" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "obj_status_icon_wrench" "iconColor" "TanLight" } "SapperIcon" { "ControlName" "CIconPanel" "fieldName" "SapperIcon" "xpos" "101" "ypos" "12" "zpos" "1" "wide" "17" "tall" "17" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "obj_status_icon_sapper" "iconColor" "TanLight" } "Health" { "ControlName" "CBuildingHealthBar" "fieldName" "Health" "font" "Default" "xpos" "1" "ypos" "10" "wide" "8" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingPanel" { "ControlName" "EditablePanel" "fieldName" "BuildingPanel" "xpos" "50" "ypos" "0" "wide" "50" "tall" "40" "visible" "0" "BuildingLabel" { "ControlName" "CExLabel" "fieldName" "BuildingLabel" "font" "FontRegular10" "xpos" "0" "ypos" "10" "wide" "45" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Building_hud_building" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "BuildingProgress" { "ControlName" "ContinuousProgressBar" "fieldName" "BuildingProgress" "font" "Default" "xpos" "0" "ypos" "20" "wide" "45" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } "RunningPanel" { "ControlName" "EditablePanel" "fieldName" "RunningPanel" "xpos" "45" "ypos" "0" "wide" "50" "tall" "35" "visible" "0" "proportionaltoparent" "1" "UpgradeIcon" { "ControlName" "CIconPanel" "fieldName" "UpgradeIcon" "xpos" "0" "ypos" "23" "zpos" "1" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "ico_metal" "iconColor" "ProgressOffWhite" } "Upgrade" { "ControlName" "ContinuousProgressBar" "fieldName" "Upgrade" "font" "Default" "xpos" "12" "ypos" "23" "wide" "38" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } } } ================================================ FILE: resource/ui/hudaccountpanel.res ================================================ "resource/ui/hudaccountpanel.res" { "CHudAccountPanel" { "delta_item_x" "75" "delta_item_start_y" "0" "delta_item_end_y" "20" "PositiveColor" "0 170 127 255" "NegativeColor" "190 20 20 200" "delta_lifetime" "1.25" "delta_item_font" "FontBold22" } "AccountBG" { "ControlName" "CTFImagePanel" "fieldName" "AccountBG" "xpos" "9999" "visible" "0" "enabled" "0" } "MetalIcon" { "ControlName" "CIconPanel" "fieldName" "MetalIcon" "xpos" "18" "ypos" "6" "zpos" "1" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "ico_metal" "iconColor" "TanLight" } "MetalIconShadow" { "ControlName" "CIconPanel" "fieldName" "MetalIconShadow" "xpos" "-2" "ypos" "-2" "zpos" "1" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "ico_metal" "iconColor" "Black" "pin_to_sibling" "MetalIcon" } "AccountValue" { "ControlName" "CExLabel" "fieldName" "AccountValue" "xpos" "26" "ypos" "0" "zpos" "2" "wide" "50" "tall" "20" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%metal%" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontBold22" } "AccountValueShadow" { "ControlName" "CExLabel" "fieldName" "AccountValueShadow" "xpos" "-2" "ypos" "-2" "zpos" "2" "wide" "50" "tall" "20" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%metal%" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontBold22" "fgcolor" "Black" "pin_to_sibling" "AccountValue" } } ================================================ FILE: resource/ui/hudammoweapons.res ================================================ #base "../../../../cfg/flawhud/hud_ammo_style.txt" #base "hudammoweapons_base.res" ================================================ FILE: resource/ui/hudammoweapons_base.res ================================================ "resource/ui/hudammoweapons.res" { "HudWeaponAmmoBG" { "ControlName" "CTFImagePanel" "fieldName" "HudWeaponAmmoBG" "xpos" "9999" "visible" "0" "enabled" "0" } "HudWeaponLowAmmoImage" { "ControlName" "ImagePanel" "fieldName" "HudWeaponLowAmmoImage" "xpos" "9999" "visible" "0" "enabled" "0" } "AmmoBG" { "ControlName" "EditablePanel" "fieldName" "AmmoBG" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "110" "tall" "43" "visible" "1" "enabled" "1" "bgcolor_override" "BGBlack" "PaintBackgroundType" "2" } "AmmoInClip" { "ControlName" "CExLabel" "fieldName" "AmmoInClip" "font" "FontBold50" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "65" "tall" "43" "visible" "0" "enabled" "1" "textAlignment" "east" "labelText" "%Ammo%" "pin_to_sibling" "AmmoBG" } "AmmoInClipShadow" { "ControlName" "CExLabel" "fieldName" "AmmoInClipShadow" "font" "ScanlineShadow" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "5" "wide" "65" "tall" "43" "visible" "0" "enabled" "1" "textAlignment" "east" "labelText" "%Ammo%" "pin_to_sibling" "AmmoInClip" } "AmmoInReserve" { "ControlName" "CExLabel" "fieldName" "AmmoInReserve" "font" "FontBold22" "xpos" "5" "ypos" "0" "zpos" "7" "wide" "f0" "tall" "43" "visible" "0" "enabled" "1" "textAlignment" "west" "labelText" "%AmmoInReserve%" "pin_to_sibling" "AmmoInClip" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "AmmoInReserveShadow" { "ControlName" "CExLabel" "fieldName" "AmmoInReserveShadow" "font" "ScanlineShadowSmall" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "f0" "tall" "43" "visible" "0" "enabled" "1" "textAlignment" "west" "labelText" "%AmmoInReserve%" "pin_to_sibling" "AmmoInReserve" } "AmmoNoClip" { "ControlName" "CExLabel" "fieldName" "AmmoNoClip" "font" "FontBold50" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "110" "tall" "43" "visible" "0" "enabled" "1" "textAlignment" "center" "labelText" "%Ammo%" "pin_to_sibling" "AmmoBG" } "AmmoNoClipShadow" { "ControlName" "CExLabel" "fieldName" "AmmoNoClipShadow" "font" "ScanlineShadow" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "5" "wide" "110" "tall" "43" "visible" "0" "enabled" "1" "textAlignment" "center" "labelText" "%Ammo%" "pin_to_sibling" "AmmoNoClip" } } ================================================ FILE: resource/ui/hudarenaclasslayout.res ================================================ "resource/ui/hudarenaclasslayout.res" { "background" { "ControlName" "CTFImagePanel" "fieldName" "background" "xpos" "0" "ypos" "69" "zpos" "1" "wide" "20" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/color_panel_blu" "scaleImage" "1" "teambg_2" "../hud/color_panel_red" "teambg_3" "../hud/color_panel_blu" "paintborder" "0" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "0" "draw_corner_height" "0" } "localPlayerBG" { "ControlName" "CTFImagePanel" "fieldName" "localPlayerBG" "xpos" "0" "ypos" "40" "zpos" "2" "wide" "45" "tall" "80" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/color_panel_clear" "scaleImage" "1" "teambg_2" "../hud/color_panel_clear" "teambg_3" "../hud/color_panel_clear" "paintborder" "0" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "0" "draw_corner_height" "0" } "title" { "ControlName" "CExLabel" "fieldName" "title" "xpos" "c-200" "ypos" "25" "zpos" "6" "wide" "400" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "FontBold20" "labelText" "#TF_Arena_Team_Layout" "textAlignment" "center" "fgcolor" "TanLight" } "titleShadow" { "ControlName" "CExLabel" "fieldName" "titleShadow" "xpos" "-2" "ypos" "-2" "zpos" "5" "wide" "400" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "FontBold20" "labelText" "#TF_Arena_Team_Layout" "textAlignment" "center" "fgcolor" "Black" "pin_to_sibling" "title" } "changeLabel" { "ControlName" "CExLabel" "fieldName" "changeLabel" "xpos" "c-220" "ypos" "130" "zpos" "6" "wide" "440" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "HudFontSmallBold" "labelText" "#TF_Arena_F4_ChangeClass" "textAlignment" "center" "fgcolor" "TanLight" } "changeLabelShadow" { "ControlName" "CExLabel" "fieldName" "changeLabelShadow" "xpos" "-1" "ypos" "-1" "zpos" "5" "wide" "440" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "HudFontSmallBold" "labelText" "#TF_Arena_F4_ChangeClass" "textAlignment" "center" "fgcolor" "Black" "pin_to_sibling" "changeLabel" } "classImage0" { "ControlName" "CTFImagePanel" "fieldName" "classImage0" "xpos" "0" "ypos" "25" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage1" { "ControlName" "CTFImagePanel" "fieldName" "classImage1" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage2" { "ControlName" "CTFImagePanel" "fieldName" "classImage2" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage3" { "ControlName" "CTFImagePanel" "fieldName" "classImage3" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage4" { "ControlName" "CTFImagePanel" "fieldName" "classImage4" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage5" { "ControlName" "CTFImagePanel" "fieldName" "classImage5" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage6" { "ControlName" "CTFImagePanel" "fieldName" "classImage6" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage7" { "ControlName" "CTFImagePanel" "fieldName" "classImage7" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage8" { "ControlName" "CTFImagePanel" "fieldName" "classImage8" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage9" { "ControlName" "CTFImagePanel" "fieldName" "classImage9" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage10" { "ControlName" "CTFImagePanel" "fieldName" "classImage10" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "classImage11" { "ControlName" "CTFImagePanel" "fieldName" "classImage11" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "45" "tall" "90" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } } ================================================ FILE: resource/ui/hudarenanotification.res ================================================ "resource/ui/hudarenanotification.res" { "HudArenaNotificationBG" { "ControlName" "EditablePanel" "fieldName" "HudArenaNotificationBG" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "280" "tall" "80" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } "WarningLabel" { "ControlName" "Label" "fieldName" "WarningLabel" "font" "ScoreboardTeamScore" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "50" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "labelText" "!" "textAlignment" "center" } "BalanceLabel" { "ControlName" "Label" "fieldName" "BalanceLabel" "font" "FontBold14" "xpos" "50" "ypos" "10" "zpos" "1" "wide" "230" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labelText" "" "textAlignment" "center" } "BalanceLabelTip" { "ControlName" "Label" "fieldName" "BalanceLabelTip" "font" "FontRegular11" "xpos" "50" "ypos" "50" "zpos" "1" "wide" "230" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labelText" "%notificationtip%" "textAlignment" "center" } "SwitchImage" { "ControlName" "CTFImagePanel" "fieldName" "SwitchImage" "xpos" "25" "ypos" "15" "zpos" "1" "wide" "50" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "image" "../hud/ico_teambalance" "scaleImage" "1" } } ================================================ FILE: resource/ui/hudarenaplayercount.res ================================================ "resource/ui/hudarenaplayercount.res" { "blueteam" { "ControlName" "EditablePanel" "fieldName" "blueteam" "xpos" "c-40" "ypos" "0" "zpos" "0" "wide" "40" "tall" "30" "visible" "1" "background" { "ControlName" "EditablePanel" "fieldName" "background" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "50" "tall" "23" "visible" "1" "enabled" "1" "bgcolor_override" "HUDBlueTeamSolid" "background2" { "ControlName" "EditablePanel" "fieldName" "background2" "xpos" "0" "ypos" "rs1" "zpos" "0" "wide" "f0" "tall" "3" "visible" "1" "enabled" "1" "bgcolor_override" "HUDBlueTeamDark" "proportionaltoparent" "1" } } "count" { "ControlName" "CExLabel" "fieldName" "count" "xpos" "-14" "ypos" "2" "zpos" "2" "wide" "30" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "FontBold18" "labelText" "%blue_alive%" "textAlignment" "east" "fgcolor" "TanLight" "pin_to_sibling" "background" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "countshadow" { "ControlName" "CExLabel" "fieldName" "countshadow" "xpos" "-2" "ypos" "-2" "zpos" "1" "wide" "30" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "FontBold18" "labelText" "%blue_alive%" "textAlignment" "east" "fgcolor" "Black" "pin_to_sibling" "count" } "playerimage" { "ControlName" "ImagePanel" "fieldName" "playerimage" "xpos" "6" "ypos" "2" "zpos" "3" "wide" "8" "tall" "16" "visible" "1" "enabled" "1" "image" "capture_icon_white" "scaleImage" "1" } } "redteam" { "ControlName" "EditablePanel" "fieldName" "redteam" "xpos" "c0" "ypos" "0" "zpos" "0" "wide" "40" "tall" "30" "visible" "1" "background" { "ControlName" "EditablePanel" "fieldName" "background" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "50" "tall" "23" "visible" "1" "enabled" "1" "bgcolor_override" "HUDRedTeamSolid" "background2" { "ControlName" "EditablePanel" "fieldName" "background2" "xpos" "0" "ypos" "rs1" "zpos" "0" "wide" "f0" "tall" "3" "visible" "1" "enabled" "1" "bgcolor_override" "HUDRedTeamDark" "proportionaltoparent" "1" } } "count" { "ControlName" "CExLabel" "fieldName" "count" "xpos" "-6" "ypos" "2" "zpos" "2" "wide" "30" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "FontBold18" "labelText" "%red_alive%" "textAlignment" "west" "fgcolor" "TanLight" "pin_to_sibling" "background" } "countshadow" { "ControlName" "CExLabel" "fieldName" "countshadow" "xpos" "-2" "ypos" "-2" "zpos" "1" "wide" "30" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "FontBold18" "labelText" "%red_alive%" "textAlignment" "west" "fgcolor" "Black" "pin_to_sibling" "count" } "playerimage" { "ControlName" "ImagePanel" "fieldName" "playerimage" "xpos" "26" "ypos" "2" "zpos" "3" "wide" "8" "tall" "16" "visible" "1" "enabled" "1" "image" "capture_icon_white" "scaleImage" "1" } } } ================================================ FILE: resource/ui/hudarenateammenu.res ================================================ "resource/ui/arenateammenu.res" { "team" { "ControlName" "CTeamMenu" "fieldName" "team" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fgcolor" "255 0 0 255" } "SysMenu" { "ControlName" "Menu" "fieldName" "SysMenu" "xpos" "0" "ypos" "0" "wide" "64" "tall" "24" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" } "MapInfo" { "ControlName" "HTML" "fieldName" "MapInfo" "xpos" "100" "ypos" "34" "wide" "450" "tall" "365" "autoResize" "3" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" } "mapname" { "ControlName" "Label" "fieldName" "mapname" "xpos" "0" "ypos" "c-60" "zpos" "0" "wide" "f0" "tall" "30" "textAlignment" "center" "font" "FontBold37" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "BlueBorder" { "ControlName" "EditablePanel" "fieldName" "BlueBorder" "xpos" "c-200" "ypos" "c30" "zpos" "2" "wide" "200" "tall" "3" "visible" "1" "enabled" "1" "bgcolor_override" "HUDBlueTeamDark" "proportionaltoparent" "1" } "RedBorder" { "ControlName" "EditablePanel" "fieldName" "RedBorder" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "200" "tall" "3" "visible" "1" "enabled" "1" "bgcolor_override" "HUDRedTeamDark" "proportionaltoparent" "1" "pin_to_sibling" "BlueBorder" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "teambutton2" { "ControlName" "CTFTeamButton" "fieldName" "teambutton2" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "200" "tall" "50" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "3" "labelText" "#TF_Arena_Menu_Fight" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "jointeam spectate" "font" "FontBold37" "pin_to_sibling" "BlueBorder" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "defaultBgColor_override" "HUDBlueTeamSolid" "armedBgColor_override" "HUDBlueTeamDark" "depressedBgColor_override" "HUDBlueTeamSolid" "selectedBgColor_override" "HUDBlueTeamDark" "defaultFgColor_override" "TanLight" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "TanLight" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "teambutton3" { "ControlName" "CTFTeamButton" "fieldName" "teambutton3" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "200" "tall" "50" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "3" "labelText" "#TF_Spectate" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "jointeam spectatearena" "font" "FontBold37" "pin_to_sibling" "RedBorder" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "defaultBgColor_override" "HUDRedTeamSolid" "armedBgColor_override" "HUDRedTeamDark" "depressedBgColor_override" "HUDRedTeamSolid" "selectedBgColor_override" "HUDRedTeamDark" "defaultFgColor_override" "TanLight" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanLight" "selectedFgColor_override" "TanLight" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MenuBG" { "ControlName" "ImagePanel" "fieldName" "MenuBG" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "fillcolor" "255 255 255 7" } "TeamMenuAuto" { "ControlName" "CExLabel" "fieldName" "TeamMenuAuto" "xpos" "9999" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "wide" "0" } "TeamMenuSpectate" { "ControlName" "CExLabel" "fieldName" "TeamMenuSpectate" "xpos" "9999" } "ShadedBar" { "ControlName" "ImagePanel" "fieldName" "ShadedBar" "xpos" "9999" } "autodoor" { "ControlName" "CModelPanel" "fieldName" "autodoor" "xpos" "9999" } "spectate" { "ControlName" "CModelPanel" "fieldName" "spectate" "xpos" "9999" } "teambutton0SC" { "ControlName" "CExButton" "fieldName" "teambutton0SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&1" "command" "jointeam spectate" } "teambutton1SC" { "ControlName" "CExButton" "fieldName" "teambutton1SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&2" "command" "jointeam spectatearena" } } ================================================ FILE: resource/ui/hudarenateammenu_sc.res ================================================ #base "hudarenateammenu.res" ================================================ FILE: resource/ui/hudarenawinpanel.res ================================================ "resource/ui/arenawinpanel.res" { "ArenaWinPanelScores" { "ControlName" "EditablePanel" "fieldName" "ArenaWinPanelScores" "xpos" "0" "ypos" "0" "wide" "360" "tall" "40" "visible" "1" "BlueScoreBG" { "ControlName" "EditablePanel" "fieldName" "BlueScoreBG" "xpos" "0" "ypos" "16" "zpos" "-1" "wide" "180" "tall" "23" "visible" "1" "enabled" "1" "bgcolor_override" "HUDBlueTeamSolid" "BlueScoreBG2" { "ControlName" "EditablePanel" "fieldName" "BlueScoreBG2" "xpos" "0" "ypos" "rs1" "wide" "f0" "tall" "3" "visible" "1" "enabled" "1" "bgcolor_override" "HUDBlueTeamDark" "proportionaltoparent" "1" } } "RedScoreBG" { "ControlName" "EditablePanel" "fieldName" "RedScoreBG" "xpos" "180" "ypos" "16" "zpos" "-1" "wide" "180" "tall" "23" "visible" "1" "enabled" "1" "bgcolor_override" "HUDRedTeamSolid" "RedScoreBG2" { "ControlName" "EditablePanel" "fieldName" "RedScoreBG2" "xpos" "0" "ypos" "rs1" "wide" "f0" "tall" "3" "visible" "1" "enabled" "1" "bgcolor_override" "HUDRedTeamDark" "proportionaltoparent" "1" } } "BlueTeamLabel" { "ControlName" "CExLabel" "fieldName" "BlueTeamLabel" "font" "FontBold18" "labelText" "%blueteamname%" "textAlignment" "west" "xpos" "-6" "ypos" "1" "zpos" "3" "wide" "116" "tall" "23" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "AllCaps" "1" "pin_to_sibling" "BlueScoreBG" } "BlueTeamLabelShadow" { "ControlName" "CExLabel" "fieldName" "BlueTeamLabelShadow" "font" "FontBold18" "fgcolor" "Black" "labelText" "%blueteamname%" "textAlignment" "west" "xpos" "-2" "ypos" "-2" "zpos" "2" "wide" "116" "tall" "23" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "AllCaps" "1" "pin_to_sibling" "BlueTeamLabel" } "BlueTeamScore" { "ControlName" "CExLabel" "fieldName" "BlueTeamScore" "font" "FontBold37" "labelText" "%blueteamscore%" "textAlignment" "east" "xpos" "-6" "ypos" "12" "zpos" "3" "wide" "44" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "BlueScoreBG" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "BlueTeamScoreShadow" { "ControlName" "CExLabel" "fieldName" "BlueTeamScoreShadow" "font" "FontBold37" "fgcolor" "Black" "labelText" "%blueteamscore%" "textAlignment" "east" "xpos" "-2" "ypos" "-2" "zpos" "3" "wide" "44" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "BlueTeamScore" } "RedTeamLabel" { "ControlName" "CExLabel" "fieldName" "RedTeamLabel" "font" "FontBold18" "labelText" "%redteamname%" "textAlignment" "east" "xpos" "-6" "ypos" "1" "zpos" "3" "wide" "116" "tall" "23" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "RedScoreBG" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "RedTeamLabelShadow" { "ControlName" "CExLabel" "fieldName" "RedTeamLabelShadow" "font" "FontBold18" "fgcolor" "Black" "labelText" "%redteamname%" "textAlignment" "east" "xpos" "-2" "ypos" "-2" "zpos" "2" "wide" "116" "tall" "23" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "RedTeamLabel" } "RedTeamScore" { "ControlName" "CExLabel" "fieldName" "RedTeamScore" "font" "FontBold37" "labelText" "%redteamscore%" "textAlignment" "west" "xpos" "-6" "ypos" "12" "zpos" "3" "wide" "44" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "RedScoreBG" } "RedTeamScoreShadow" { "ControlName" "CExLabel" "fieldName" "RedTeamScoreShadow" "font" "FontBold37" "fgcolor" "Black" "labelText" "%redteamscore%" "textAlignment" "west" "xpos" "-2" "ypos" "-2" "zpos" "3" "wide" "44" "tall" "34" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "RedTeamScore" } "ArenaStreaksBG" { "ControlName" "ScalableImagePanel" "fieldName" "ArenaStreaksBG" "xpos" "9999" } "ArenaStreakLabel" { "ControlName" "CExLabel" "fieldName" "ArenaStreakLabel" "xpos" "9999" } } "WinPanelBG" { "ControlName" "ImagePanel" "fieldName" "WinPanelBG" "xpos" "9999" } "WinPanelBG2" { "ControlName" "EditablePanel" "fieldName" "WinPanelBG2" "xpos" "0" "ypos" "30" "zpos" "-3" "wide" "360" "tall" "103" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" } "WinningTeamLabel" { "ControlName" "CExLabel" "fieldName" "WinningTeamLabel" "font" "FontRegular10" "xpos" "10" "ypos" "41" "zpos" "1" "wide" "340" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%WinningTeamLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" } "WinningTeamLabelDropshadow" { "ControlName" "CExLabel" "fieldName" "WinningTeamLabelDropshadow" "font" "ScoreboardTeamName" "fgcolor" "Black" "xpos" "9999" "ypos" "9999" "zpos" "1" "wide" "442" "tall" "24" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%WinningTeamLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" } "LosingTeamLabel" { "ControlName" "CExLabel" "fieldName" "LosingTeamLabel" "font" "FontRegular10" "xpos" "10" "ypos" "41" "zpos" "1" "wide" "340" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%LosingTeamLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" } "LosingTeamLabelDropshadow" { "ControlName" "CExLabel" "fieldName" "LosingTeamLabelDropshadow" "font" "ScoreboardTeamName" "fgcolor" "Black" "xpos" "9999" "ypos" "9999" "zpos" "1" "wide" "442" "tall" "24" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%LosingTeamLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" } "WinReasonLabel" { "ControlName" "CExLabel" "fieldName" "WinReasonLabel" "font" "FontRegular10" "xpos" "10" "ypos" "51" "zpos" "1" "wide" "340" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%WinReasonLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" } "DetailsLabel" { "ControlName" "CExLabel" "fieldName" "DetailsLabel" "font" "ScoreboardVerySmall" "xpos" "9999" "ypos" "9999" "zpos" "1" "wide" "418" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%DetailsLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" } "ShadedBar" { "ControlName" "ImagePanel" "fieldName" "ShadedBar" "xpos" "9999" "ypos" "9999" "zpos" "2" "wide" "382" "tall" "84" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "0 0 0 150" "PaintBackgroundType" "0" } "TopPlayersLabel" { "ControlName" "CExLabel" "fieldName" "TopPlayersLabel" "font" "FontRegular9" "xpos" "10" "ypos" "64" "zpos" "3" "wide" "190" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%TopPlayersLabel%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "DamageThisRoundLabel" { "ControlName" "CExLabel" "fieldName" "DamageThisRoundLabel" "font" "FontRegular9" "xpos" "200" "ypos" "64" "zpos" "3" "wide" "40" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Arena_Winpanel_DamageThisRound" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "HealingThisRoundLabel" { "ControlName" "CExLabel" "fieldName" "HealingThisRoundLabel" "font" "FontRegular9" "xpos" "245" "ypos" "64" "zpos" "3" "wide" "35" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Arena_Winpanel_HealingThisRound" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "LifetimeThisRoundLabel" { "ControlName" "CExLabel" "fieldName" "LifetimeThisRoundLabel" "font" "FontRegular9" "xpos" "285" "ypos" "64" "zpos" "3" "wide" "35" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Arena_Winpanel_TimeAliveThisRound" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "KillingBlowsThisRoundLabel" { "ControlName" "CExLabel" "fieldName" "KillingBlowsThisRoundLabel" "font" "FontRegular9" "xpos" "325" "ypos" "64" "zpos" "3" "wide" "25" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Arena_Winpanel_KillingBlows" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "HorizontalLine" { "ControlName" "ImagePanel" "fieldName" "HorizontalLine" "xpos" "9999" } "ArenaWinPanelWinnersPanel" { "ControlName" "EditablePanel" "fieldName" "ArenaWinPanelWinnersPanel" "xpos" "10" "ypos" "76" "wide" "340" "tall" "46" "visible" "1" "zpos" "3" "Player1Avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "Player1Avatar" "xpos" "0" "ypos" "4" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "Player1Name" { "ControlName" "CExLabel" "fieldName" "Player1Name" "xpos" "19" "ypos" "4" "wide" "126" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player1Class" { "ControlName" "CExLabel" "fieldName" "Player1Class" "xpos" "145" "ypos" "4" "wide" "45" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player1Damage" { "ControlName" "CExLabel" "fieldName" "Player1Damage" "xpos" "195" "ypos" "4" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player1Healing" { "ControlName" "CExLabel" "fieldName" "Player1Healing" "xpos" "235" "ypos" "4" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player1Lifetime" { "ControlName" "CExLabel" "fieldName" "Player1Lifetime" "xpos" "275" "ypos" "4" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player1Kills" { "ControlName" "CExLabel" "fieldName" "Player1Kills" "xpos" "315" "ypos" "4" "wide" "25" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player2Avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "Player2Avatar" "xpos" "0" "ypos" "19" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "Player2Name" { "ControlName" "CExLabel" "fieldName" "Player2Name" "xpos" "19" "ypos" "19" "wide" "126" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player2Class" { "ControlName" "CExLabel" "fieldName" "Player2Class" "xpos" "145" "ypos" "19" "wide" "45" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player2Damage" { "ControlName" "CExLabel" "fieldName" "Player2Damage" "xpos" "195" "ypos" "19" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player2Healing" { "ControlName" "CExLabel" "fieldName" "Player2Healing" "xpos" "235" "ypos" "19" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player2Lifetime" { "ControlName" "CExLabel" "fieldName" "Player2Lifetime" "xpos" "275" "ypos" "19" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player2Kills" { "ControlName" "CExLabel" "fieldName" "Player2Kills" "xpos" "315" "ypos" "19" "wide" "25" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player3Avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "Player3Avatar" "xpos" "0" "ypos" "34" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "Player3Name" { "ControlName" "CExLabel" "fieldName" "Player3Name" "xpos" "19" "ypos" "34" "wide" "126" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player3Class" { "ControlName" "CExLabel" "fieldName" "Player3Class" "xpos" "145" "ypos" "34" "wide" "45" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player3Damage" { "ControlName" "CExLabel" "fieldName" "Player3Damage" "xpos" "195" "ypos" "34" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player3Healing" { "ControlName" "CExLabel" "fieldName" "Player3Healing" "xpos" "235" "ypos" "34" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player3Lifetime" { "ControlName" "CExLabel" "fieldName" "Player3Lifetime" "xpos" "275" "ypos" "34" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player3Kills" { "ControlName" "CExLabel" "fieldName" "Player3Kills" "xpos" "315" "ypos" "34" "wide" "25" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } } "ArenaWinPanelLosersPanel" { "ControlName" "EditablePanel" "fieldName" "ArenaWinPanelLosersPanel" "xpos" "10" "ypos" "76" "wide" "340" "tall" "46" "visible" "1" "zpos" "3" "Player1Avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "Player1Avatar" "xpos" "0" "ypos" "4" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "Player1Name" { "ControlName" "CExLabel" "fieldName" "Player1Name" "xpos" "19" "ypos" "4" "wide" "126" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player1Class" { "ControlName" "CExLabel" "fieldName" "Player1Class" "xpos" "145" "ypos" "4" "wide" "45" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player1Damage" { "ControlName" "CExLabel" "fieldName" "Player1Damage" "xpos" "195" "ypos" "4" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player1Healing" { "ControlName" "CExLabel" "fieldName" "Player1Healing" "xpos" "235" "ypos" "4" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player1Lifetime" { "ControlName" "CExLabel" "fieldName" "Player1Lifetime" "xpos" "275" "ypos" "4" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player1Kills" { "ControlName" "CExLabel" "fieldName" "Player1Kills" "xpos" "315" "ypos" "4" "wide" "25" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player2Avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "Player2Avatar" "xpos" "0" "ypos" "19" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "Player2Name" { "ControlName" "CExLabel" "fieldName" "Player2Name" "xpos" "19" "ypos" "19" "wide" "126" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player2Class" { "ControlName" "CExLabel" "fieldName" "Player2Class" "xpos" "145" "ypos" "19" "wide" "45" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player2Damage" { "ControlName" "CExLabel" "fieldName" "Player2Damage" "xpos" "195" "ypos" "19" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player2Healing" { "ControlName" "CExLabel" "fieldName" "Player2Healing" "xpos" "235" "ypos" "19" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player2Lifetime" { "ControlName" "CExLabel" "fieldName" "Player2Lifetime" "xpos" "275" "ypos" "19" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player2Kills" { "ControlName" "CExLabel" "fieldName" "Player2Kills" "xpos" "315" "ypos" "19" "wide" "25" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player3Avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "Player3Avatar" "xpos" "0" "ypos" "34" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "Player3Name" { "ControlName" "CExLabel" "fieldName" "Player3Name" "xpos" "19" "ypos" "34" "wide" "126" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player3Class" { "ControlName" "CExLabel" "fieldName" "Player3Class" "xpos" "145" "ypos" "34" "wide" "45" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player3Damage" { "ControlName" "CExLabel" "fieldName" "Player3Damage" "xpos" "195" "ypos" "34" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player3Healing" { "ControlName" "CExLabel" "fieldName" "Player3Healing" "xpos" "235" "ypos" "34" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player3Lifetime" { "ControlName" "CExLabel" "fieldName" "Player3Lifetime" "xpos" "275" "ypos" "34" "wide" "35" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } "Player3Kills" { "ControlName" "CExLabel" "fieldName" "Player3Kills" "xpos" "315" "ypos" "34" "wide" "25" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "dulltext" "0" "brighttext" "0" } } } ================================================ FILE: resource/ui/hudbosshealth.res ================================================ "resource/ui/hudbosshealth.res" { "BorderImage" { "ControlName" "EditablePanel" "fieldName" "BorderImage" "xpos" "0" "ypos" "5" "zpos" "0" "wide" "200" "tall" "22" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } "HealthBarPanel" { "ControlName" "EditablePanel" "fieldName" "HealthBarPanel" "xpos" "15" "ypos" "9" "zpos" "1" "wide" "168" "tall" "13" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" "BarImage" { "ControlName" "ImagePanel" "fieldName" "BarImage" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "168" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "image" "../hud/halloween_bar" "scaleImage" "1" } } "StunMeter" { "ControlName" "ContinuousProgressBar" "fieldName" "StunMeter" "font" "Default" "xpos" "50" "ypos" "27" "zpos" "2" "wide" "100" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "fgcolor_override" "255 255 0 255" "bgcolor_override" "50 0 0 255" } } ================================================ FILE: resource/ui/hudcurrencyaccount.res ================================================ "resource/ui/hudcurrencyaccount.res" { "Currency" { "ControlName" "CExLabel" "fieldName" "Currency" "font" "FontBold18" "fgcolor" "TanLight" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%currency%" } "CurrencyShadow" { "ControlName" "CExLabel" "fieldName" "CurrencyShadow" "font" "FontBold18" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "3" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%currency%" "pin_to_sibling" "Currency" } "CurrencyBG" { "ControlName" "ImagePanel" "fieldName" "CurrencyBG" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "fillcolor" "HudBlack" } "CurrencyLabel" { "ControlName" "CExLabel" "fieldName" "CurrencyLabel" "font" "FontRegular10" "xpos" "4" "ypos" "0" "zpos" "3" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "west" "allcaps" "1" "fgcolor" "HudWhite" "labelText" "#TF_PVE_Currency" } } ================================================ FILE: resource/ui/huddamageaccount.res ================================================ #base "../../../../cfg/flawhud/hud_damage_font.txt" #base "huddamageaccount_base.res" ================================================ FILE: resource/ui/huddamageaccount_base.res ================================================ "resource/ui/huddamageaccount.res" { "CDamageAccountPanel" { "fieldName" "CDamageAccountPanel" "text_x" "0" "text_y" "0" "delta_item_end_y" "0" "PositiveColor" "TargetHealth" "NegativeColor" "TargetDamage" "delta_lifetime" "2" "delta_item_font" "FontBold20Outline" "delta_item_font_big" "FontBold20Outline" } "DamageAccountValue" { "ControlName" "CExLabel" "fieldName" "DamageAccountValue" "xpos" "c-250" "ypos" "c90" "zpos" "2" "wide" "90" "tall" "20" "visible" "1" "enabled" "1" "labelText" "%metal%" "textAlignment" "west" "font" "FontBold22" "fgcolor" "TargetDamage" } "DamageAccountValueShadow" { "ControlName" "CExLabel" "fieldName" "DamageAccountValueShadow" "xpos" "-2" "ypos" "-2" "zpos" "1" "wide" "90" "tall" "20" "visible" "1" "enabled" "1" "labelText" "%metal%" "textAlignment" "west" "font" "FontBold22" "fgcolor" "Black" "pin_to_sibling" "DamageAccountValue" } } ================================================ FILE: resource/ui/huddemomancharge.res ================================================ "resource/ui/huddemomancharge.res" { "ItemEffectMeterLabel" { "ControlName" "CExLabel" "fieldName" "ItemEffectMeterLabel" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "110" "tall" "2" "visible" "0" "enabled" "0" "labelText" "#TF_Charge" "textAlignment" "center" "font" "FontBold9" } "ChargeMeter" { "ControlName" "ContinuousProgressBar" "fieldName" "ChargeMeter" "font" "Default" "xpos" "0" "ypos" "8" "zpos" "2" "wide" "110" "tall" "2" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "fgcolor_override" "255 255 255 255" "fgcolor" "255 255 255 255" } } ================================================ FILE: resource/ui/huddemomanpipes.res ================================================ "resource/ui/huddemomanpipes.res" { "ChargeLabel" { "ControlName" "CExLabel" "fieldName" "ChargeLabel" "xpos" "0" "ypos" "8" "zpos" "3" "wide" "110" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "labelText" "#TF_Charge" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontBold10" "fgcolor_override" "Black" } "ChargeMeter" { "ControlName" "ContinuousProgressBar" "fieldName" "ChargeMeter" "xpos" "0" "ypos" "16" "zpos" "2" "wide" "110" "tall" "2" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "PipesPresentPanel" { "ControlName" "EditablePanel" "fieldName" "PipesPresentPanel" "xpos" "37" "ypos" "0" "zpos" "1" "wide" "110" "tall" "20" "visible" "1" "NumPipesLabel" { "ControlName" "CExLabel" "fieldName" "NumPipesLabel" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "60" "tall" "20" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%activepipes%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "FontBold22" "fgcolor_override" "TanLight" "fgcolor" "TanLight" "pin_to_sibling" "StickyIcon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "NumPipesLabelDropshadow" { "ControlName" "CExLabel" "fieldName" "NumPipesLabelDropshadow" "xpos" "-2" "ypos" "-2" "zpos" "2" "wide" "60" "tall" "20" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%activepipes%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "FontBold22" "fgcolor" "Black" "pin_to_sibling" "NumPipesLabel" } "StickyIcon" { "ControlName" "CExLabel" "fieldName" "StickyIcon" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "15" "tall" "18" "visible" "1" "enabled" "1" "labelText" "4" "textAlignment" "center" "font" "SmallIcons" "fgcolor_override" "TanLight" "fgcolor" "TanLight" } "StickyIconShadow" { "ControlName" "CExLabel" "fieldName" "StickyIconShadow" "xpos" "-2" "ypos" "-2" "zpos" "1" "wide" "15" "tall" "18" "visible" "1" "enabled" "1" "labelText" "4" "textAlignment" "center" "font" "SmallIcons" "fgcolor" "Black" "fgcolor_override" "Black" "pin_to_sibling" "StickyIcon" } "PipeIcon" { "ControlName" "CTFImagePanel" "fieldName" "PipeIcon" "xpos" "9999" } } "NoPipesPresentPanel" { "ControlName" "EditablePanel" "fieldName" "NoPipesPresentPanel" "xpos" "37" "ypos" "0" "zpos" "1" "wide" "110" "tall" "20" "visible" "1" "NumPipesLabel" { "ControlName" "CExLabel" "fieldName" "NumPipesLabel" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "60" "tall" "20" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%activepipes%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "FontBold22" "fgcolor_override" "TanLight" "fgcolor" "TanLight" "pin_to_sibling" "StickyIcon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "NumPipesLabelDropshadow" { "ControlName" "CExLabel" "fieldName" "NumPipesLabelDropshadow" "xpos" "-2" "ypos" "-2" "zpos" "2" "wide" "60" "tall" "20" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%activepipes%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "FontBold22" "fgcolor" "Black" "pin_to_sibling" "NumPipesLabel" } "StickyIcon" { "ControlName" "CExLabel" "fieldName" "StickyIcon" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "15" "tall" "18" "visible" "1" "enabled" "1" "labelText" "4" "textAlignment" "center" "font" "SmallIcons" "fgcolor_override" "TanLight" "fgcolor" "TanLight" } "StickyIconShadow" { "ControlName" "CExLabel" "fieldName" "StickyIconShadow" "xpos" "-2" "ypos" "-2" "zpos" "1" "wide" "15" "tall" "18" "visible" "1" "enabled" "1" "labelText" "4" "textAlignment" "center" "font" "SmallIcons" "fgcolor" "Black" "fgcolor_override" "Black" "pin_to_sibling" "StickyIcon" } "PipeIcon" { "ControlName" "CTFImagePanel" "fieldName" "PipeIcon" "xpos" "9999" } } } ================================================ FILE: resource/ui/hudhealthaccount.res ================================================ "resource/ui/hudhealthaccount.res" { "CHealthAccountPanel" { "fieldName" "CHealthAccountPanel" "delta_item_x" "25" "delta_item_start_y" "45" "delta_item_end_y" "45" "PositiveColor" "Overheal" "NegativeColor" "LowHealth" "delta_lifetime" "2.25" "delta_item_font" "FontBold22" } } ================================================ FILE: resource/ui/hudinspectpanel.res ================================================ "resource/ui/hudinspectpanel.res" { "itempanel" { "ControlName" "CItemModelPanel" "fieldName" "itempanel" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "190" "tall" "100" "visible" "0" "bgcolor_override" "HudBlack" "paintBackground" "1" "PaintBackgroundType" "2" "paintBorder" "0" "model_center_y" "1" "model_center_x" "1" "model_wide" "80" "model_tall" "50" "noitem_use_fullpanel" "0" "text_xpos" "10" "text_ypos" "10" "text_wide" "170" "text_center" "1" "max_text_height" "100" "padding_height" "10" "resize_to_text" "1" "text_forcesize" "2" "itemmodelpanel" { "fieldName" "itemmodelpanel" "use_item_rendertarget" "0" "useparentbg" "1" "inventory_image_type" "1" } "ItemLabel" { "ControlName" "Label" "fieldName" "ItemLabel" "font" "FontRegular10" "font_minmode" "StreamerMode" "xpos" "10" "ypos" "0" "zpos" "1" "wide" "270" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "#FreezePanel_Item" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } } ================================================ FILE: resource/ui/huditemattributetracker.res ================================================ "resource/ui/hudachievementtrackeritem.res" { "ItemAttributeTracker" { "fieldName" "ItemAttributeTracker" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "PaintBackgroundType" "0" "stats_buffer_width" "30" } "QuestsStatusContainer" { "ControlName" "EditablePanel" "fieldName" "QuestsStatusContainer" "xpos" "rs1-10" "ypos" "120" "wide" "110" "tall" "20" "proportionaltoparent" "1" "border" "NoBorder" "paintborder" "1" "Header" { "ControlName" "Label" "fieldName" "Header" "labeltext" "%header%" "xpos" "rs1" "ypos" "2" "wide" "500" "tall" "18" "zpos" "4" "textinsetx" "5" "use_proportional_insets" "1" "fgcolor_override" "255 255 255 255" "font" "AchievementTracker_Name" //"wrap" "1" "TextAlignment" "north-east" "proportionaltoparent" "1" } "CallToAction" { "ControlName" "CExLabel" "fieldName" "CallToAction" "labeltext" "%call_to_action%" "xpos" "rs1" "ypos" "11" "wide" "190" "tall" "f0" "zpos" "4" "textinsetx" "5" "use_proportional_insets" "1" "fgcolor_override" "255 255 255 255" "font" "QuestObjectiveTracker_Desc" //"wrap" "1" "TextAlignment" "north-east" "proportionaltoparent" "1" } "Image" { "ControlName" "CTFImagePanel" "fieldName" "Image" "xpos" "4" "ypos" "cs-0.5" "zpos" "0" "wide" "o1" "tall" "p0.8" "visible" "0" "enabled" "0" "image" "tf2_folder_icon" "scaleImage" "1" "proportionaltoparent" "1" } } } ================================================ FILE: resource/ui/huditemeffectmeter.res ================================================ "resource/ui/huditemeffectmeter.res" { "HudItemEffectMeter" { "fieldName" "HudItemEffectMeter" "visible" "1" "enabled" "1" "xpos" "c-55" "ypos" "c124" "wide" "110" "tall" "10" "MeterFG" "TanLight" "MeterBG" "Gray" } "ItemEffectMeterLabel" { "ControlName" "CExLabel" "fieldName" "ItemEffectMeterLabel" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "110" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "labelText" "#TF_Ball" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontBold9" } "ItemEffectMeter" { "ControlName" "ContinuousProgressBar" "fieldName" "ItemEffectMeter" "font" "Default" "xpos" "0" "ypos" "8" "zpos" "2" "wide" "110" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } } ================================================ FILE: resource/ui/huditemeffectmeter_action.res ================================================ #base "huditemeffectmeter.res" ================================================ FILE: resource/ui/huditemeffectmeter_cleaver.res ================================================ #base "huditemeffectmeter.res" "resource/ui/huditemeffectmeter_cleaver.res" { "HudItemEffectMeter" { "ypos" "c112" } } ================================================ FILE: resource/ui/huditemeffectmeter_demoman.res ================================================ "resource/ui/huditemeffectmeter_demoman.res" { "HudItemEffectMeter" { "fieldName" "HudItemEffectMeter" "visible" "1" "enabled" "1" "xpos" "c155" "ypos" "r85" "zpos" "1" "wide" "100" "tall" "20" "MeterFG" "TanLight" "MeterBG" "TanDark" } "ItemEffectMeterLabel" { "ControlName" "CExLabel" "fieldName" "ItemEffectMeterLabel" "xpos" "15" "ypos" "0" "zpos" "2" "wide" "35" "tall" "20" "autoResize" "1" "pinCorner" "2" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Ball" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "FontRegular10" } "ItemEffectMeter" { "ControlName" "ContinuousProgressBar" "fieldName" "ItemEffectMeter" "font" "Default" "xpos" "25" "ypos" "23" "zpos" "2" "wide" "55" "tall" "6" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "ItemEffectMeterCount" { "ControlName" "CExLabel" "fieldName" "ItemEffectMeterCount" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "85" "tall" "20" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%progresscount%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "FontBold18" "pin_to_sibling" "StreakIcon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ItemEffectMeterCountShadow" { "ControlName" "CExLabel" "fieldName" "ItemEffectMeterCountShadow" "xpos" "-2" "ypos" "-2" "zpos" "2" "wide" "85" "tall" "20" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%progresscount%" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "FontBold18" "fgcolor" "Black" "pin_to_sibling" "ItemEffectMeterCount" } "StreakIcon" { "ControlName" "CExLabel" "fieldName" "StreakIcon" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "15" "tall" "20" "visible" "1" "enabled" "1" "labelText" "K" "textAlignment" "west" "font" "SmallIcons" "fgcolor_override" "TanLight" } "StreakIconShadow" { "ControlName" "CExLabel" "fieldName" "StreakIconShadow" "xpos" "-2" "ypos" "-2" "zpos" "1" "wide" "15" "tall" "20" "visible" "1" "enabled" "1" "labelText" "K" "textAlignment" "west" "font" "SmallIcons" "fgcolor_override" "Black" "pin_to_sibling" "StreakIcon" } } ================================================ FILE: resource/ui/huditemeffectmeter_engineer.res ================================================ #base "huditemeffectmeter_demoman.res" ================================================ FILE: resource/ui/huditemeffectmeter_heavy.res ================================================ #base "huditemeffectmeter_cleaver.res" ================================================ FILE: resource/ui/huditemeffectmeter_kartcharge.res ================================================ #base "huditemeffectmeter.res" "resource/ui/huditemeffectmeter_scout.res" { HudItemEffectMeter { "ypos" "c120" } "ItemEffectMeterLabel" { "labelText" "#TF_KART" } } ================================================ FILE: resource/ui/huditemeffectmeter_killstreak.res ================================================ "#base" "huditemeffectmeter_demoman.res" "resource/ui/huditemeffectmeter_killstreak.res" { "HudItemEffectMeter" { "xpos" "c220" } "StreakIcon" { "labelText" "Q" } "StreakIconShadow" { "labelText" "Q" } } ================================================ FILE: resource/ui/huditemeffectmeter_organs.res ================================================ #base "huditemeffectmeter_demoman.res" ================================================ FILE: resource/ui/huditemeffectmeter_particlecannon.res ================================================ #base "huditemeffectmeter_cleaver.res" ================================================ FILE: resource/ui/huditemeffectmeter_pomson.res ================================================ #base "huditemeffectmeter_cleaver.res" "resource/ui/huditemeffectmeter_pomson.res" { "HudItemEffectMeter" { "ypos" "c107" } } ================================================ FILE: resource/ui/huditemeffectmeter_powerupbottle.res ================================================ #base "huditemeffectmeter_demoman.res" "resource/ui/huditemeffectmeter_powerupbottles.res" { "HudItemEffectMeter" { "xpos" "c150" "ypos" "r68" } "ItemEffectIcon" { "ControlName" "CTFImagePanel" "fieldName" "ItemEffectIcon" "xpos" "1" "ypos" "0" "zpos" "1" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "image" "../hud/ico_powerup_critboost_red" "scaleImage" "1" } "ItemEffectMeterLabel" { "ControlName" "CExLabel" "fieldName" "ItemEffectMeterLabel" "xpos" "9999" } "ItemEffectMeterCount" { "pin_to_sibling" "ItemEffectIcon" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "StreakIcon" { "ControlName" "CExLabel" "fieldName" "StreakIcon" "xpos" "9999" } } ================================================ FILE: resource/ui/huditemeffectmeter_pyro.res ================================================ #base "huditemeffectmeter_cleaver.res" ================================================ FILE: resource/ui/huditemeffectmeter_raygun.res ================================================ #base "huditemeffectmeter.res" ================================================ FILE: resource/ui/huditemeffectmeter_sapper.res ================================================ #base "huditemeffectmeter_sodapopper.res" ================================================ FILE: resource/ui/huditemeffectmeter_scout.res ================================================ #base "huditemeffectmeter_cleaver.res" ================================================ FILE: resource/ui/huditemeffectmeter_sniper.res ================================================ #base "huditemeffectmeter_demoman.res" ================================================ FILE: resource/ui/huditemeffectmeter_sniperfocus.res ================================================ #base "huditemeffectmeter_cleaver.res" ================================================ FILE: resource/ui/huditemeffectmeter_sodapopper.res ================================================ #base "huditemeffectmeter.res" "resource/ui/huditemeffectmeter_sodapopper.res" { "HudItemEffectMeter" { "ypos" "c136" } } ================================================ FILE: resource/ui/huditemeffectmeter_spy.res ================================================ #base "huditemeffectmeter_demoman.res" ================================================ FILE: resource/ui/huditemeffectmeter_spyknife.res ================================================ #base "huditemeffectmeter_cleaver.res" ================================================ FILE: resource/ui/hudkillstreaknotice.res ================================================ "resource/ui/hudkillstreaknotice.res" { "Background" { "ControlName" "EditablePanel" "fieldName" "Background" "xpos" "c-250" "ypos" "110" "ypos_minmode" "9999" "zpos" "0" "wide" "500" "tall" "50" "autoResize" "0" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } "SplashLabel" { "ControlName" "CExLabel" "fieldName" "SplashLabel" "xpos" "c-250" "ypos" "70" "ypos_minmode" "9999" "zpos" "2" "wide" "500" "tall" "50" "autoResize" "0" "fgcolor" "TanLight" "font_override" "FontRegular10" "labelText" "" "textAlignment" "center" } } ================================================ FILE: resource/ui/hudmannvsmachinestatus.res ================================================ "resource/ui/hudmannvsmachinestatus.res" { "WaveStatusPanel" { "ControlName" "CWaveStatusPanel" "fieldName" "WaveStatusPanel" "xpos" "c-300" "ypos" "0" "zpos" "0" "wide" "600" "tall" "67" "visible" "1" "enabled" "1" } "WaveCompleteSummaryPanel" { "ControlName" "CWaveCompleteSummaryPanel" "fieldName" "WaveCompleteSummaryPanel" "xpos" "c-100" "ypos" "120" "zpos" "0" "wide" "400" "tall" "400" "visible" "1" "enabled" "1" } "BossStatusPanel" { "ControlName" "CMvMBossStatusPanel" "fieldName" "BossStatusPanel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "200" "tall" "100" "visible" "1" "enabled" "1" "pin_to_sibling" "WaveStatusPanel" "pin_corner_to_sibling" "4" "pin_to_sibling_corner" "6" } "InWorldCurrencyPanel" { "ControlName" "CInWorldCurrencyStatus" "fieldName" "InWorldCurrencyPanel" "xpos" "c-250" "ypos" "r70" "wide" "110" "tall" "20" "visible" "1" "enabled" "1" } "WarningSwoop" { "ControlName" "CWarningSwoop" "fieldName" "WarningSwoop" "xpos" "c-12" "ypos" "0" "zpos" "10" "wide" "24" "tall" "220" "visible" "0" "enabled" "1" "image" "../sprites/obj_icons/warning_highlight" "scaleImage" "1" "time" "0.3" } "UpgradeLevelContainer" { "ControlName" "EditablePanel" "fieldName" "UpgradeLevelContainer" "xpos" "0" "ypos" "0" "wide" "640" "tall" "480" "visible" "0" "UpgradeProgressTrack" { "ControlName" "CMvMBombCarrierProgress" "fieldName" "UpgradeProgressTrack" "xpos" "c-50" "ypos" "r35" "wide" "640" "tall" "480" "visible" "1" } "UpgradeLevel1" { "ControlName" "ImagePanel" "fieldName" "UpgradeLevel1" "xpos" "c32" "ypos" "r24" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "image" "../hud/hud_mvm_bomb_upgrade_1_disabled" "scaleImage" "1" } "UpgradeLevel2" { "ControlName" "ImagePanel" "fieldName" "UpgradeLevel2" "xpos" "c32" "ypos" "r42" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "image" "../hud/hud_mvm_bomb_upgrade_2_disabled" "scaleImage" "1" } "UpgradeLevel3" { "ControlName" "ImagePanel" "fieldName" "UpgradeLevel3" "xpos" "c32" "ypos" "r60" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "image" "../hud/hud_mvm_bomb_upgrade_3_disabled" "scaleImage" "1" } "UpgradeLevelBoss" { "ControlName" "ImagePanel" "fieldName" "UpgradeLevelBoss" "xpos" "c32" "ypos" "r46" "wide" "20" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "image" "../hud/hud_mvm_bomb_upgrade_boss" "scaleImage" "1" } } "VictorySplash" { "ControlName" "CVictorySplash" "fieldName" "VictorySplash" "xpos" "0" "ypos" "0" //"zpos" "102" "wide" "f0" "tall" "480" "visible" "0" "enabled" "1" } "VictoryPanelContainer" { "ControlName" "CMvMVictoryPanelContainer" "fieldName" "VictoryPanelContainer" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "visible" "0" } "WaveLossPanel" { "ControlName" "CMvMWaveLossPanel" "fieldName" "WaveLossPanel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "visible" "0" } "ServerChangeMessage" { "ControlName" "EditablePanel" "fieldName" "ServerChangeMessage" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "visible" "0" "Background" { "ControlName" "EditablePanel" "fieldName" "Background" "xpos" "c-150" "ypos" "390" "wide" "300" "tall" "21" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "border" "DarkRedTeamBorder" "bgcolor_override" "HUDRedTeamSolid" } "ServerChangeLabel" { "ControlName" "CExLabel" "fieldName" "ServerChangeLabel" "font" "HudFontSmall" "textAlignment" "center" "labelText" "%servermessage%" "xpos" "c-150" "ypos" "390" "wide" "300" "tall" "20" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } } } ================================================ FILE: resource/ui/hudmatchstatus.res ================================================ "resource/ui/hudmatchstatus.res" { "HudMatchStatus" { "fieldName" "HudMatchStatus" "avatar_width" "63" "spacer" "5" "name_width" "57" "horiz_inset" "2" } "RoundSignModel" { "ControlName" "CModelPanel" "xpos" "9999" "visible" "0" "enabled" "1" } "CountdownLabel" { "ControlName" "CExLabel" "fieldName" "CountdownLabel" "font" "FontBold22" "xpos" "cs-0.5" "ypos" "cs-0.1" "wide" "40" "tall" "40" "zpos" "5" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "0" "labelText" "%countdown%" "textAlignment" "center" "fgcolor" "TanLight" "proportionaltoparent" "1" } "CountdownLabelShadow" { "ControlName" "CExLabel" "fieldName" "CountdownLabelShadow" "font" "FontBold22" "xpos" "cs-0.48" "ypos" "cs-0.48" "wide" "40" "tall" "40" "zpos" "4" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "0" "labelText" "%countdown%" "textAlignment" "center" "fgcolor" "Black" "proportionaltoparent" "1" } "FrontParticlePanel" { "ControlName" "CTFParticlePanel" "fieldName" "FrontParticlePanel" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "f0" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "ParticleEffects" { "0" { "particle_xpos" "c0" "particle_ypos" "c0" "particle_scale" "2" "particleName" "versus_door_slam" "start_activated" "0" "loop" "0" } } "paintbackground" "0" } "MatchDoors" { "ControlName" "CModelPanel" "fieldName" "MatchDoors" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "fov" "70" "proportionaltoparent" "1" "model" { "modelname" "models/vgui/versus_doors.mdl" "skin" "0" "angles_x" "0" "angles_y" "0" "angles_z" "0" "origin_x" "120" "origin_y" "0" "origin_z" "-77" "animation" { "name" "ref" "sequence" "ref" "default" "1" } "animation" { "name" "open" "sequence" "open" } "animation" { "name" "close" "sequence" "close" } "animation" { "name" "idle_closed" "sequence" "idle_closed" } } } "RoundCounter" { "fieldName" "RoundCounter" "xpos" "cs-0.5" "ypos" "-2" "zpos" "1" "wide" "300" "tall" "100" "visible" "1" "enabled" "1" } "BGFrame" { "ControlName" "EditablePanel" "fieldName" "BGFrame" "wide" "0" "tall" "0" } "RankUpLabel" { "ControlName" "CExLabel" "fieldName" "RankUpLabel" "font" "HudFontMediumSmallBold" "xpos" "cs-0.5" "ypos" "80" "wide" "600" "tall" "60" "zpos" "5" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "centerwrap" "1" "alpha" "0" "labelText" "%rank_possibility%" "textAlignment" "center" "proportionaltoparent" "1" "fgcolor" "TanLight" } "RankUpShadowLabel" { "ControlName" "CExLabel" "fieldName" "RankUpShadowLabel" "font" "HudFontMediumSmallBold" "xpos" "cs-0.5+2" "ypos" "80+2" "wide" "600" "tall" "60" "zpos" "5" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "centerwrap" "1" "alpha" "0" "labelText" "%rank_possibility%" "textAlignment" "center" "proportionaltoparent" "1" "fgcolor" "Black" } "ObjectiveStatusTimePanel" { "ControlName" "EditablePanel" "fieldName" "ObjectiveStatusTimePanel" "xpos" "c-40" "ypos" "0" "zpos" "2" "wide" "80" "tall" "100" "visible" "0" "enabled" "1" "delta_item_x" "25" "delta_item_start_y" "20" "delta_item_end_y" "30" "PositiveColor" "0 255 0 255" "NegativeColor" "255 0 0 255" "delta_lifetime" "1" "delta_item_font" "FontBold14" if_match { "delta_item_x" "23" "delta_item_start_y" "22" "delta_item_end_y" "32" } "TimePanelValue" { "ControlName" "CExLabel" "fieldName" "TimePanelValue" "font" "FontBold20" "fgcolor" "TanLight" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "80" "tall" "25" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "0:00" if_match { "ypos" "4" "font" "FontBold14" } } } "TeamStatus" { "ControlName" "CTFTeamStatus" "fieldName" "TeamStatus" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "75" "visible" "1" "enabled" "1" "max_size" "20" "6v6_gap" "2" "12v12_gap" "2" "team1_grow_dir" "west" "team1_base_x" "c-45" "team1_max_expand" "250" "team2_grow_dir" "east" "team2_base_x" "c45" "team2_max_expand" "250" "playerpanels_kv" { "visible" "0" "wide" "25" "tall" "50" "zpos" "1" "proportionaltoparent" "1" "color_portrait_bg_red" "HUDRedTeamSolid" "color_portrait_bg_blue" "HUDBlueTeamSolid" "color_portrait_bg_red_dead" "HUDRedTeamDark" "color_portrait_bg_blue_dead" "HUDBlueTeamDark" "color_bar_health_high" "Overheal" "color_bar_health_med" "191 183 58 255" "percentage_health_med" "0.6" "color_bar_health_low" "LowHealth" "percentage_health_low" "0.3" "color_portrait_blend_dead_red" "235 235 235 255" "color_portrait_blend_dead_blue" "235 235 235 255" "playername" { "ControlName" "CExLabel" "fieldName" "playername" "font" "DefaultVerySmall" "xpos" "5" "ypos" "24" "zpos" "5" "wide" "50" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "0" } "classimage" { "ControlName" "CTFClassImage" "fieldName" "classimage" "xpos" "cs-0.5" "ypos" "0" "zpos" "3" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "image" "../hud/class_scoutred" "scaleImage" "1" "proportionaltoparent" "1" } "classimagebg" { "ControlName" "Panel" "fieldName" "classimagebg" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "PaintBackgroundType" "0" "proportionaltoparent" "1" } "healthbar" { "ControlName" "ContinuousProgressBar" "fieldName" "healthbar" "font" "Default" "xpos" "0" "ypos" "19" "zpos" "5" "wide" "f0" "tall" "2" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "bgcolor_override" "80 80 80 255" "proportionaltoparent" "1" } "overhealbar" { "ControlName" "ContinuousProgressBar" "fieldName" "overhealbar" "font" "Default" "xpos" "0" "ypos" "19" "zpos" "6" "wide" "f0" "tall" "2" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "bgcolor_override" "0 0 0 0" "fgcolor_override" "255 255 255 160" "proportionaltoparent" "1" } "HealthIcon" { "ControlName" "EditablePanel" "fieldName" "HealthIcon" "xpos" "9999" "visible" "0" "enabled" "0" } "ReadyBG" { "ControlName" "ScalableImagePanel" "fieldName" "ReadyBG" "xpos" "9999" "visible" "0" "enabled" "0" } "ReadyImage" { "ControlName" "ImagePanel" "fieldName" "ReadyImage" "xpos" "9999" "visible" "0" "enabled" "0" } "respawntime" { "ControlName" "CExLabel" "fieldName" "respawntime" "font" "FontBold14Outline" "xpos" "cs-0.5" "ypos" "0" "zpos" "5" "wide" "f0" "tall" "19" "autoResize" "0" "pinCorner" "0" "visible" "1" "labelText" "%respawntime%" "textAlignment" "center" "proportionaltoparent" "1" } "chargeamount" { "ControlName" "CExLabel" "fieldName" "chargeamount" "xpos" "9999" "visible" "0" "enabled" "1" } "specindex" { "ControlName" "CExLabel" "fieldName" "specindex" "xpos" "9999" "visible" "0" "enabled" "1" } "DeathPanel" { "ControlName" "ImagePanel" "fieldName" "DeathPanel" "xpos" "9999" "visible" "0" "enabled" "1" } "SkullPanel" { "ControlName" "ImagePanel" "fieldName" "SkullPanel" "xpos" "9999" "visible" "0" "enabled" "1" } } } "BlueTeamPanel" { "ControlName" "EditablePanel" "fieldName" "BlueTeamPanel" "xpos" "-155" "ypos" "125" "zpos" "50" "wide" "150" "wide_minmode" "0" "tall" "260" "visible" "0" "enabled" "1" if_large { "ypos" "65" "tall" "385" } "BlueTeamBG" { "ControlName" "EditablePanel" "fieldName" "BlueTeamBG" "xpos" "6" "ypos" "19" "zpos" "2" "wide" "136" "tall" "21" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "border" "DarkBlueTeamBorder" "bgcolor_override" "HUDBlueTeamSolid" } "BlueTeamImage" { "ControlName" "ImagePanel" "fieldName" "BlueTeamImage" "xpos" "9" "ypos" "0" "zpos" "5" "wide" "56" "tall" "56" "visible" "1" "enabled" "1" "image" "../hud/team_blue" "scaleImage" "1" } "BlueTeamLabel" { "ControlName" "CExLabel" "fieldName" "BlueTeamLabel" "font" "CompMatchStartTeamNames" "labelText" "%blueteamname%" "textAlignment" "center" "xpos" "50" "ypos" "13" "zpos" "20" "wide" "95" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "BlueLeaderAvatar" { "ControlName" "CAvatarImagePanel" "fieldName" "BlueLeaderAvatar" "xpos" "8" "ypos" "10" "zpos" "5" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "BlueLeaderAvatarBG" { "ControlName" "EditablePanel" "fieldName" "BlueLeaderAvatarBG" "xpos" "6" "ypos" "8" "zpos" "4" "wide" "39" "tall" "39" "visible" "1" "PaintBackgroundType" "0" "bgcolor_override" "HUDBlueTeamDark" } "BluePlayerList" { "ControlName" "SectionedListPanel" "fieldName" "BluePlayerList" "xpos" "6" "ypos" "38" "zpos" "1" "wide" "136" "tall" "175" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "autoresize" "3" "linespacing" "25" "linegap" "0" //"show_columns" "1" if_large { "tall" "315" } } "BluePlayerListBG" { "ControlName" "EditablePanel" "fieldName" "BluePlayerListBG" "xpos" "4" "ypos" "30" "zpos" "0" "wide" "139" "tall" "215" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "border" "TFFatLineBorderClearBG" if_large { "tall" "325" } } } "RedTeamPanel" { "ControlName" "EditablePanel" "fieldName" "RedTeamPanel" "xpos" "r-5" "ypos" "125" "zpos" "50" "wide" "150" "wide_minmode" "0" "tall" "260" "visible" "1" "enabled" "1" if_large { "ypos" "65" "tall" "385" } "RedTeamBG" { "ControlName" "EditablePanel" "fieldName" "RedTeamBG" "xpos" "6" "ypos" "19" "zpos" "2" "wide" "136" "tall" "21" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "border" "DarkRedTeamBorder" "bgcolor_override" "HUDRedTeamSolid" } "RedTeamImage" { "ControlName" "ImagePanel" "fieldName" "RedTeamImage" "xpos" "84" "ypos" "-9" "zpos" "5" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "image" "../hud/team_Red" "scaleImage" "1" } "RedTeamLabel" { "ControlName" "CExLabel" "fieldName" "RedTeamLabel" "font" "CompMatchStartTeamNames" "labelText" "%redteamname%" "textAlignment" "center" "xpos" "11" "ypos" "13" "zpos" "20" "wide" "95" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "RedLeaderAvatar" { "ControlName" "CAvatarImagePanel" "fieldName" "RedLeaderAvatar" "xpos" "106" "ypos" "10" "zpos" "5" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "RedLeaderAvatarBG" { "ControlName" "EditablePanel" "fieldName" "RedLeaderAvatarBG" "xpos" "104" "ypos" "8" "zpos" "4" "wide" "39" "tall" "39" "visible" "1" "PaintBackgroundType" "0" "bgcolor_override" "HUDRedTeamDark" } "RedPlayerList" { "ControlName" "SectionedListPanel" "fieldName" "RedPlayerList" "xpos" "6" "ypos" "38" "zpos" "1" "wide" "136" "tall" "175" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "autoresize" "3" "linespacing" "25" "linegap" "0" //"show_columns" "1" if_large { "tall" "315" } } "RedPlayerListBG" { "ControlName" "EditablePanel" "fieldName" "RedPlayerListBG" "xpos" "4" "ypos" "30" "zpos" "0" "wide" "139" "tall" "215" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "border" "TFFatLineBorderClearBG" if_large { "tall" "325" } } } } ================================================ FILE: resource/ui/hudmatchsummary.res ================================================ "resource/ui/hudmatchsummary.res" { "MatchSummary" { "ControlName" "CTFMatchSummary" "fieldName" "MatchSummary" "autoResize" "0" "pinCorner" "0" "tabPosition" "0" "paintbackground" "0" "ypos" "20" "zpos" "20" "visible" "0" "AnimBluePlayerListParent" "p.47" "AnimBlueTeamScore" "p.46" "AnimBlueTeamScoreDropshadow" "p.46" "AnimBlueTeamScoreBG" "p.483" "AnimBluePlayerListBG" "p.47" "AnimRedTeamScoreBGWide" "p.483" "AnimRedTeamScoreBGXPos" "r5-p.483" "AnimRedTeamScoreWide" "p.46" "AnimRedTeamScoreXPos" "r5-p.46" "AnimRedTeamScoreDropshadowWide" "p.46" "AnimRedTeamScoreDropshadowXPos" "r4-p.46" "AnimRedPlayerListParentWide" "p.47" "AnimRedPlayerListParentXPos" "r7-p.47" "AnimRedPlayerListBGWide" "p.47" "AnimRedPlayerListBGXPos" "r9-p.47" "AnimBlueMedalsYPos" "75" "AnimRedMedalsYPos" "75" "AnimStatsLabelPanel6v6YPos" "75" "AnimBlueTeamLabel6v6YPos" "107" "AnimRedTeamLabel6v6YPos" "107" "AnimStatsLabelPanel12v12YPos" "20" "AnimBlueTeamLabel12v12YPos" "47" "AnimRedTeamLabel12v12YPos" "47" "AnimStatsContainer12v12YPos" "-10" if_large { "AnimBlueMedalsYPos" "50" "AnimRedMedalsYPos" "50" } } "RankBorder" { "ControlName" "EditablePanel" "fieldName" "RankBorder" "xpos" "cs-0.5" "ypos" "r0" "zpos" "9000" "wide" "510" "tall" "43" "visible" "0" "PaintBackgroundType" "2" "border" "MainMenuBGBorder" "proportionaltoparent" "1" if_uses_xp { "visible" "1" } } "RankPanel" { "ControlName" "CMiniPvPRankPanel" "fieldName" "RankPanel" "xpos" "cs-0.5" "ypos" "r0" "zpos" "9001" "wide" "f0" "tall" "480" "visible" "1" "proportionaltoparent" "1" "mouseinputenabled" "1" "matchgroup" "MatchGroup_Ladder_6v6" "show_name" "0" "show_sources_when_hidden" "1" "instantly_update" "0" if_uses_placement { "show_model" "0" } } "RankModelPanel" { "ControlName" "CPvPRankPanel" "fieldName" "RankModelPanel" "xpos" "cs-0.5" "ypos" "r1" "zpos" "9002" "wide" "2000" "tall" "2000" "visible" "1" "proportionaltoparent" "1" "mouseinputenabled" "1" "matchgroup" "MatchGroup_Casual_12v12" "show_progress" "0" "instantly_update" "0" if_uses_xp { "visible" "0" } } "StatsBgPanel" { "ControlName" "EditablePanel" "fieldName" "StatsBgPanel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "f0" "visible" "0" "enabled" "1" "PaintBackgroundType" "1" "bgcolor_override" "0 0 0 250" } "DrawingPanel" { "ControlName" "CDrawingPanel" "fieldName" "DrawingPanel" "xpos" "c-320" "ypos" "35" "wide" "640" "tall" "480" "zpos" "60" "visible" "0" "enabled" "1" "keyboardinputenabled" "0" "linecolor" "RedSolid" "team_colors" "1" } "MainStatsContainer" { "Controlname" "EditablePanel" "fieldnName" "MainStatsContainer" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "ParticlePanel" { "ControlName" "CTFParticlePanel" "fieldName" "ParticlePanel" "xpos" "0" "ypos" "0" "zpos" "55" "wide" "f0" "tall" "f0" "visible" "1" } "StatsLabelPanel" { "ControlName" "EditablePanel" "fieldName" "StatsLabelPanel" "xpos" "c-100" "ypos" "-20" "zpos" "70" "wide" "200" "tall" "15" "visible" "0" "enabled" "1" "autoResize" "0" "StatsAndMedals" { "ControlName" "CExLabel" "fieldName" "StatsAndMedals" "font" "MatchSummaryStatsAndMedals" "labelText" "#TF_CompSummary_StatsAndMedals" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "4" "wide" "200" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "StatsAndMedalsShadow" { "ControlName" "CExLabel" "fieldName" "StatsAndMedalsShadow" "font" "MatchSummaryStatsAndMedals" "labelText" "#TF_CompSummary_StatsAndMedals" "fgcolor" "Black" "textAlignment" "center" "xpos" "-1" "ypos" "-1" "zpos" "3" "wide" "200" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "StatsAndMedals" } } "TeamScoresPanel" { "ControlName" "EditablePanel" "fieldName" "TeamScoresPanel" "xpos" "0" "ypos" "0" "zpos" "50" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "BlueTeamPanel" { "ControlName" "EditablePanel" "fieldName" "BlueTeamPanel" "xpos" "-320" "ypos" "0" "zpos" "0" "wide" "f0" "wide_minmode" "0" "tall" "f0" "visible" "1" "enabled" "1" "BlueTeamScoreBG" { "ControlName" "EditablePanel" "fieldName" "BlueTeamScoreBG" "xpos" "5" "ypos" "99" "zpos" "2" "wide" "p.213" "tall" "36" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "border" "DarkBlueTeamBorder" "bgcolor_override" "HUDBlueTeamSolid" if_large { "ypos" "39" } } "BlueTeamScore" { "ControlName" "CExLabel" "fieldName" "BlueTeamScore" "font" "MatchSummaryTeamScores" "labelText" "%blueteamscore%" "textAlignment" "east" "xpos" "5" "ypos" "101" "zpos" "4" "wide" "p.19" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" if_large { "ypos" "41" } } "BlueTeamScoreDropshadow" { "ControlName" "CExLabel" "fieldName" "BlueTeamScoreDropshadow" "font" "MatchSummaryTeamScores" "fgcolor" "Black" "labelText" "%blueteamscore%" "textAlignment" "east" "xpos" "6" "ypos" "102" "zpos" "3" "wide" "p.19" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" if_large { "ypos" "43" } } "BlueTeamWinner" { "ControlName" "CExLabel" "fieldName" "BlueTeamWinner" "font" "MatchSummaryWinner" "labelText" "%blueteamwinner%" "textAlignment" "east" "xpos" "5" "ypos" "101" "zpos" "4" "wide" "p.19" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" if_large { "ypos" "41" } } "BlueTeamWinnerDropshadow" { "ControlName" "CExLabel" "fieldName" "BlueTeamWinnerDropshadow" "font" "MatchSummaryWinner" "fgcolor" "Black" "labelText" "%blueteamwinner%" "textAlignment" "east" "xpos" "6" "ypos" "102" "zpos" "3" "wide" "p.19" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" if_large { "ypos" "42" } } "BlueTeamImage" { "ControlName" "ImagePanel" "fieldName" "BlueTeamImage" "xpos" "14" "ypos" "89" "zpos" "5" "wide" "56" "tall" "56" "visible" "1" "enabled" "1" "image" "../hud/team_blue" "scaleImage" "1" if_large { "ypos" "29" } } "BlueTeamLabel" { "ControlName" "CExLabel" "fieldName" "BlueTeamLabel" "font" "CompMatchStartTeamNames" "labelText" "%blueteamname%" "textAlignment" "west" "xpos" "60" "ypos" "-25" "zpos" "20" "wide" "195" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "BlueLeaderAvatar" { "ControlName" "CAvatarImagePanel" "fieldName" "BlueLeaderAvatar" "xpos" "18" "ypos" "100" "zpos" "5" "wide" "34" "tall" "34" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" if_large { "ypos" "40" } } "BlueLeaderAvatarBG" { "ControlName" "EditablePanel" "fieldName" "BlueLeaderAvatarBG" "xpos" "16" "ypos" "98" "zpos" "4" "wide" "38" "tall" "38" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "TextColor" if_large { "ypos" "38" } } "BluePlayerListParent" { "ControlName" "EditablePanel" "fieldName" "BluePlayerListParent" "xpos" "12" "ypos" "137" "zpos" "1" "wide" "p.193" "tall" "215" "visible" "1" "enabled" "1" if_large { "ypos" "77" "tall" "340" } "BluePlayerList" { "ControlName" "TFSectionedListPanel" "fieldName" "BluePlayerList" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "p.465" "tall" "205" "visible" "1" "enabled" "1" "tabPosition" "0" "autoresize" "0" "linespacing" "25" "linegap" "0" //"show_columns" "1" "medal_width" "s.08" "avatar_width" "s.08" "spacer" "2" "name_width" "s.19" "class_width" "s.04" "award_width" "s.04" "stats_width" "s.08" "horiz_inset" "0" if_large { "tall" "340" "linegap" "0" } } } "BluePlayerListBG" { "ControlName" "EditablePanel" "fieldName" "BluePlayerListBG" "xpos" "9" "ypos" "117" "zpos" "0" "wide" "p.2" "tall" "225" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "border" "TFFatLineBorderClearBG" if_large { "ypos" "57" "tall" "360" } } } "RedTeamPanel" { "ControlName" "EditablePanel" "fieldName" "RedTeamPanel" "xpos" "320" "ypos" "0" "zpos" "0" "wide" "f0" "wide_minmode" "0" "tall" "f0" "visible" "1" "enabled" "1" "RedTeamScoreBG" { "ControlName" "EditablePanel" "fieldName" "RedTeamScoreBG" "xpos" "r5-p.213" "ypos" "99" "zpos" "2" "wide" "p.213" "tall" "36" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "border" "DarkRedTeamBorder" "bgcolor_override" "HUDRedTeamSolid" if_large { "ypos" "39" } } "RedTeamScore" { "ControlName" "CExLabel" "fieldName" "RedTeamScore" "font" "MatchSummaryTeamScores" "labelText" "%redteamscore%" "textAlignment" "west" "xpos" "r5-p.19" "ypos" "101" "zpos" "4" "wide" "p.19" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" if_large { "ypos" "41" } } "RedTeamScoreDropshadow" { "ControlName" "CExLabel" "fieldName" "RedTeamScoreDropshadow" "font" "MatchSummaryTeamScores" "fgcolor" "Black" "labelText" "%redteamscore%" "textAlignment" "west" "xpos" "r3-p.19" "ypos" "103" "zpos" "3" "wide" "p.19" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" if_large { "ypos" "43" } } "RedTeamWinner" { "ControlName" "CExLabel" "fieldName" "RedTeamWinner" "font" "MatchSummaryWinner" "labelText" "%redteamwinner%" "textAlignment" "west" "xpos" "r5-p.19" "ypos" "101" "zpos" "4" "wide" "p.19" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" if_large { "ypos" "41" } } "RedTeamWinnerDropshadow" { "ControlName" "CExLabel" "fieldName" "RedTeamWinnerDropshadow" "font" "MatchSummaryWinner" "fgcolor" "Black" "labelText" "%redteamwinner%" "textAlignment" "west" "xpos" "r4-p.19" "ypos" "102" "zpos" "3" "wide" "p.19" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" if_large { "ypos" "42" } } "RedTeamImage" { "ControlName" "ImagePanel" "fieldName" "RedTeamImage" "xpos" "r68" "ypos" "80" "zpos" "5" "wide" "70" "tall" "70" "visible" "1" "enabled" "1" "image" "../hud/team_red" "scaleImage" "1" if_large { "ypos" "20" } } "RedTeamLabel" { "ControlName" "CExLabel" "fieldName" "RedTeamLabel" "font" "CompMatchStartTeamNames" "labelText" "%redteamname%" "textAlignment" "east" "xpos" "r255" "ypos" "-25" "zpos" "20" "wide" "195" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "RedLeaderAvatar" { "ControlName" "CAvatarImagePanel" "fieldName" "RedLeaderAvatar" "xpos" "r52" "ypos" "100" "zpos" "5" "wide" "34" "tall" "34" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" if_large { "ypos" "40" } } "RedLeaderAvatarBG" { "ControlName" "EditablePanel" "fieldName" "RedLeaderAvatarBG" "xpos" "r54" "ypos" "98" "zpos" "4" "wide" "38" "tall" "38" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "TextColor" if_large { "ypos" "38" } } "RedPlayerListParent" { "ControlName" "EditablePanel" "fieldName" "RedPlayerListParent" "xpos" "r12-p.193" "ypos" "137" "zpos" "1" "wide" "p.193" "tall" "215" "visible" "1" "enabled" "1" if_large { "ypos" "77" "tall" "340" } "RedPlayerList" { "ControlName" "TFSectionedListPanel" "fieldName" "RedPlayerList" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "p.465" "tall" "205" "visible" "1" "enabled" "1" "tabPosition" "0" "autoresize" "0" "linespacing" "25" "linegap" "0" //"show_columns" "1" "medal_width" "s.08" "avatar_width" "s.08" "spacer" "2" "name_width" "s.19" "class_width" "s.04" "award_width" "s.04" "stats_width" "s.08" "horiz_inset" "0" if_large { "tall" "340" "linegap" "0" } } } "RedPlayerListBG" { "ControlName" "EditablePanel" "fieldName" "RedPlayerListBG" "xpos" "r9-p.2" "ypos" "117" "zpos" "0" "wide" "p.2" "tall" "225" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "border" "TFFatLineBorderClearBG" if_large { "ypos" "57" "tall" "360" } } } "BlueMedals" { "ControlName" "EditablePanel" "fieldName" "BlueMedals" "xpos" "c-250" "ypos" "-20" "zpos" "50" "wide" "150" "tall" "15" "visible" "1" "enabled" "1" if_large { "visible" "0" } "BlueGoldMedal" { "ControlName" "ImagePanel" "fieldName" "BlueGoldMedal" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "15" "tall" "15" "visible" "1" "enabled" "1" "image" "competitive/competitive_coin_gold" "scaleImage" "1" } "BlueGoldMedalValue" { "ControlName" "CExLabel" "fieldName" "BlueGoldMedalValue" "font" "MatchSummaryStatsAndMedals" "labelText" "%blueteammedals_gold%" "textAlignment" "center" "xpos" "15" "ypos" "0" "zpos" "6" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "BlueSilverMedal" { "ControlName" "ImagePanel" "fieldName" "BlueSilverMedal" "xpos" "55" "ypos" "0" "zpos" "5" "wide" "15" "tall" "15" "visible" "1" "enabled" "1" "image" "competitive/competitive_coin_silver" "scaleImage" "1" } "BlueSilverMedalValue" { "ControlName" "CExLabel" "fieldName" "BlueSilverMedalValue" "font" "MatchSummaryStatsAndMedals" "labelText" "%blueteammedals_silver%" "textAlignment" "center" "xpos" "70" "ypos" "0" "zpos" "6" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "BlueBronzeMedal" { "ControlName" "ImagePanel" "fieldName" "BlueBronzeMedal" "xpos" "110" "ypos" "0" "zpos" "5" "wide" "15" "tall" "15" "visible" "1" "enabled" "1" "image" "competitive/competitive_coin_bronze" "scaleImage" "1" } "BlueBronzeMedalValue" { "ControlName" "CExLabel" "fieldName" "BlueBronzeMedalValue" "font" "MatchSummaryStatsAndMedals" "labelText" "%blueteammedals_bronze%" "textAlignment" "center" "xpos" "125" "ypos" "0" "zpos" "6" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } } "RedMedals" { "ControlName" "EditablePanel" "fieldName" "RedMedals" "xpos" "c100" "ypos" "-20" "zpos" "50" "wide" "150" "tall" "15" "visible" "1" "enabled" "1" if_large { "visible" "0" } "RedGoldMedal" { "ControlName" "ImagePanel" "fieldName" "RedGoldMedal" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "15" "tall" "15" "visible" "1" "enabled" "1" "image" "competitive/competitive_coin_gold" "scaleImage" "1" } "RedGoldMedalValue" { "ControlName" "CExLabel" "fieldName" "RedGoldMedalValue" "font" "MatchSummaryStatsAndMedals" "labelText" "%redteammedals_gold%" "textAlignment" "center" "xpos" "15" "ypos" "0" "zpos" "6" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "RedSilverMedal" { "ControlName" "ImagePanel" "fieldName" "RedSilverMedal" "xpos" "55" "ypos" "0" "zpos" "5" "wide" "15" "tall" "15" "visible" "1" "enabled" "1" "image" "competitive/competitive_coin_silver" "scaleImage" "1" } "RedSilverMedalValue" { "ControlName" "CExLabel" "fieldName" "RedSilverMedalValue" "font" "MatchSummaryStatsAndMedals" "labelText" "%redteammedals_silver%" "textAlignment" "center" "xpos" "70" "ypos" "0" "zpos" "6" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "RedBronzeMedal" { "ControlName" "ImagePanel" "fieldName" "RedBronzeMedal" "xpos" "110" "ypos" "0" "zpos" "5" "wide" "15" "tall" "15" "visible" "1" "enabled" "1" "image" "competitive/competitive_coin_bronze" "scaleImage" "1" } "RedBronzeMedalValue" { "ControlName" "CExLabel" "fieldName" "RedBronzeMedalValue" "font" "MatchSummaryStatsAndMedals" "labelText" "%redteammedals_bronze%" "textAlignment" "center" "xpos" "125" "ypos" "0" "zpos" "6" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } } } } } ================================================ FILE: resource/ui/hudmediccharge.res ================================================ "resource/ui/hudmediccharge.res" { "Background" { "ControlName" "CTFImagePanel" "fieldName" "Background" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "130" "tall" "65" "visible" "0" "enabled" "0" "image" "../hud/medic_charge_blue_bg" "scaleImage" "1" "teambg_2" "../hud/medic_charge_red_bg" "teambg_3" "../hud/medic_charge_blue_bg" } "UberBG" { "ControlName" "EditablePanel" "fieldName" "UberBG" "xpos" "0" "ypos" "5" "zpos" "1" "wide" "0" "tall" "43" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "pin_to_sibling" "ChargeMeter" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "ChargeLabel" { "ControlName" "CExLabel" "fieldName" "ChargeLabel" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "110" "tall" "43" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_UberchargeMinHUD" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontBold22" "fgcolor" "TanLight" "pin_to_sibling" "UberBG" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ChargeLabelShadow" { "ControlName" "CExLabel" "fieldName" "ChargeLabelShadow" "xpos" "-2" "ypos" "-2" "zpos" "1" "wide" "110" "tall" "43" "autoResize" "1" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_UberchargeMinHUD" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontBold22" "fgcolor" "Black" "pin_to_sibling" "ChargeLabel" } "IndividualChargesLabel" { "ControlName" "CExImageButton" "fieldName" "IndividualChargesLabel" "xpos" "c-55" "ypos" "r112" "zpos" "2" "wide" "110" "tall" "30" "autoResize" "1" "pinCorner" "1" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "north" "font" "FontBold20" "proportionaltoparent" "1" "defaultbgcolor_override" "Black" } "ChargeMeterLabel" { "ControlName" "CExLabel" "fieldName" "ChargeMeterLabel" "xpos" "c-60" "ypos" "44" "zpos" "3" "wide" "120" "tall" "15" "autoResize" "1" "pinCorner" "2" "visible" "0" "enabled" "0" "tabPosition" "0" "labelText" "#TF_Charge" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontRegular10" "fgcolor" "150 150 150 255" } "ChargeMeter" { "ControlName" "ContinuousProgressBar" "fieldName" "ChargeMeter" "font" "Default" "xpos" "c-55" "ypos" "r98" "zpos" "1" "wide" "110" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "fgcolor_override" "UberCharge" "bgcolor_override" "ProgressBackground" "paintborder" "0" } "ChargeMeter1" { "ControlName" "ContinuousProgressBar" "fieldName" "ChargeMeter1" "font" "Default" "xpos" "-2" "ypos" "-2" "zpos" "4" "wide" "25" "tall" "26" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "proportionaltoparent" "1" "pin_to_sibling" "IndividualChargesLabel" } "ChargeMeter2" { "ControlName" "ContinuousProgressBar" "fieldName" "ChargeMeter2" "font" "Default" "xpos" "2" "ypos" "0" "zpos" "4" "wide" "25" "tall" "26" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "proportionaltoparent" "1" "pin_to_sibling" "ChargeMeter1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ChargeMeter3" { "ControlName" "ContinuousProgressBar" "fieldName" "ChargeMeter3" "font" "Default" "xpos" "2" "ypos" "0" "zpos" "4" "wide" "25" "tall" "26" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "proportionaltoparent" "1" "pin_to_sibling" "ChargeMeter2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ChargeMeter4" { "ControlName" "ContinuousProgressBar" "fieldName" "ChargeMeter4" "font" "Default" "xpos" "2" "ypos" "0" "zpos" "4" "wide" "25" "tall" "26" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "proportionaltoparent" "1" "pin_to_sibling" "ChargeMeter3" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "HealthClusterIcon" { "ControlName" "ImagePanel" "fieldName" "HealthClusterIcon" "xpos" "0" "ypos" "0" "wide" "25" "tall" "25" "visible" "0" "enabled" "0" "image" "../hud/ico_health_cluster" "scaleImage" "1" } "ResistIconAnchor" { "ControlName" "EditablePanel" "fieldName" "ResistIconAnchor" "xpos" "70" "ypos" "0" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "pin_to_sibling" "IndividualChargesLabel" "pin_corner_to_sibling" "PIN_CENTER_TOP" "pin_to_sibling_corner" "PIN_CENTER_TOP" } "ResistIcon" { "ControlName" "ImagePanel" "fieldName" "ResistIcon" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "../HUD/defense_buff_bullet_blue" "scaleImage" "1" "pin_to_sibling" "ResistIconAnchor" } "UberCounterBG" { "ControlName" "Panel" "fieldName" "UberCounterBG" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "110" "tall" "0" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "pin_to_sibling" "ChargeMeter" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "UberCounter" { "ControlName" "Panel" "fieldName" "UberCounter" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "0" "tall" "2" "visible" "1" "enabled" "1" "pin_to_sibling" "UberCounterBG" } } ================================================ FILE: resource/ui/hudmenutauntselection.res ================================================ "resource/ui/hudmenutauntselection.res" { "MainBackground" { "ControlName" "CIconPanel" "fieldName" "MainBackground" "xpos" "0" "ypos" "15" "zpos" "0" "wide" "470" "tall" "170" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "hud_menu_bg" "iconColor" "TanLight" } "Divider" { "ControlName" "ImagePanel" "fieldName" "Divider" "xpos" "9999" } "IcoReelIcon" { "ControlName" "CIconPanel" "fieldName" "IcoReelIcon" "xpos" "9999" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "xpos" "0" "ypos" "1" "zpos" "3" "wide" "470" "tall" "22" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Taunt_Title" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "TitleLabelShadow" { "ControlName" "CExLabel" "fieldName" "TitleLabelShadow" "font" "FontBold22" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "3" "wide" "470" "tall" "22" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Hud_Menu_Taunt_Title" "textAlignment" "center" "dulltext" "1" "brighttext" "0" "pin_to_sibling" "TitleLabel" } "WeaponTauntLabel" { "ControlName" "CExLabel" "fieldName" "WeaponTauntLabel" "xpos" "9999" } "CancelLabel" { "ControlName" "CExLabel" "fieldName" "CancelLabel" "font" "HudFontSmallest" "xpos" "10" "ypos" "5" "zpos" "2" "wide" "200" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "labelText" "#Hud_Menu_Taunt_Cancel" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "TauntModelPanel1" { "ControlName" "CItemModelPanel" "fieldName" "TauntModelPanel1" "xpos" "14" "ypos" "27" "zpos" "57" "wide" "50" "tall" "40" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "1" "model_ypos" "5" "model_tall" "38" "text_ypos" "46" "text_center" "1" "text_forcesize" "3" "model_only" "1" "attriblabel" { "font" "ItemFontAttribLarge" "visible" "0" } "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "NumberBg1" { "ControlName" "CIconPanel" "fieldName" "NumberBg1" "xpos" "32" "ypos" "100" "zpos" "4" "wide" "15" "tall" "15" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel1" { "ControlName" "CExLabel" "fieldName" "NumberLabel1" "font" "FontBold14" "fgcolor" "TanLight" "xpos" "31" "ypos" "68" "zpos" "5" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "1" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "TauntModelPanel2" { "ControlName" "CItemModelPanel" "fieldName" "TauntModelPanel2" "xpos" "70" "ypos" "27" "zpos" "57" "wide" "50" "tall" "40" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "1" "model_ypos" "5" "model_tall" "38" "text_ypos" "46" "text_center" "1" "text_forcesize" "3" "model_only" "1" "attriblabel" { "font" "ItemFontAttribLarge" "visible" "0" } "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "NumberBg2" { "ControlName" "CIconPanel" "fieldName" "NumberBg2" "xpos" "87" "ypos" "100" "zpos" "4" "wide" "15" "tall" "15" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel2" { "ControlName" "CExLabel" "fieldName" "NumberLabel2" "font" "FontBold14" "fgcolor" "TanLight" "xpos" "87" "ypos" "68" "zpos" "5" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "2" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "TauntModelPanel3" { "ControlName" "CItemModelPanel" "fieldName" "TauntModelPanel3" "xpos" "126" "ypos" "27" "zpos" "57" "wide" "50" "tall" "40" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "1" "model_ypos" "5" "model_tall" "38" "text_ypos" "46" "text_center" "1" "text_forcesize" "3" "model_only" "1" "attriblabel" { "font" "ItemFontAttribLarge" "visible" "0" } "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "NumberBg3" { "ControlName" "CIconPanel" "fieldName" "NumberBg3" "xpos" "142" "ypos" "100" "zpos" "4" "wide" "15" "tall" "15" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel3" { "ControlName" "CExLabel" "fieldName" "NumberLabel3" "font" "FontBold14" "fgcolor" "TanLight" "xpos" "142" "ypos" "68" "zpos" "5" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "3" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "TauntModelPanel4" { "ControlName" "CItemModelPanel" "fieldName" "TauntModelPanel4" "xpos" "182" "ypos" "27" "zpos" "57" "wide" "50" "tall" "40" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "1" "model_ypos" "5" "model_tall" "38" "text_ypos" "46" "text_center" "1" "text_forcesize" "3" "model_only" "1" "attriblabel" { "font" "ItemFontAttribLarge" "visible" "0" } "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "NumberBg4" { "ControlName" "CIconPanel" "fieldName" "NumberBg4" "xpos" "197" "ypos" "100" "zpos" "4" "wide" "15" "tall" "15" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel4" { "ControlName" "CExLabel" "fieldName" "NumberLabel4" "font" "FontBold14" "fgcolor" "TanLight" "xpos" "199" "ypos" "68" "zpos" "5" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "4" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "TauntModelPanel5" { "ControlName" "CItemModelPanel" "fieldName" "TauntModelPanel5" "xpos" "238" "ypos" "27" "zpos" "57" "wide" "50" "tall" "40" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "1" "model_ypos" "5" "model_tall" "38" "text_ypos" "46" "text_center" "1" "text_forcesize" "3" "model_only" "1" "attriblabel" { "font" "ItemFontAttribLarge" "visible" "0" } "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "NumberBg5" { "ControlName" "CIconPanel" "fieldName" "NumberBg5" "xpos" "252" "ypos" "100" "zpos" "4" "wide" "15" "tall" "15" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel5" { "ControlName" "CExLabel" "fieldName" "NumberLabel5" "font" "FontBold14" "fgcolor" "TanLight" "xpos" "255" "ypos" "68" "zpos" "5" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "5" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "TauntModelPanel6" { "ControlName" "CItemModelPanel" "fieldName" "TauntModelPanel6" "xpos" "294" "ypos" "27" "zpos" "57" "wide" "50" "tall" "40" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "1" "model_ypos" "5" "model_tall" "38" "text_ypos" "46" "text_center" "1" "text_forcesize" "3" "model_only" "1" "attriblabel" { "font" "ItemFontAttribLarge" "visible" "0" } "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "NumberBg6" { "ControlName" "CIconPanel" "fieldName" "NumberBg6" "xpos" "307" "ypos" "100" "zpos" "4" "wide" "15" "tall" "15" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel6" { "ControlName" "CExLabel" "fieldName" "NumberLabel6" "font" "FontBold14" "fgcolor" "TanLight" "xpos" "311" "ypos" "68" "zpos" "5" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "6" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "TauntModelPanel7" { "ControlName" "CItemModelPanel" "fieldName" "TauntModelPanel7" "xpos" "350" "ypos" "27" "zpos" "57" "wide" "50" "tall" "40" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "1" "model_ypos" "5" "model_tall" "38" "text_ypos" "46" "text_center" "1" "text_forcesize" "3" "model_only" "1" "attriblabel" { "font" "ItemFontAttribLarge" "visible" "0" } "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "NumberBg7" { "ControlName" "CIconPanel" "fieldName" "NumberBg7" "xpos" "362" "ypos" "100" "zpos" "4" "wide" "15" "tall" "15" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel7" { "ControlName" "CExLabel" "fieldName" "NumberLabel7" "font" "FontBold14" "xpos" "366" "ypos" "68" "zpos" "5" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "7" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "TauntModelPanel8" { "ControlName" "CItemModelPanel" "fieldName" "TauntModelPanel8" "xpos" "406" "ypos" "27" "zpos" "57" "wide" "50" "tall" "40" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "0" "paintborder" "1" "model_ypos" "5" "model_tall" "38" "text_ypos" "46" "text_center" "1" "text_forcesize" "3" "model_only" "1" "attriblabel" { "font" "ItemFontAttribLarge" "visible" "0" } "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "NumberBg8" { "ControlName" "CIconPanel" "fieldName" "NumberBg8" "xpos" "417" "ypos" "100" "zpos" "4" "wide" "15" "tall" "15" "visible" "0" "enabled" "0" "scaleImage" "1" "icon" "ico_key_blank" "iconColor" "TanLight" } "NumberLabel8" { "ControlName" "CExLabel" "fieldName" "NumberLabel8" "font" "FontBold14" "fgcolor" "TanLight" "xpos" "424" "ypos" "68" "zpos" "5" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "8" "textAlignment" "center" "dulltext" "1" "brighttext" "0" } "MenuBG" { "ControlName" "EditablePanel" "fieldName" "MenuBG" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "470" "tall" "88" "visible" "1" "enabled" "1" "bgcolor_override" "BGBlack" "PaintBackgroundType" "2" } } ================================================ FILE: resource/ui/hudmenutauntselection_sc.res ================================================ #base "hudmenutauntselection.res" ================================================ FILE: resource/ui/hudminigame_base.res ================================================ "resource/ui/hudminigame_base.res" { "LeftSideBG" { "ControlName" "ImagePanel" "fieldName" "LeftSideBG" "xpos" "cs-0.5" "ypos" "r47" "zpos" "0" "wide" "196" "tall" "60" "visible" "1" "enabled" "1" "image" "../hud/objectives_flagpanel_bg_left" "scaleImage" "1" } "RightSideBG" { "ControlName" "ImagePanel" "fieldName" "RightSideBG" "xpos" "cs-0.5" "ypos" "r47" "zpos" "0" "wide" "196" "tall" "60" "visible" "1" "enabled" "1" "image" "../hud/objectives_flagpanel_bg_right" "scaleImage" "1" } "OutlineBG" { "ControlName" "ImagePanel" "fieldName" "OutlineBG" "xpos" "9999" } "BlueScore" { "ControlName" "CExLabel" "fieldName" "BlueScore" "xpos" "c-90" "ypos" "r31" "zpos" "8" "wide" "75" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "%bluescore%" "font" "FontBold20" "fgcolor" "TanLight" } "BlueScoreShadow" { "ControlName" "CExLabel" "fieldName" "BlueScoreShadow" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "75" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "%bluescore%" "font" "FontBold20" "fgcolor" "Black" "pin_to_sibling" "BlueScore" } "RedScore" { "ControlName" "CExLabel" "fieldName" "RedScore" "xpos" "c15" "ypos" "r31" "zpos" "8" "wide" "75" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%redscore%" "font" "FontBold20" "fgcolor" "TanLight" } "RedScoreShadow" { "ControlName" "CExLabel" "fieldName" "RedScoreShadow" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "75" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%redscore%" "font" "FontBold20" "fgcolor" "Black" "pin_to_sibling" "RedScore" } "PlayingTo" { "ControlName" "CExLabel" "fieldName" "PlayingTo" "xpos" "cs-0.5" "ypos" "r12" "zpos" "1" "wide" "80" "tall" "10" "visible" "1" "enabled" "1" "labelText" "#TF_PlayingTo" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontRegular11" "fgcolor" "TanLight" } "PlayingToBG" { "ControlName" "EditablePanel" "fieldName" "PlayingToBG" "xpos" "cs-0.5" "ypos" "r15" "zpos" "0" "wide" "80" "tall" "25" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } "GameImage" { "ControlName" "ImagePanel" "fieldName" "GameImage" "xpos" "cs-0.5" "ypos" "r55" "zpos" "5" "wide" "40" "tall" "40" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" } } ================================================ FILE: resource/ui/hudobjectivearenahybrid.res ================================================ #base "hudobjectiveplayerdestruction.res" "resource/ui/hudobjectivearenahybrid.res" { "blueteam" { "ControlName" "EditablePanel" "fieldName" "blueteam" "xpos" "c-56" "ypos" "21" "zpos" "0" "wide" "60" "tall" "30" "visible" "1" "background" { "ControlName" "CTFImagePanel" "fieldName" "background" "xpos" "5" "ypos" "7" "zpos" "0" "wide" "50" "tall" "23" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/color_panel_blu" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional "draw_corner_height" "5" } "count" { "ControlName" "CExLabel" "fieldName" "count" "xpos" "23" "ypos" "7" "zpos" "2" "wide" "30" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "HudFontMedium" //"labelText" "%blue_alive%" //"labelText" "%blue_escrow%" "labelText" " " "textAlignment" "center" "fgcolor" "TanLight" } "countshadow" { "ControlName" "CExLabel" "fieldName" "countshadow" "xpos" "24" "ypos" "8" "zpos" "1" "wide" "30" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "HudFontMedium" //"labelText" "%blue_alive%" //"labelText" "%blue_escrow%" "labelText" " " "textAlignment" "center" "fgcolor" "Black" } "playerimage" { "ControlName" "ImagePanel" "fieldName" "playerimage" "xpos" "12" "ypos" "10" "zpos" "3" "wide" "8" "tall" "16" "visible" "1" "enabled" "1" "image" "capture_icon_white" "scaleImage" "1" } } "redteam" { "ControlName" "EditablePanel" "fieldName" "redteam" "xpos" "c-4" "ypos" "21" "zpos" "0" "wide" "60" "tall" "30" "visible" "1" "background" { "ControlName" "CTFImagePanel" "fieldName" "background" "xpos" "5" "ypos" "7" "zpos" "0" "wide" "50" "tall" "23" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/color_panel_red" "src_corner_height" "23" // pixels inside the image "src_corner_width" "23" "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional "draw_corner_height" "5" } "count" { "ControlName" "CExLabel" "fieldName" "count" "xpos" "23" "ypos" "7" "zpos" "2" "wide" "30" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "HudFontMedium" //"labelText" "%red_alive%" //"labelText" "%red_escrow%" "labelText" " " "textAlignment" "center" "fgcolor" "TanLight" } "countshadow" { "ControlName" "CExLabel" "fieldName" "countshadow" "xpos" "24" "ypos" "8" "zpos" "1" "wide" "30" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "HudFontMedium" //"labelText" "%red_alive%" //"labelText" "%red_escrow%" "labelText" " " "textAlignment" "center" "fgcolor" "Black" } "playerimage" { "ControlName" "ImagePanel" "fieldName" "playerimage" "xpos" "12" "ypos" "10" "zpos" "3" "wide" "8" "tall" "16" "visible" "1" "enabled" "1" "image" "capture_icon_white" "scaleImage" "1" } } } ================================================ FILE: resource/ui/hudobjectiveflagpanel.res ================================================ "resource/ui/hudobjectiveflagpanel.res" { "ObjectiveStatusFlagPanel" { "ControlName" "EditablePanel" "fieldName" "ObjectiveStatusFlagPanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "if_hybrid" { "zpos" "-1" } } "LeftSideBG" { "ControlName" "ImagePanel" "fieldName" "LeftSideBG" "xpos" "c-40" "ypos" "r24" "zpos" "2" "wide" "40" "tall" "22" "visible" "1" "enabled" "1" "fillcolor" "HUDBlueTeamSolid" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } "if_no_flags" { "visible" "0" } } "LeftSideBG2" { "ControlName" "ImagePanel" "fieldName" "LeftSideBG2" "xpos" "c-40" "ypos" "r21" "zpos" "1" "wide" "40" "tall" "21" "visible" "1" "enabled" "1" "fillcolor" "HUDBlueTeamDark" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } "if_no_flags" { "visible" "0" } } "RightSideBG" { "ControlName" "ImagePanel" "fieldName" "RightSideBG" "xpos" "c0" "ypos" "r24" "zpos" "2" "wide" "40" "tall" "22" "visible" "1" "enabled" "1" "fillcolor" "HUDRedTeamSolid" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } "if_no_flags" { "visible" "0" } } "RightSideBG2" { "ControlName" "ImagePanel" "fieldName" "RightSideBG2" "xpos" "c0" "ypos" "r21" "zpos" "1" "wide" "40" "tall" "23" "visible" "1" "enabled" "1" "fillcolor" "HUDRedTeamDark" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } "if_no_flags" { "visible" "0" } } "OutlineBG" { "ControlName" "ImagePanel" "fieldName" "OutlineBG" "xpos" "9999" } "BlueScore" { "ControlName" "CExLabel" "fieldName" "BlueScore" "xpos" "c-80" "ypos" "r30" "zpos" "8" "wide" "75" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%bluescore%" "font" "FontBold22" "fgcolor" "TanLight" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } "if_no_flags" { "visible" "0" } } "BlueScoreShadow" { "ControlName" "CExLabel" "fieldName" "BlueScoreShadow" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "75" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%bluescore%" "font" "FontBold22" "fgcolor" "Black" "pin_to_sibling" "BlueScore" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } "if_no_flags" { "visible" "0" } } "RedScore" { "ControlName" "CExLabel" "fieldName" "RedScore" "xpos" "c5" "ypos" "r30" "zpos" "8" "wide" "75" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "%redscore%" "font" "FontBold22" "fgcolor" "TanLight" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } "if_no_flags" { "visible" "0" } } "RedScoreShadow" { "ControlName" "CExLabel" "fieldName" "RedScoreShadow" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "75" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "%redscore%" "font" "FontBold22" "fgcolor" "Black" "pin_to_sibling" "RedScore" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } "if_no_flags" { "visible" "0" } } "OutlineImage" { "ControlName" "CTFImagePanel" "fieldName" "OutlineImage" "xpos" "c-50" "ypos" "r127" "zpos" "9" "wide" "100" "tall" "50" "visible" "1" "enabled" "1" "image" "../hud/objectives_flagpanel_carried_outline" "scaleImage" "1" } "CarriedImage" { "ControlName" "ImagePanel" "fieldName" "CarriedImage" "xpos" "cs-0.5" "ypos" "r72" "zpos" "10" "wide" "32" "tall" "32" "visible" "0" "enabled" "1" "image" "../hud/objectives_flagpanel_carried_red" "scaleImage" "1" "if_specialdelivery" { "ypos" "r82" } } "PlayingTo" { "ControlName" "CExLabel" "fieldName" "PlayingTo" "xpos" "c-40" "ypos" "r38" "zpos" "1" "wide" "80" "tall" "14" "visible" "1" "enabled" "1" "labelText" "#TF_PlayingTo" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontRegular12" "fgcolor" "TanLight" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } "if_no_flags" { "visible" "0" } } "PlayingToBG" { "ControlName" "EditablePanel" "fieldName" "PlayingToBG" "xpos" "c-40" "ypos" "r38" "zpos" "0" "wide" "80" "tall" "40" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } "if_no_flags" { "visible" "0" } } "BlueFlag" { "ControlName" "CTFFlagStatus" "fieldName" "BlueFlag" "xpos" "c-141" "ypos" "r67" "zpos" "5" "wide" "160" "tall" "90" "visible" "1" "enabled" "1" "if_hybrid" { "visible" "0" "ypos" "r100" } "if_hybrid_single" { "xpos" "c-80" } "if_hybrid_double" { "xpos" "c-115" } "if_specialdelivery" { "ypos" "r70" } "if_no_flags" { "visible" "0" } } "RedFlag" { "ControlName" "CTFFlagStatus" "fieldName" "RedFlag" "xpos" "c-20" "ypos" "r67" "zpos" "5" "wide" "160" "tall" "90" "visible" "1" "enabled" "1" "if_hybrid" { "visible" "0" "ypos" "r100" } "if_hybrid_single" { "xpos" "c-80" } "if_hybrid_double" { "xpos" "c-45" } "if_specialdelivery" { "ypos" "r70" } "if_no_flags" { "visible" "0" } } "CaptureFlag" { "ControlName" "CTFArrowPanel" "fieldName" "CaptureFlag" "xpos" "c-30" "ypos" "r92" "zpos" "5" "wide" "60" "tall" "60" "visible" "0" "enabled" "1" "if_hybrid" { "ypos" "r100" } "if_specialdelivery" { "ypos" "r100" } } "PoisonIcon" { "ControlName" "ImagePanel" "fieldName" "PoisonIcon" "xpos" "cs-1.6" "ypos" "9999" "zpos" "6" "wide" "35" "tall" "o1" "visible" "0" "enabled" "1" "image" "marked_for_death" "scaleImage" "1" } "PoisonTimeLabel" { "ControlName" "CExLabel" "fieldName" "PoisonTimeLabel" "xpos" "cs-0.5" "ypos" "r60" "zpos" "6" "wide" "40" "tall" "20" "visible" "0" "enabled" "1" "textAlignment" "center" "labelText" "%redscore%" "font" "FontRegular12" "fgcolor" "TanLight" } "SpecCarriedImage" { "ControlName" "ImagePanel" "fieldName" "SpecCarriedImage" "xpos" "cs-0.5" "ypos" "r72" "zpos" "10" "wide" "32" "tall" "32" "visible" "0" "enabled" "1" "image" "../hud/objectives_flagpanel_carried_red" "scaleImage" "1" "if_specialdelivery" { "ypos" "r82" } } } ================================================ FILE: resource/ui/hudobjectivekothtimepanel.res ================================================ "resource/ui/hudobjectivekothtimepanel.res" { "HudKothTimeStatus" { if_match { "zpos" "5" } } "BlueTimer" { "ControlName" "CTFHudTimeStatus" "fieldName" "BlueTimer" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "40" "tall" "50" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "delta_item_x" "10" "delta_item_start_y" "12" "delta_item_end_y" "50" "PositiveColor" "0 255 0 255" "NegativeColor" "255 0 0 255" "delta_lifetime" "2" "delta_item_font" "FontRegular14" "TimePanelValue" { "ControlName" "CExLabel" "fieldName" "TimePanelValue" "font" "FontBold16" "fgcolor" "HUDBlueTeamSolid" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "40" "tall" "25" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "0:00" "proportionaltoparent" "1" if_match { "font" "FontBold14" "tall" "32" } } } "RedTimer" { "ControlName" "CTFHudTimeStatus" "fieldName" "RedTimer" "xpos" "40" "ypos" "0" "zpos" "2" "wide" "40" "tall" "50" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "delta_item_x" "50" "delta_item_start_y" "12" "delta_item_end_y" "50" "PositiveColor" "0 255 0 255" "NegativeColor" "255 0 0 255" "delta_lifetime" "2" "delta_item_font" "FontRegular14" "TimePanelValue" { "ControlName" "CExLabel" "fieldName" "TimePanelValue" "font" "FontBold16" "fgcolor" "HUDRedTeamSolid" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "40" "tall" "25" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "0:00" "proportionaltoparent" "1" if_match { "font" "FontBold14" "tall" "32" } } } "InactiveTimerBG" { "ControlName" "EditablePanel" "fieldName" "InactiveTimerBG" "xpos" "0" "ypos" "22" "zpos" "0" "wide" "80" "tall" "3" "visible" "1" "enabled" "1" "bgcolor_override" "TanLight" "PaintBackgroundType" "0" if_match { "visible" "0" } } "ActiveTimerBG" { "ControlName" "EditablePanel" "fieldName" "ActiveTimerBG" "xpos" "0" "ypos" "22" "zpos" "5" "wide" "40" "tall" "3" "visible" "0" "enabled" "1" "bgcolor_override" "TanLight" "PaintBackgroundType" "0" } } ================================================ FILE: resource/ui/hudobjectiveplayerdestruction.res ================================================ "resource/ui/hudobjectiveplayerdestruction.res" { "ObjectiveStatusRobotDestruction" { "ControlName" "EditablePanel" "fieldName" "ObjectiveStatusRobotDestruction" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "left_steal_edge_offset" "97" "right_steal_edge_offset" "97" "robot_x_offset" "78" "robot_y_offset" "47" "robot_x_step" "23" "robot_y_step" "0" "color_blue" "84 111 127 255" "color_red" "171 59 59 255" "if_hybrid" { "zpos" "-1" } "robot_kv" { "ControlName" "CTFHudRobotDestruction_RobotIndicator" "xpos" "0" "ypos" "0" "wide" "20" "tall" "20" "visible" "1" "bgcolor_override" "Transparent" "PaintBackgroundType" "0" "paintborder" "0" "AutoResize" "0" "skip_autoresize" "1" } } "PlayingTo" { "ControlName" "CExLabel" "fieldName" "PlayingTo" "xpos" "cs-0.5" "ypos" "r37" "zpos" "1" "wide" "90" "tall" "12" "visible" "1" "enabled" "1" "labelText" "#TF_PlayingTo" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontRegular12" "fgcolor" "TanLight" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } } "PlayingToBG" { "ControlName" "EditablePanel" "fieldName" "PlayingToBG" "xpos" "c-40" "ypos" "r38" "zpos" "0" "wide" "80" "tall" "17" "visible" "0" "enabled" "0" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } } "CarriedContainer" { "ControlName" "EditablePanel" "fieldName" "CarriedContainer" "xpos" "c115" "ypos" "c15" "zpos" "1" "wide" "150" "tall" "100" "visible" "0" "enabled" "1" "bgcolor_override" "Transparent" "CarriedImage" { "ControlName" "ImagePanel" "fieldName" "CarriedImage" "xpos" "38" "ypos" "73" "zpos" "4" "wide" "18" "tall" "18" "visible" "1" "enabled" "1" "image" "../hud/hud_obj_status_ammo_64" "scaleImage" "1" "proportionalToParent" "1" } "CarriedProgressBar" { "fieldName" "CarriedProgressBar" "ControlName" "ImagePanel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "f0" "scaleimage" "0" "visible" "0" "proportionalToParent" "1" } "FlagValue" { "ControlName" "CExLabel" "fieldName" "FlagValue" "xpos" "56" "ypos" "75" "zpos" "4" "wide" "35" "tall" "15" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%flagvalue%" "font" "FontBold22" "fgcolor" "TanLight" "proportionalToParent" "1" } "FlagValueShadow" { "ControlName" "CExLabel" "fieldName" "FlagValueShadow" "xpos" "58" "ypos" "77" "zpos" "3" "wide" "35" "tall" "15" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%flagvalue%" "font" "FontBold22" "fgcolor" "Black" "proportionalToParent" "1" } "TeamLeaderImage" { "ControlName" "CTFImagePanel" "fieldName" "TeamLeaderImage" "xpos" "94" "ypos" "73" "zpos" "12" "wide" "18" "tall" "18" "visible" "0" "enabled" "1" "image" "importtool_goldstar" "scaleImage" "1" } } "ScoreContainer" { "fieldName" "ScoreContainer" "ControlName" "EditablePanel" "xpos" "c-200" "ypos" "r115" "zpos" "2" "wide" "400" "tall" "120" "scaleimage" "0" "visible" "1" "enabled" "1" "ProgressBarContainer" { "fieldName" "ProgressBarContainer" "ControlName" "EditablePanel" "xpos" "c-90" "ypos" "r45" "zpos" "1" "wide" "180" "tall" "40" "visible" "1" "enabled" "1" "proportionalToParent" "1" "ScoreOutline" { "fieldName" "ScoreOutline" "ControlName" "ImagePanel" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "f0" "tall" "f0" "scaleimage" "1" "visible" "1" "enabled" "1" "Image" "../hud/objectives_corepanel_bg" "proportionalToParent" "1" } "FlagImageBlue" { "ControlName" "ImagePanel" "fieldName" "FlagImageBlue" "xpos" "30" "ypos" "5" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "image" "../hud/hud_obj_status_ammo_64" "scaleImage" "1" "proportionalToParent" "1" } "EscrowBlue" { "ControlName" "CExLabel" "fieldName" "EscrowBlue" "xpos" "10" "ypos" "4" "zpos" "4" "wide" "25" "tall" "12" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "%blue_escrow%" "font" "FontBold12" "fgcolor" "TanLight" "proportionalToParent" "1" } "EscrowBlueShadow" { "ControlName" "CExLabel" "fieldName" "EscrowBlueShadow" "xpos" "-1" "ypos" "-1" "zpos" "4" "wide" "25" "tall" "12" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "%blue_escrow%" "font" "FontBold12" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "EscrowBlue" } "FlagImageRed" { "ControlName" "ImagePanel" "fieldName" "FlagImageRed" "xpos" "140" "ypos" "5" "zpos" "5" "wide" "10" "tall" "10" "visible" "1" "enabled" "1" "image" "../hud/hud_obj_status_ammo_64" "scaleImage" "1" "proportionalToParent" "1" } "EscrowRed" { "ControlName" "CExLabel" "fieldName" "EscrowRed" "xpos" "140" "ypos" "4" "zpos" "4" "wide" "25" "tall" "12" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%red_escrow%" "font" "FontBold12" "fgcolor" "TanLight" "proportionalToParent" "1" } "EscrowRedShadow" { "ControlName" "CExLabel" "fieldName" "EscrowRedShadow" "xpos" "-1" "ypos" "-1" "zpos" "4" "wide" "25" "tall" "12" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%red_escrow%" "font" "FontBold12" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "EscrowRed" } "BlueVictoryContainer" { "fieldName" "BlueVictoryContainer" "ControlName" "EditablePanel" "xpos" "9" "ypos" "10" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "VictoryLabel" { "ControlName" "CExLabel" "fieldName" "VictoryLabel" "xpos" "0" "ypos" "0" "zpos" "8" "wide" "68" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "#TF_RD_BlueFinale" "font" "HudFontSmallBold" "fgcolor" "TanLight" "proportionalToParent" "1" } "VictoryLabelShadow" { "ControlName" "CExLabel" "fieldName" "VictoryLabelShadow" "xpos" "-1" "ypos" "-1" "zpos" "7" "wide" "68" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "#TF_RD_BlueFinale" "font" "HudFontSmallBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabel" } "VictoryLabelTime" { "ControlName" "CExLabel" "fieldName" "VictoryLabelTime" "xpos" "0" "ypos" "0" "zpos" "8" "wide" "13" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%victorytime%" "font" "HudFontSmallBold" "fgcolor" "TanLight" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabel" "pin_corner_to_sibling" "7" "pin_to_sibling_corner" "5" } "VictoryLabelTimeShadow" { "ControlName" "CExLabel" "fieldName" "VictoryLabelTimeShadow" "xpos" "-1" "ypos" "-1" "zpos" "7" "wide" "13" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%victorytime%" "font" "HudFontSmallBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabelTime" } } "BlueProgressBarFill" { "fieldName" "BlueProgressBarFill" "ControlName" "ImagePanel" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "90" "tall" "f0" "scaleimage" "0" "visible" "1" "positionImage" "0" "drawcolor" "84 111 127 255" "Image" "../hud/objectives_corepanel_meter_solid" "left_offset" "10" "right_offset" "0" "standard_color" "84 111 127 255" "bright_color" "110 159 189 255" "left_to_right" "0" "blink_threshold" "1.0" "blink_rate" "10" "proportionalToParent" "1" } "BlueProgressBarEscrow" { "fieldName" "BlueProgressBarEscrow" "ControlName" "ImagePanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "90" "tall" "f0" "scaleimage" "0" "visible" "1" "positionImage" "0" "drawcolor" "141 160 171 255" "Image" "../hud/objectives_corepanel_meter" "left_offset" "10" "right_offset" "0" "standard_color" "127 143 152 255" "bright_color" "177 193 202 255" "left_to_right" "0" "blink_threshold" "1" "blink_rate" "20" "proportionalToParent" "1" } "RedVictoryContainer" { "fieldName" "RedVictoryContainer" "ControlName" "EditablePanel" "xpos" "91" "ypos" "10" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "VictoryLabel" { "ControlName" "CExLabel" "fieldName" "VictoryLabel" "xpos" "0" "ypos" "0" "zpos" "8" "wide" "68" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "#TF_RD_RedFinale" "font" "HudFontSmallBold" "fgcolor" "TanLight" "proportionalToParent" "1" } "VictoryLabelShadow" { "ControlName" "CExLabel" "fieldName" "VictoryLabelShadow" "xpos" "-1" "ypos" "-1" "zpos" "7" "wide" "68" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "#TF_RD_RedFinale" "font" "HudFontSmallBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabel" } "VictoryLabelTime" { "ControlName" "CExLabel" "fieldName" "VictoryLabelTime" "xpos" "0" "ypos" "0" "zpos" "8" "wide" "13" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%victorytime%" "font" "HudFontSmallBold" "fgcolor" "TanLight" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabel" "pin_corner_to_sibling" "7" "pin_to_sibling_corner" "5" } "VictoryLabelTimeShadow" { "ControlName" "CExLabel" "fieldName" "VictoryLabelTimeShadow" "xpos" "-1" "ypos" "-1" "zpos" "7" "wide" "13" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%victorytime%" "font" "HudFontSmallBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabelTime" } } "RedProgressBarFill" { "fieldName" "RedProgressBarFill" "ControlName" "ImagePanel" "xpos" "90" "ypos" "0" "zpos" "2" "wide" "90" "tall" "f0" "scaleimage" "0" "positionImage" "0" "visible" "1" "proportionalToParent" "1" "drawcolor" "171 59 59 255" "Image" "../hud/objectives_corepanel_meter_solid_right" "left_offset" "0" "right_offset" "9" "standard_color" "171 59 59 255" "bright_color" "222 65 65 255" "left_to_right" "1" "blink_threshold" "1.0" "blink_rate" "10" } "RedProgressBarEscrow" { "fieldName" "RedProgressBarEscrow" "ControlName" "ImagePanel" "xpos" "90" "ypos" "0" "zpos" "1" "wide" "90" "tall" "f0" "scaleimage" "0" "positionImage" "0" "visible" "1" "drawcolor" "212 151 151 255" "Image" "../hud/objectives_corepanel_meter_right" "left_offset" "0" "right_offset" "9" "standard_color" "212 151 151 255" "bright_color" "250 201 201 255" "left_to_right" "1" "blink_threshold" "1" "blink_rate" "20" "proportionalToParent" "1" } } "BlueScoreValueContainer" { "ControlName" "EditablePanel" "fieldName" "BlueScoreValueContainer" "xpos" "45" "ypos" "r48" "zpos" "10" "wide" "60" "tall" "60" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "proportionalToParent" "1" "Score" { "ControlName" "CExLabel" "fieldName" "Score" "xpos" "c-27" "ypos" "c-20" "zpos" "8" "wide" "55" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%score%" "font" "FontBold22" "fgcolor" "TanLight" "proportionalToParent" "1" } "ScoreShadow" { "ControlName" "CExLabel" "fieldName" "ScoreShadow" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "55" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%score%" "font" "FontBold22" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "Score" } } "RedScoreValueContainer" { "ControlName" "EditablePanel" "fieldName" "RedScoreValueContainer" "xpos" "r105" "ypos" "r48" "zpos" "10" "wide" "60" "tall" "60" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "proportionalToParent" "1" "Score" { "ControlName" "CExLabel" "fieldName" "Score" "xpos" "c-27" "ypos" "c-20" "zpos" "8" "wide" "55" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "%score%" "font" "FontBold22" "fgcolor" "TanLight" "proportionalToParent" "1" } "ScoreShadow" { "ControlName" "CExLabel" "fieldName" "ScoreShadow" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "55" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "%score%" "font" "FontBold22" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "Score" } } "BlueStolenContainer" { "ControlName" "EditablePanel" "fieldName" "BlueStolenContainer" "xpos" "r45" "ypos" "r77" "zpos" "1" "wide" "30" "tall" "40" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "proportionalToParent" "1" "IntelImage" { "ControlName" "ImagePanel" "fieldName" "IntelImage" "xpos" "5" "ypos" "19" "zpos" "10" "wide" "21" "tall" "21" "visible" "0" "enabled" "1" "image" "../HUD/obj_thief_red" "scaleImage" "1" "proportionalToParent" "1" } "DroppedIntelContainer" { "ControlName" "EditablePanel" "fieldName" "DroppedIntelContainer" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "paintbackground" "0" "proportionalToParent" "1" "DroppedIntelImage" { "ControlName" "ImagePanel" "fieldName" "DroppedIntelImage" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "image" "../HUD/obj_rd_thief_dropped_blue" "scaleImage" "1" "proportionalToParent" "1" } } "IntelValue" { "ControlName" "CExLabel" "fieldName" "IntelValue" "xpos" "0" "ypos" "0" "zpos" "12" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%intelvalue%" "font" "HudFontSmallishBold" "fgcolor" "TanLight" "bgcolor_override" "Transparent" "proportionalToParent" "1" } "IntelValueShadow" { "ControlName" "CExLabel" "fieldName" "IntelValueShadow" "xpos" "-1" "ypos" "-1" "zpos" "11" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%intelvalue%" "font" "HudFontSmallishBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "IntelValue" } } "RedStolenContainer" { "ControlName" "EditablePanel" "fieldName" "RedStolenContainer" "xpos" "r45" "ypos" "r77" "zpos" "1" "wide" "30" "tall" "40" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "proportionalToParent" "1" "IntelImage" { "ControlName" "ImagePanel" "fieldName" "IntelImage" "xpos" "5" "ypos" "19" "zpos" "10" "wide" "21" "tall" "21" "visible" "0" "enabled" "1" "image" "../HUD/obj_thief_blue" "scaleImage" "1" "proportionalToParent" "1" } "DroppedIntelContainer" { "ControlName" "EditablePanel" "fieldName" "DroppedIntelContainer" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "paintbackground" "0" "proportionalToParent" "1" "DroppedIntelImage" { "ControlName" "ImagePanel" "fieldName" "DroppedIntelImage" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "image" "../HUD/obj_rd_thief_dropped_red" "scaleImage" "1" "proportionalToParent" "1" } } "IntelValue" { "ControlName" "CExLabel" "fieldName" "IntelValue" "xpos" "0" "ypos" "0" "zpos" "12" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%intelvalue%" "font" "HudFontSmallishBold" "fgcolor" "TanLight" "bgcolor_override" "Transparent" "proportionalToParent" "1" } "IntelValueShadow" { "ControlName" "CExLabel" "fieldName" "IntelValueShadow" "xpos" "-1" "ypos" "-1" "zpos" "11" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%intelvalue%" "font" "HudFontSmallishBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "IntelValue" } } } "CountdownContainer" { "ControlName" "EditablePanel" "fieldName" "CountdownContainer" "xpos" "c-150" "ypos" "r85" "zpos" "1" "wide" "190" "tall" "50" "visible" "0" "enabled" "1" "Background" { "ControlName" "CTFImagePanel" "fieldName" "Background" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "70" "tall" "30" "visible" "0" "enabled" "1" "image" "../hud/ammo_blue_bg" "scaleImage" "1" "teambg_2" "../hud/ammo_red_bg" "teambg_3" "../hud/ammo_blue_bg" "proportionalToParent" "1" } "BackgroundColor" { "ControlName" "EditablePanel" "fieldName" "BackgroundColor" "xpos" "115" "ypos" "15" "zpos" "1" "wide" "70" "tall" "30" "visible" "1" "enabled" "1" "bgcolor_override" "31 129 75 210" "PaintBackgroundType" "2" } "CountdownImage" { "ControlName" "ImagePanel" "fieldName" "CountdownImage" "xpos" "120" "ypos" "18" "zpos" "2" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "image" "../hud/arrow_big_down" "scaleImage" "1" "proportionalToParent" "1" } "CountdownLabelTime" { "ControlName" "CExLabel" "fieldName" "CountdownLabelTime" "xpos" "150" "ypos" "15" "zpos" "8" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%countdowntime%" "font" "FontBold20" "fgcolor" "TanLight" "proportionalToParent" "1" } "CountdownLabelTimeTimeShadow" { "ControlName" "CExLabel" "fieldName" "CountdownLabelTimeTimeShadow" "xpos" "-2" "ypos" "-2" "zpos" "8" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%countdowntime%" "font" "FontBold20" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "CountdownLabelTime" } } } ================================================ FILE: resource/ui/hudobjectiverobotdestruction.res ================================================ "resource/ui/hudobjectiveflagpanel.res" { "ObjectiveStatusRobotDestruction" { "ControlName" "EditablePanel" "fieldName" "ObjectiveStatusRobotDestruction" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "robot_x_offset" "78" "robot_y_offset" "47" "robot_x_step" "23" "robot_y_step" "0" "color_blue" "84 111 127 255" "color_red" "171 59 59 255" "left_steal_edge_offset" "97" "right_steal_edge_offset" "97" "if_hybrid" { "zpos" "-1" } "robot_kv" { "ControlName" "CTFHudRobotDestruction_RobotIndicator" "xpos" "0" "ypos" "0" "wide" "20" "tall" "20" "visible" "1" "bgcolor_override" "Transparent" "PaintBackgroundType" "0" "paintborder" "0" "AutoResize" "0" "skip_autoresize" "1" } } "PlayingTo" { "ControlName" "CExLabel" "fieldName" "PlayingTo" "xpos" "cs-0.5" "ypos" "r37" "zpos" "1" "wide" "90" "tall" "12" "visible" "1" "enabled" "1" "labelText" "#TF_PlayingTo" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontRegular12" "fgcolor" "TanLight" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } } "PlayingToBG" { "ControlName" "EditablePanel" "fieldName" "PlayingToBG" "xpos" "c-40" "ypos" "r38" "zpos" "0" "wide" "80" "tall" "17" "visible" "0" "enabled" "0" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "if_hybrid" { "visible" "0" } "if_mvm" { "visible" "0" } "if_specialdelivery" { "visible" "0" } } "CarriedContainer" { "ControlName" "EditablePanel" "fieldName" "CarriedContainer" "xpos" "cs-0.5" "ypos" "21" "zpos" "1" "wide" "150" "tall" "80" "visible" "0" "enabled" "1" "bgcolor_override" "Transparent" "CarriedImage" { "ControlName" "ImagePanel" "fieldName" "CarriedImage" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "image" "../hud/obj_rd_powersupply_outline" "scaleImage" "1" "proportionalToParent" "1" } "CarriedProgressBar" { "fieldName" "CarriedProgressBar" "ControlName" "ImagePanel" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "f0" "tall" "f0" "scaleimage" "0" "visible" "1" "proportionalToParent" "1" "positionImage" "0" "drawcolor" "84 111 127 255" "Image" "../HUD/obj_rd_powersupply_meter" "left_offset" "30" "right_offset" "30" "standard_color" "84 111 127 255" "bright_color" "110 159 189 255" "left_to_right" "1" } "FlagValue" { "ControlName" "CExLabel" "fieldName" "FlagValue" "xpos" "c-50" "ypos" "23" "zpos" "11" "wide" "100" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%flagvalue%" "font" "FontBold22" "fgcolor" "TanLight" "proportionalToParent" "1" } "FlagValueShadow" { "ControlName" "CExLabel" "fieldName" "FlagValueShadow" "xpos" "-2" "ypos" "-2" "zpos" "11" "wide" "100" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%flagvalue%" "font" "FontBold22" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "FlagValue" } } "ScoreContainer" { "fieldName" "ScoreContainer" "ControlName" "EditablePanel" "xpos" "c-200" "ypos" "r115" "zpos" "2" "wide" "400" "tall" "120" "scaleimage" "0" "visible" "1" "enabled" "1" "ProgressBarContainer" { "fieldName" "ProgressBarContainer" "ControlName" "EditablePanel" "xpos" "c-90" "ypos" "r45" "zpos" "1" "wide" "180" "tall" "40" "visible" "1" "enabled" "1" "proportionalToParent" "1" "ScoreOutline" { "fieldName" "ScoreOutline" "ControlName" "ImagePanel" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "f0" "tall" "f0" "scaleimage" "1" "visible" "1" "enabled" "1" "Image" "../hud/objectives_corepanel_bg" "proportionalToParent" "1" } "BlueVictoryContainer" { "fieldName" "BlueVictoryContainer" "ControlName" "EditablePanel" "xpos" "9" "ypos" "10" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "VictoryLabel" { "ControlName" "CExLabel" "fieldName" "VictoryLabel" "xpos" "0" "ypos" "0" "zpos" "8" "wide" "68" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "#TF_RD_BlueFinale" "font" "HudFontSmallBold" "fgcolor" "TanLight" "proportionalToParent" "1" } "VictoryLabelShadow" { "ControlName" "CExLabel" "fieldName" "VictoryLabelShadow" "xpos" "-1" "ypos" "-1" "zpos" "7" "wide" "68" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "#TF_RD_BlueFinale" "font" "HudFontSmallBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabel" } "VictoryLabelTime" { "ControlName" "CExLabel" "fieldName" "VictoryLabelTime" "xpos" "0" "ypos" "0" "zpos" "8" "wide" "13" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%victorytime%" "font" "HudFontSmallBold" "fgcolor" "TanLight" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabel" "pin_corner_to_sibling" "7" "pin_to_sibling_corner" "5" } "VictoryLabelTimeShadow" { "ControlName" "CExLabel" "fieldName" "VictoryLabelTimeShadow" "xpos" "-1" "ypos" "-1" "zpos" "7" "wide" "13" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%victorytime%" "font" "HudFontSmallBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabelTime" } } "BlueProgressBarFill" { "fieldName" "BlueProgressBarFill" "ControlName" "ImagePanel" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "90" "tall" "f0" "scaleimage" "0" "visible" "1" "positionImage" "0" "drawcolor" "84 111 127 255" "Image" "../hud/objectives_corepanel_meter_solid" "left_offset" "10" "right_offset" "0" "standard_color" "84 111 127 255" "bright_color" "110 159 189 255" "left_to_right" "0" "blink_threshold" "1.0" "blink_rate" "10" "proportionalToParent" "1" } "BlueProgressBarEscrow" { "fieldName" "BlueProgressBarEscrow" "ControlName" "ImagePanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "90" "tall" "f0" "scaleimage" "0" "visible" "1" "positionImage" "0" "drawcolor" "141 160 171 255" "Image" "../hud/objectives_corepanel_meter" "left_offset" "10" "right_offset" "0" "standard_color" "127 143 152 255" "bright_color" "177 193 202 255" "left_to_right" "0" "blink_threshold" "1" "blink_rate" "20" "proportionalToParent" "1" } "RedVictoryContainer" { "fieldName" "RedVictoryContainer" "ControlName" "EditablePanel" "xpos" "91" "ypos" "10" "zpos" "5" "wide" "f0" "tall" "f0" "visible" "0" "enabled" "1" "proportionalToParent" "1" "VictoryLabel" { "ControlName" "CExLabel" "fieldName" "VictoryLabel" "xpos" "0" "ypos" "0" "zpos" "8" "wide" "68" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "#TF_RD_RedFinale" "font" "HudFontSmallBold" "fgcolor" "TanLight" "proportionalToParent" "1" } "VictoryLabelShadow" { "ControlName" "CExLabel" "fieldName" "VictoryLabelShadow" "xpos" "-1" "ypos" "-1" "zpos" "7" "wide" "68" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "#TF_RD_RedFinale" "font" "HudFontSmallBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabel" } "VictoryLabelTime" { "ControlName" "CExLabel" "fieldName" "VictoryLabelTime" "xpos" "0" "ypos" "0" "zpos" "8" "wide" "13" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%victorytime%" "font" "HudFontSmallBold" "fgcolor" "TanLight" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabel" "pin_corner_to_sibling" "7" "pin_to_sibling_corner" "5" } "VictoryLabelTimeShadow" { "ControlName" "CExLabel" "fieldName" "VictoryLabelTimeShadow" "xpos" "-1" "ypos" "-1" "zpos" "7" "wide" "13" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%victorytime%" "font" "HudFontSmallBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "VictoryLabelTime" } } "RedProgressBarFill" { "fieldName" "RedProgressBarFill" "ControlName" "ImagePanel" "xpos" "90" "ypos" "0" "zpos" "2" "wide" "90" "tall" "f0" "scaleimage" "0" "positionImage" "0" "visible" "1" "proportionalToParent" "1" "drawcolor" "171 59 59 255" "Image" "../hud/objectives_corepanel_meter_solid_right" "left_offset" "0" "right_offset" "9" "standard_color" "171 59 59 255" "bright_color" "222 65 65 255" "left_to_right" "1" "blink_threshold" "1.0" "blink_rate" "10" } "RedProgressBarEscrow" { "fieldName" "RedProgressBarEscrow" "ControlName" "ImagePanel" "xpos" "90" "ypos" "0" "zpos" "1" "wide" "90" "tall" "f0" "scaleimage" "0" "positionImage" "0" "visible" "1" "drawcolor" "212 151 151 255" "Image" "../hud/objectives_corepanel_meter_right" "left_offset" "0" "right_offset" "9" "standard_color" "212 151 151 255" "bright_color" "250 201 201 255" "left_to_right" "1" "blink_threshold" "1" "blink_rate" "20" "proportionalToParent" "1" } } "BlueScoreValueContainer" { "ControlName" "EditablePanel" "fieldName" "BlueScoreValueContainer" "xpos" "45" "ypos" "r48" "zpos" "10" "wide" "60" "tall" "60" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "proportionalToParent" "1" "Score" { "ControlName" "CExLabel" "fieldName" "Score" "xpos" "c-27" "ypos" "c-20" "zpos" "8" "wide" "55" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%score%" "font" "FontBold22" "fgcolor" "TanLight" "proportionalToParent" "1" } "ScoreShadow" { "ControlName" "CExLabel" "fieldName" "ScoreShadow" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "55" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%score%" "font" "FontBold22" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "Score" } } "RedScoreValueContainer" { "ControlName" "EditablePanel" "fieldName" "RedScoreValueContainer" "xpos" "r105" "ypos" "r48" "zpos" "10" "wide" "60" "tall" "60" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "proportionalToParent" "1" "Score" { "ControlName" "CExLabel" "fieldName" "Score" "xpos" "c-27" "ypos" "c-20" "zpos" "8" "wide" "55" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "%score%" "font" "FontBold22" "fgcolor" "TanLight" "proportionalToParent" "1" } "ScoreShadow" { "ControlName" "CExLabel" "fieldName" "ScoreShadow" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "55" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "west" "labelText" "%score%" "font" "FontBold22" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "Score" } } "BlueStolenContainer" { "ControlName" "EditablePanel" "fieldName" "BlueStolenContainer" "xpos" "r45" "ypos" "r81" "zpos" "1" "wide" "30" "tall" "40" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "proportionalToParent" "1" "IntelImage" { "ControlName" "ImagePanel" "fieldName" "IntelImage" "xpos" "5" "ypos" "19" "zpos" "10" "wide" "21" "tall" "21" "visible" "0" "enabled" "1" "image" "../HUD/obj_thief_red" "scaleImage" "1" "proportionalToParent" "1" } "DroppedIntelContainer" { "ControlName" "EditablePanel" "fieldName" "DroppedIntelContainer" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "paintbackground" "0" "proportionalToParent" "1" "DroppedIntelImage" { "ControlName" "ImagePanel" "fieldName" "DroppedIntelImage" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "image" "../HUD/obj_rd_thief_dropped_blue" "scaleImage" "1" "proportionalToParent" "1" } } "IntelValue" { "ControlName" "CExLabel" "fieldName" "IntelValue" "xpos" "0" "ypos" "0" "zpos" "12" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%intelvalue%" "font" "HudFontSmallishBold" "fgcolor" "TanLight" "bgcolor_override" "Transparent" "proportionalToParent" "1" } "IntelValueShadow" { "ControlName" "CExLabel" "fieldName" "IntelValueShadow" "xpos" "-1" "ypos" "-1" "zpos" "11" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%intelvalue%" "font" "HudFontSmallishBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "IntelValue" } } "RedStolenContainer" { "ControlName" "EditablePanel" "fieldName" "RedStolenContainer" "xpos" "r45" "ypos" "r81" "zpos" "1" "wide" "30" "tall" "40" "visible" "1" "enabled" "1" "bgcolor_override" "Transparent" "proportionalToParent" "1" "IntelImage" { "ControlName" "ImagePanel" "fieldName" "IntelImage" "xpos" "5" "ypos" "19" "zpos" "10" "wide" "21" "tall" "21" "visible" "0" "enabled" "1" "image" "../HUD/obj_thief_blue" "scaleImage" "1" "proportionalToParent" "1" } "DroppedIntelContainer" { "ControlName" "EditablePanel" "fieldName" "DroppedIntelContainer" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "paintbackground" "0" "proportionalToParent" "1" "DroppedIntelImage" { "ControlName" "ImagePanel" "fieldName" "DroppedIntelImage" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "image" "../HUD/obj_rd_thief_dropped_red" "scaleImage" "1" "proportionalToParent" "1" } } "IntelValue" { "ControlName" "CExLabel" "fieldName" "IntelValue" "xpos" "0" "ypos" "0" "zpos" "12" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%intelvalue%" "font" "HudFontSmallishBold" "fgcolor" "TanLight" "bgcolor_override" "Transparent" "proportionalToParent" "1" } "IntelValueShadow" { "ControlName" "CExLabel" "fieldName" "IntelValueShadow" "xpos" "-1" "ypos" "-1" "zpos" "11" "wide" "f0" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%intelvalue%" "font" "HudFontSmallishBold" "fgcolor" "Black" "proportionalToParent" "1" "pin_to_sibling" "IntelValue" } } } } ================================================ FILE: resource/ui/hudobjectivetimepanel.res ================================================ "resource/ui/hudobjectivetimepanel.res" { "TimePanelBG" { "ControlName" "EditablePanel" "fieldName" "TimePanelBG" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "80" "tall" "25" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "0" if_match { "xpos" "9999" } } "TimePanelProgressBar" { "ControlName" "CTFProgressBar" "fieldName" "TimePanelProgressBar" "xpos" "9999" } "WaitingForPlayersLabel" { "ControlName" "CExLabel" "fieldName" "WaitingForPlayersLabel" "xpos" "0" "ypos" "25" "zpos" "15" "wide" "80" "tall" "15" "visible" "0" "enabled" "1" "labelText" "#game_WaitingForPlayers" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontRegular10" } "WaitingForPlayersBG" { "ControlName" "CTFImagePanel" "fieldName" "WaitingForPlayersBG" "xpos" "9999" } "OvertimeLabel" { "ControlName" "CExLabel" "fieldName" "OvertimeLabel" "xpos" "0" "ypos" "25" "zpos" "5" "wide" "p1" "tall" "15" "visible" "0" "enabled" "1" "labelText" "#game_Overtime" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontRegular10" "proportionaltoparent" "1" } "OvertimeBG" { "ControlName" "CTFImagePanel" "fieldName" "OvertimeBG" "xpos" "9999" } "SuddenDeathLabel" { "ControlName" "CExLabel" "fieldName" "SuddenDeathLabel" "xpos" "9999" } "SuddenDeathBG" { "ControlName" "CTFImagePanel" "fieldName" "SuddenDeathBG" "xpos" "9999" } "SetupLabel" { "ControlName" "CExLabel" "fieldName" "SetupLabel" "xpos" "0" "ypos" "25" "zpos" "15" "wide" "80" "tall" "15" "visible" "1" "enabled" "1" "labelText" "#game_Setup" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontRegular10" } "SetupBG" { "ControlName" "CTFImagePanel" "fieldName" "SetupBG" "xpos" "9999" } "ServerTimeLimitLabel" { "ControlName" "CExLabel" "fieldName" "ServerTimeLimitLabel" "xpos" "0" "ypos" "25" "zpos" "15" "wide" "80" "tall" "15" "visible" "1" "enabled" "1" "labelText" "%servertimeleft%" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontRegular10" } "ServerTimeLimitLabelBG" { "ControlName" "CTFImagePanel" "fieldName" "ServerTimeLimitLabelBG" "xpos" "9999" } } ================================================ FILE: resource/ui/hudpasstimeballstatus.res ================================================ "resource/ui/hudpasstimeballstatus.res" { "HudPasstimeBallStatus" { "ControlName" "EditablePanel" "fieldName" "HudPasstimeBallStatus" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" } "EventTitleLabel" { "ControlName" "CExLabel" "fieldName" "EventTitleLabel" "dropshadow" "1" "font" "HudFontBiggerBold" "xpos" "0" "ypos" "c-98" "zpos" "3" "wide" "f" "tall" "25" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "A TEAM STOLE THE BALL" "fgcolor_override" "TanLight" } "EventBonusLabel" { "ControlName" "CExLabel" "fieldName" "EventBonusLabel" "font" "HudFontMediumSmallBold" "dropshadow" "1" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "f" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "" "fgcolor_override" "255 235 35 200" "pin_to_sibling" "EventTitleLabel" "pin_corner_to_sibling" "6" "pin_to_sibling_corner" "4" } "EventDetailLabel" { "ControlName" "CExLabel" "fieldName" "EventDetailLabel" "font" "FontRegular14" "dropshadow" "1" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "f" "tall" "24" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "A TEAM STOLE THE BALL" "fgcolor_override" "TanLight" "pin_to_sibling" "EventTitleLabel" "pin_corner_to_sibling" "4" "pin_to_sibling_corner" "6" } "ProgressLevelBar" { "ControlName" "ImagePanel" "fieldName" "ProgressLevelBar" "xpos" "c-190" "ypos" "r88" "zpos" "0" "wide" "380" "tall" "48" "visible" "1" "enabled" "1" "labelText" "" "image" "../passtime/hud/passtime_ballcontrol_bar" "scaleImage" "1" } "BlueProgressEnd" { "ControlName" "Panel" "fieldName" "BlueProgressEnd" "xpos" "c-152" "ypos" "r64" "visible" "0" } "RedProgressEnd" { "ControlName" "Panel" "fieldName" "RedProgressEnd" "xpos" "c152" "ypos" "r64" "visible" "0" } "GoalBlue0" { "ControlName" "ImagePanel" "fieldName" "GoalBlue0" "xpos" "c-162" "ypos" "r72" "zpos" "1" "wide" "17" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../passtime/hud/passtime_goal_blue_icon" "scaleImage" "1" } "GoalBlue1" { "ControlName" "ImagePanel" "fieldName" "GoalBlue1" "xpos" "c-132" "ypos" "r72" "zpos" "1" "wide" "17" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../passtime/hud/passtime_goal_blue_icon" "scaleImage" "1" } "GoalBlue2" { "ControlName" "ImagePanel" "fieldName" "GoalBlue2" "xpos" "c-102" "ypos" "r72" "zpos" "1" "wide" "17" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../passtime/hud/passtime_goal_blue_icon" "scaleImage" "1" } "GoalRed0" { "ControlName" "ImagePanel" "fieldName" "GoalRed0" "xpos" "c146" "ypos" "r72" "zpos" "1" "wide" "17" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../passtime/hud/passtime_goal_red_icon" "scaleImage" "1" } "GoalRed1" { "ControlName" "ImagePanel" "fieldName" "GoalRed1" "xpos" "c116" "ypos" "r72" "zpos" "1" "wide" "17" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../passtime/hud/passtime_goal_red_icon" "scaleImage" "1" } "GoalRed2" { "ControlName" "ImagePanel" "fieldName" "GoalRed2" "xpos" "c86" "ypos" "r72" "zpos" "1" "wide" "17" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../passtime/hud/passtime_goal_red_icon" "scaleImage" "1" } "ProgressBallIcon" { "ControlName" "ImagePanel" "fieldName" "ProgressBallIcon" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "42" "tall" "42" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../passtime/hud/passtime_ball" "scaleImage" "1" } "ProgressSelfPlayerIcon" { "ControlName" "ImagePanel" "fieldName" "ProgressSelfPlayerIcon" "xpos" "0" "ypos" "0" "zpos" "-100" "wide" "42" "tall" "42" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "scaleImage" "1" } "ProgressBallCarrierName" { "ControlName" "Label" "fieldName" "ProgressBallCarrierName" "visible" "1" "enabled" "1" "zpos" "-400" "xpos" "0" "ypos" "0" "wide" "150" "tall" "16" "textAlignment" "center" "dulltext" "0" "brighttext" "1" "labelText" "NameOfCarrier" "pin_to_sibling" "ProgressLevelBar" "pin_corner_to_sibling" "4" "pin_to_sibling_corner" "6" } "BallPowerCluster" { "ControlName" "EditablePanel" "fieldName" "BallPowerCluster" "xpos" "0" "ypos" "32" "zpos" "5" "wide" "f0" "tall" "f0" "autoResize" "0" "visible" "1" "enabled" "1" "BallPowerMeterFrame" { "ControlName" "ImagePanel" "fieldName" "BallPowerMeterFrame" "xpos" "c-100" "ypos" "0" "zpos" "5" "wide" "200" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "image" "../passtime/hud/passtime_powerball_meter_frame" "scaleImage" "1" } "BallPowerMeterFinalSectionContainer" { "ControlName" "EditablePanel" "fieldName" "BallPowerMeterFinalSectionContainer" "xpos" "c-85" "ypos" "16" "zpos" "3" "wide" "168" "tall" "18" "visible" "1" "enabled" "1" "BallPowerMeterFinalSection" { "ControlName" "ImagePanel" "fieldName" "BallPowerMeterFinalSection" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "168" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "image" "white" "scaleImage" "1" } } "BallPowerMeterFillContainer" { "ControlName" "EditablePanel" "fieldName" "BallPowerMeterFillContainer" "xpos" "c-85" "ypos" "16" "zpos" "4" "wide" "168" "tall" "18" "visible" "1" "enabled" "1" "BallPowerMeterFill" { "ControlName" "ImagePanel" "fieldName" "BallPowerMeterFill" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "168" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "image" "white" "scaleImage" "1" } } } "playericon0" { "ControlName" "ImagePanel" "fieldName" "playericon0" "wide" "12" "tall" "12" } "playericon1" { "ControlName" "ImagePanel" "fieldName" "playericon1" "wide" "12" "tall" "12" } "playericon2" { "ControlName" "ImagePanel" "fieldName" "playericon2" "wide" "12" "tall" "12" } "playericon3" { "ControlName" "ImagePanel" "fieldName" "playericon3" "wide" "12" "tall" "12" } "playericon4" { "ControlName" "ImagePanel" "fieldName" "playericon4" "wide" "12" "tall" "12" } "playericon5" { "ControlName" "ImagePanel" "fieldName" "playericon5" "wide" "12" "tall" "12" } "playericon6" { "ControlName" "ImagePanel" "fieldName" "playericon6" "wide" "12" "tall" "12" } "playericon7" { "ControlName" "ImagePanel" "fieldName" "playericon7" "wide" "12" "tall" "12" } "playericon8" { "ControlName" "ImagePanel" "fieldName" "playericon8" "wide" "12" "tall" "12" } "playericon9" { "ControlName" "ImagePanel" "fieldName" "playericon9" "wide" "12" "tall" "12" } "playericon10" { "ControlName" "ImagePanel" "fieldName" "playericon10" "wide" "12" "tall" "12" } "playericon11" { "ControlName" "ImagePanel" "fieldName" "playericon11" "wide" "12" "tall" "12" } "playericon12" { "ControlName" "ImagePanel" "fieldName" "playericon12" "wide" "12" "tall" "12" } "playericon13" { "ControlName" "ImagePanel" "fieldName" "playericon13" "wide" "12" "tall" "12" } "playericon14" { "ControlName" "ImagePanel" "fieldName" "playericon14" "wide" "12" "tall" "12" } "playericon15" { "ControlName" "ImagePanel" "fieldName" "playericon15" "wide" "12" "tall" "12" } "playericon16" { "ControlName" "ImagePanel" "fieldName" "playericon16" "wide" "12" "tall" "12" } "playericon17" { "ControlName" "ImagePanel" "fieldName" "playericon17" "wide" "12" "tall" "12" } "playericon18" { "ControlName" "ImagePanel" "fieldName" "playericon18" "wide" "12" "tall" "12" } "playericon19" { "ControlName" "ImagePanel" "fieldName" "playericon19" "wide" "12" "tall" "12" } "playericon20" { "ControlName" "ImagePanel" "fieldName" "playericon20" "wide" "12" "tall" "12" } "playericon21" { "ControlName" "ImagePanel" "fieldName" "playericon21" "wide" "12" "tall" "12" } "playericon22" { "ControlName" "ImagePanel" "fieldName" "playericon22" "wide" "12" "tall" "12" } "playericon23" { "ControlName" "ImagePanel" "fieldName" "playericon23" "wide" "12" "tall" "12" } "playericon24" { "ControlName" "ImagePanel" "fieldName" "playericon24" "wide" "12" "tall" "12" } "playericon25" { "ControlName" "ImagePanel" "fieldName" "playericon25" "wide" "12" "tall" "12" } "playericon26" { "ControlName" "ImagePanel" "fieldName" "playericon26" "wide" "12" "tall" "12" } "playericon27" { "ControlName" "ImagePanel" "fieldName" "playericon27" "wide" "12" "tall" "12" } "playericon28" { "ControlName" "ImagePanel" "fieldName" "playericon28" "wide" "12" "tall" "12" } "playericon29" { "ControlName" "ImagePanel" "fieldName" "playericon29" "wide" "12" "tall" "12" } "playericon30" { "ControlName" "ImagePanel" "fieldName" "playericon30" "wide" "12" "tall" "12" } "playericon31" { "ControlName" "ImagePanel" "fieldName" "playericon31" "wide" "12" "tall" "12" } "playericon32" { "ControlName" "ImagePanel" "fieldName" "playericon32" "wide" "12" "tall" "12" } } ================================================ FILE: resource/ui/hudpasstimepassnotify.res ================================================ "resource/ui/hudpasstimepassnotify.res" { "HudPasstimePassNotify" { "ControlName" "EditablePanel" "fieldName" "HudPasstimePassNotify" "xpos" "0" "ypos" "16" "zpos" "0" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" } "TextBox" { "ControlName" "EditablePanel" "fieldName" "TextBox" "xpos" "c-150" "ypos" "c-180" "zpos" "1" "wide" "300" "tall" "46" "visible" "1" "enabled" "1" "border" "NoBorder" "RoundedCorners" "255" "TextInPassRange" { "ControlName" "CExLabel" "fieldName" "TextInPassRange" "font" "HudFontMediumSmallBold" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "300" "tall" "32" "visible" "1" "enabled" "1" "centerwrap" "1" "textAlignment" "center" "labelText" "#Msg_PasstimeInPassRange" "fgcolor_override" "TanLight" } "TextLockedOn" { "ControlName" "CExLabel" "fieldName" "TextLockedOn" "font" "HudFontMediumSmallBold" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "300" "tall" "32" "visible" "1" "enabled" "1" "centerwrap" "1" "textAlignment" "center" "labelText" "#Msg_PasstimeLockedOn" "fgcolor_override" "TanLight" } "TextPassIncoming" { "ControlName" "CExLabel" "fieldName" "TextPassIncoming" "font" "HudFontMediumSmallBold" "xpos" "0" "ypos" "4" "zpos" "3" "wide" "300" "tall" "32" "visible" "1" "enabled" "1" "centerwrap" "1" "textAlignment" "center" "labelText" "#Msg_PasstimePassIncoming" "fgcolor_override" "TanLight" } "TextPlayerName" { "ControlName" "CExLabel" "fieldName" "TextPlayerName" "font" "HudFontSmall" "xpos" "0" "ypos" "25" "zpos" "3" "wide" "300" "tall" "16" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW" "fgcolor_override" "TanLight" } } "PassLockIndicator" { "ControlName" "ImagePanel" "fieldName" "PassLockIndicator" "xpos" "-8" "ypos" "14" "wide" "64" "zpos" "3" "tall" "64" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../passtime/hud/passtime_ball_reticle_incomingpass" "pin_to_sibling" "TextBox" "pin_corner_to_sibling" "0" "pin_to_sibling_corner" "1" } "SpeechIndicator" { "ControlName" "ImagePanel" "fieldName" "SpeechIndicator" "xpos" "8" "ypos" "8" "zpos" "3" "wide" "48" "tall" "48" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../passtime/hud/passtime_pass_to_me_prompt" "pin_to_sibling" "TextBox" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "0" } } ================================================ FILE: resource/ui/hudpasstimeteamscore.res ================================================ "resource/ui/hudpasstimeteamscore.res" { "HudTeamScore" { "ControlName" "EditablePanel" "fieldName" "HudTeamScore" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" } "LeftSideBG" { "ControlName" "ImagePanel" "fieldName" "LeftSideBG" "xpos" "c-90" "ypos" "r24" "zpos" "1" "wide" "50" "tall" "22" "visible" "1" "enabled" "1" "fillcolor" "HUDBlueTeamSolid" } "LeftSideBG2" { "ControlName" "ImagePanel" "fieldName" "LeftSideBG2" "xpos" "c-90" "ypos" "r21" "zpos" "0" "wide" "50" "tall" "21" "visible" "1" "enabled" "1" "fillcolor" "HUDBlueTeamDark" } "RightSideBG" { "ControlName" "ImagePanel" "fieldName" "RightSideBG" "xpos" "c40" "ypos" "r24" "zpos" "1" "wide" "50" "tall" "22" "visible" "1" "enabled" "1" "fillcolor" "HUDRedTeamSolid" } "RightSideBG2" { "ControlName" "ImagePanel" "fieldName" "RightSideBG2" "xpos" "c40" "ypos" "r21" "zpos" "0" "wide" "50" "tall" "23" "visible" "1" "enabled" "1" "fillcolor" "HUDRedTeamDark" } "OutlineBG" { "ControlName" "ImagePanel" "fieldName" "OutlineBG" "xpos" "9999" } "BlueScore" { "ControlName" "CExLabel" "fieldName" "BlueScore" "xpos" "c-90" "ypos" "r30" "zpos" "8" "wide" "50" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%bluescore%" "font" "FontBold22" "fgcolor" "TanLight" } "BlueScoreShadow" { "ControlName" "CExLabel" "fieldName" "BlueScoreShadow" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "50" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%bluescore%" "font" "FontBold22" "fgcolor" "Black" "pin_to_sibling" "BlueScore" } "RedScore" { "ControlName" "CExLabel" "fieldName" "RedScore" "xpos" "c40" "ypos" "r30" "zpos" "8" "wide" "50" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%redscore%" "font" "FontBold22" "fgcolor" "TanLight" } "RedScoreShadow" { "ControlName" "CExLabel" "fieldName" "RedScoreShadow" "xpos" "-2" "ypos" "-2" "zpos" "7" "wide" "50" "tall" "35" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%redscore%" "font" "FontBold22" "fgcolor" "Black" "pin_to_sibling" "RedScore" } "PlayingToCluster" { "ControlName" "EditablePanel" "fieldName" "PlayingToCluster" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "PlayingTo" { "ControlName" "CExLabel" "fieldName" "PlayingTo" "xpos" "cs-0.5" "ypos" "r30" "zpos" "7" "wide" "140" "tall" "38" "visible" "1" "enabled" "1" "labelText" "#TF_PlayingTo" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontRegular12" "fgcolor" "TanLight" } "PlayingToBG" { "ControlName" "ImagePanel" "fieldName" "PlayingToBG" "xpos" "c-40" "ypos" "r24" "zpos" "3" "wide" "80" "tall" "24" "visible" "1" "enabled" "1" "fillcolor" "Hudblack" } } } ================================================ FILE: resource/ui/hudplayerclass.res ================================================ #base "../../../../cfg/flawhud/hud_disguise_anim.txt" #base "../../../../cfg/flawhud/hud_player_model.txt" #base "../../../../cfg/flawhud/hud_speedometer.txt" #base "../../../../cfg/flawhud/hud_transparent_viewmodels.txt" #base "customizations/crosshair/crosshair.res" #base "hudplayerclass_base.res" ================================================ FILE: resource/ui/hudplayerclass_base.res ================================================ "resource/ui/hudplayerclass.res" { //-------------------------------------------------------------- // SPEEDOMETER //-------------------------------------------------------------- // Set visible to 1 to enable. //-------------------------------------------------------------- "Speedometer" { "visible" "0" "enabled" "1" "controlName" "ImagePanel" "fieldName" "Speedometer" "xpos" "cs-0.5" "ypos" "c25" "zpos" "-100" "wide" "50" "tall" "12" "image" "replay/thumbnails/speedometer" "scaleImage" "1" } // Player Class Data "HudPlayerClass" { "ControlName" "EditablePanel" "fieldName" "HudPlayerClass" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" } "PlayerStatusClassImage" { "ControlName" "CTFClassImage" "fieldName" "PlayerStatusClassImage" "xpos" "25" "ypos" "r75" "zpos" "2" "wide" "75" "tall" "75" "visible" "1" "enabled" "1" "image" "../hud/class_scoutred" "scaleImage" "1" } "PlayerStatusSpyImage" { "ControlName" "CTFImagePanel" "fieldName" "PlayerStatusSpyImage" "xpos" "9999" } "PlayerStatusSpyOutlineImage" { "ControlName" "CTFImagePanel" "fieldName" "PlayerStatusSpyOutlineImage" "xpos" "3" "ypos" "r67" "zpos" "7" "wide" "55" "tall" "55" "visible" "0" "enabled" "1" "image" "../hud/class_spy_outline" "scaleImage" "1" } "PlayerStatusClassImageBG" { "ControlName" "CTFImagePanel" "fieldName" "PlayerStatusClassImageBG" "xpos" "9999" } "classmodelpanelBG" { "ControlName" "CTFImagePanel" "fieldName" "classmodelpanelBG" "xpos" "9999" } "classmodelpanel" { "ControlName" "CTFPlayerModelPanel" "fieldName" "classmodelpanel" "xpos" "0" "ypos" "r200" "zpos" "2" "wide" "150" "tall" "200" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fov" "23" "allow_rot" "1" "render_texture" "0" "model" { "force_pos" "1" "angles_x" "0" "angles_y" "175" "angles_z" "0" "origin_x" "200" "origin_y" "0" "origin_z" "-80" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } } "CarryingWeapon" { "ControlName" "EditablePanel" "fieldName" "CarryingWeapon" "xpos" "100" "ypos" "r25" "zpos" "100" "wide" "500" "tall" "20" "CarryingBackground" { "ControlName" "CTFImagePanel" "fieldName" "CarryingBackground" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "p1" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/color_panel_brown" "scaleImage" "1" "teambg_1" "../hud/color_panel_brown" "teambg_2" "../hud/color_panel_red" "teambg_3" "../hud/color_panel_blu" "proportionaltoparent" "1" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "0" "draw_corner_height" "0" } "CarryingLabel" { "ControlName" "CExLabel" "fieldName" "CarryingLabel" "font" "FontRegular15" "xpos" "15" "ypos" "3" "zpos" "1" "wide" "200" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "North-West" "dulltext" "0" "brighttext" "0" "proportionaltoparent" "1" "auto_wide_tocontents" "1" "labelText" "%carrying%" } "CarryingLabelDropShadow" { "ControlName" "CExLabel" "fieldName" "CarryingLabelDropShadow" "font" "ReplayBrowserSmallest" "xpos" "p0.011" "ypos" "p0.12" "zpos" "0" "wide" "200" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "textAlignment" "North-West" "dulltext" "0" "brighttext" "0" "proportionaltoparent" "1" "auto_wide_tocontents" "1" "fgcolor_override" "Black" "labelText" "%carrying%" } "OwnerLabel" { "ControlName" "Label" "fieldName" "OwnerLabel" "font" "FontStoreOriginalPrice" "font_minmode" "StreamerMode" "xpos" "5" "ypos" "14" "zpos" "0" "wide" "200" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "textAlignment" "North-West" "dulltext" "0" "brighttext" "0" "proportionaltoparent" "1" "auto_wide_tocontents" "1" } } } ================================================ FILE: resource/ui/hudplayerhealth.res ================================================ #base "../../../../cfg/flawhud/hud_health_style.txt" #base "hudplayerhealth_base.res" ================================================ FILE: resource/ui/hudplayerhealth_base.res ================================================ "resource/ui/hudplayerhealth.res" { // Player Health Data "HudPlayerHealth" { "ControlName" "EditablePanel" "fieldName" "HudPlayerHealth" "xpos" "c-250" "ypos" "c85" "zpos" "2" "wide" "150" "tall" "150" "visible" "1" "enabled" "1" "HealthBonusPosAdj" "35" "HealthDeathWarning" "0.49" "HealthDeathWarningColor" "HUDDeathWarning" } "PlayerStatusHealthImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthImage" "xpos" "20" "ypos" "11" "zpos" "4" "wide" "70" "tall" "70" "visible" "0" //Change to "1" to enable health cross "enabled" "1" "scaleImage" "1" } "PlayerStatusHealthImageBG" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthImageBG" "xpos" "9999" //Change to "18" to enable health cross "ypos" "9" "zpos" "4" "wide" "75" "tall" "75" "visible" "1" "enabled" "1" "image" "../hud/health_bg" "scaleImage" "1" } "HealthBG" { "ControlName" "EditablePanel" "fieldName" "HealthBG" "xpos" "0" "ypos" "25" "zpos" "1" "wide" "110" "tall" "43" "visible" "1" //Change to "0" to enable health cross "enabled" "1" "bgcolor_override" "BGBlack" "PaintBackgroundType" "2" } "PlayerStatusHealthBonusImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthBonusImage" "xpos" "9999" //Change to "23" to enable health cross "ypos" "12" "zpos" "3" "wide" "65" "tall" "65" "visible" "1" "enabled" "1" "image" "../hud/health_over_bg" "scaleImage" "1" } "PlayerHealthValue" { "ControlName" "CExLabel" "fieldName" "PlayerHealthValue" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "110" "tall" "43" "visible" "1" "enabled" "1" "labelText" "%Health%" "textAlignment" "center" "font" "FontBold50" //Change to "HudFontBiggerBold" to enable health cross "pin_to_sibling" "HealthBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "PlayerHealthShadow" { "ControlName" "CExLabel" "fieldName" "PlayerHealthShadow" "xpos" "-2" "ypos" "-2" "zpos" "5" "wide" "110" "tall" "43" "visible" "1" "enabled" "1" "labelText" "%Health%" "textAlignment" "center" "font" "ScanlineShadow" //Change to "HudFontBiggerBold" to enable health cross "fgcolor" "Black" "pin_to_sibling" "PlayerHealthValue" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "PlayerStatusMaxHealthValue" { "ControlName" "CExLabel" "fieldName" "PlayerStatusMaxHealthValue" "xpos" "76" "ypos" "55" "zpos" "6" "wide" "50" "tall" "18" "visible" "0" "enabled" "1" "labelText" "%MaxHealth%" "textAlignment" "center" "font" "DefaultSmall" "fgcolor" "TanLight" } "PlayerStatusAnchor" { "ControlName" "EditablePanel" "fieldName" "PlayerStatusAnchor" "xpos" "30" "ypos" "0" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" } "PlayerStatusBleedImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusBleedImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "bleed_drop" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatusMilkImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusMilkImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "bleed_drop" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatusGasImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusGasImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "covered_in_gas" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatusMarkedForDeathImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusMarkedForDeathImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "marked_for_death" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatusMarkedForDeathSilentImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusMarkedForDeathSilentImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "marked_for_death" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_MedicUberBulletResistImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_MedicUberBulletResistImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../HUD/defense_buff_bullet_blue" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_MedicUberBlastResistImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_MedicUberBlastResistImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../HUD/defense_buff_explosion_blue" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_MedicUberFireResistImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_MedicUberFireResistImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../HUD/defense_buff_fire_blue" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_MedicSmallBulletResistImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_MedicSmallBulletResistImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../HUD/defense_buff_bullet_blue" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_MedicSmallBlastResistImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_MedicSmallBlastResistImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../HUD/defense_buff_explosion_blue" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_MedicSmallFireResistImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_MedicSmallFireResistImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../HUD/defense_buff_fire_blue" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_WheelOfDoom" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_WheelOfDoom" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../signs/death_wheel_whammy" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_SoldierOffenseBuff" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_SoldierOffenseBuff" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../HUD/defense_buff_bullet_blue" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_SoldierDefenseBuff" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_SoldierDefenseBuff" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../HUD/defense_buff_bullet_blue" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_SoldierHealOnHitBuff" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_SoldierHealOnHitBuff" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../HUD/defense_buff_bullet_blue" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_SpyMarked" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_SpyMarked" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_Parachute" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_Parachute" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RuneStrength" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RuneStrength" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_strength_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RuneHaste" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RuneHaste" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_haste_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RuneRegen" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RuneRegen" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_regen_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RuneResist" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RuneResist" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_resist_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RuneVampire" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RuneVampire" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_vampire_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RuneReflect" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RuneReflect" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_reflect_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RunePrecision" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RunePrecision" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_precision_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RuneAgility" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RuneAgility" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_agility_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RuneKnockout" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RuneKnockout" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_knockout_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RuneKing" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RuneKing" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_king_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RunePlague" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RunePlague" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_plague_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatus_RuneSupernova" { "ControlName" "ImagePanel" "fieldName" "PlayerStatus_RuneSupernova" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../Effects/powerup_supernova_hud" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatusSlowed" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusSlowed" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "slowed" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } "PlayerStatusHookBleedImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHookBleedImage" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "22" "tall" "22" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "bleed_drop_grapple" "fgcolor" "TanDark" "pin_to_sibling" "PlayerStatusAnchor" "pin_corner_to_sibling" "1" "pin_to_sibling_corner" "1" } } ================================================ FILE: resource/ui/hudpowerupeffectmeter.res ================================================ #base "huditemeffectmeter.res" "resource/ui/huditemeffectmeter.res" { "HudItemEffectMeter" { "xpos" "c-250" "ypos" "c155" } } ================================================ FILE: resource/ui/hudpvewinpanel.res ================================================ "resource/ui/hudpvewinpanel.res" { "WinPanelBG" { "ControlName" "ImagePanel" "fieldName" "WinPanelBG" "xpos" "0" "ypos" "50" "zpos" "0" "wide" "300" "tall" "90" "fillcolor" "HudBlack" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "src_corner_height" "22" // pixels inside the image "src_corner_width" "22" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" } "WaveCompleteContainer" { "ControlName" "EditablePanel" "fieldName" "WaveCompleteContainer" "xpos" "0" "ypos" "50" "wide" "300" "tall" "30" "visible" "1" "PaintBackgroundType" "0" "paintborder" "1" "border" "DarkBlueTeamBorder" "bgcolor_override" "HUDBlueTeamSolid" "WinningTeamLabel" { "ControlName" "CExLabel" "fieldName" "WinningTeamLabel" "font" "FontBold20" "xpos" "2" "ypos" "-1" "wide" "295" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Winpanel_PVE_Evil_Wins" "textAlignment" "Center" "fgcolor" "TanLight" } } "WinReasonLabel" { "ControlName" "CExLabel" "fieldName" "WinReasonLabel" "font" "HudFontSmall" "xpos" "0" "ypos" "85" "zpos" "1" "wide" "292" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%WinReasonLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" } "DetailsLabel" { "ControlName" "CExLabel" "fieldName" "DetailsLabel" "font" "HudFontSmallest" "xpos" "15" "ypos" "105" "zpos" "1" "wide" "265" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%DetailsLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" "wrap" "1" "centerwrap" "1" } } ================================================ FILE: resource/ui/hudrocketpack.res ================================================ #base "huditemeffectmeter.res" "resource/ui/hudrocketpack.res" { "HudItemEffectMeter" { "tall" "22" } "ItemEffectMeterBG" { "ControlName" "CTFImagePanel" "fieldName" "ItemEffectMeterBG" "xpos" "9999" } "ItemEffectIcon" { "ControlName" "CTFImagePanel" "fieldName" "ItemEffectIcon" "xpos" "44" "ypos" "0" "zpos" "2" "wide" "25" "tall" "25" "visible" "1" "enabled" "1" "image" "../hud/pyro_jetpack_off2" "scaleImage" "1" } "ItemEffectMeterLabel" { "visible" "0" "labelText" "#TF_RocketPack_Disabled" } "ItemEffectMeter" { "ypos" "20" "wide" "55" } "ItemEffectMeter2" { "ControlName" "ContinuousProgressBar" "fieldName" "ItemEffectMeter2" "xpos" "55" "ypos" "20" "zpos" "2" "wide" "55" "tall" "2" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "fgcolor" "TanLight" } } ================================================ FILE: resource/ui/hudroundcounter.res ================================================ "resource/ui/hudroundcounter.res" { "RoundCounter" { "fieldName" "RoundCounter" "xpos" "cs-0.5" "ypos" "0" "zpos" "2" "wide" "300" "tall" "8" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "starting_width" "20" "width_per_round" "24" "indicator_max_wide" "30" "indicator_start_offset" "4" "RoundIndicatorPanel_kv" { "ypos" "4" "wide" "3" "tall" "3" "zpos" "7" "image" "../hud/comp_round_counter_dot_bg" "scaleimage" "1" } "RoundWinPanelRed_kv" { "ypos" "0" "wide" "10" "tall" "10" "zpos" "8" "image" "../hud/comp_round_counter_light_red" "scaleimage" "1" } "RoundWinPanelBlue_kv" { "ypos" "0" "wide" "10" "tall" "10" "zpos" "8" "image" "../hud/comp_round_counter_light_blue" "scaleimage" "1" } } "Background" { "ControlName" "ImagePanel" "fieldName" "Background" "xpos" "c-40" "ypos" "2" "zpos" "0" "wide" "80" "tall" "25" "fillcolor" "HudBlack" "scaleimage" "1" "proportionaltoparent" "1" } "BlueTeamBackground" { "ControlName" "ImagePanel" "fieldName" "BlueTeamBackground" "xpos" "c-40" "ypos" "0" "zpos" "1" "wide" "80" "tall" "8" "fillcolor" "HUDBlueTeamSolid" "scaleimage" "1" "proportionaltoparent" "1" } "RedTeamBackground" { "ControlName" "ImagePanel" "fieldName" "RedTeamBackground" "xpos" "c0" "ypos" "0" "zpos" "5" "wide" "40" "tall" "8" "fillcolor" "HUDRedTeamSolid" "scaleimage" "1" "proportionaltoparent" "1" } } ================================================ FILE: resource/ui/hudspellselection.res ================================================ "resource/ui/hudspellselection.res" { "ItemEffectMeterBG" { "ControlName" "CTFImagePanel" "fieldName" "ItemEffectMeterBG" "xpos" "9999" } "Spellbook" { "ControlName" "CTFImagePanel" "fieldName" "Spellbook" "xpos" "9999" } "SpellIcon" { "ControlName" "ImagePanel" "fieldName" "SpellIcon" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "../signs/death_wheel_whammy" "fgcolor" "TanLight" } "ActionText" { "ControlName" "CExLabel" "fieldName" "ActionText" "font" "HudFontSmallest" "labelText" "%actiontext%" "textAlignment" "west" "xpos" "0" "ypos" "22" "wide" "80" "tall" "10" "fgcolor" "TanLight" "visible" "1" } "SpellText" { "ControlName" "CExLabel" "fieldName" "SpellText" "xpos" "9999" } "CountText" { "ControlName" "CExLabel" "fieldName" "CountText" "font" "FontBold20" "labelText" "%counttext%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "20" "tall" "20" "fgcolor" "TanLight" "pin_to_sibling" "SpellIcon" "pin_corner_to_sibling" "PIN_CENTER_LEFT" "pin_to_sibling_corner" "PIN_CENTER_RIGHT" } "CountTextShadow" { "ControlName" "CExLabel" "fieldName" "CountTextShadow" "font" "FontBold20" "labelText" "%counttext%" "textAlignment" "center" "xpos" "-2" "ypos" "-2" "wide" "20" "tall" "20" "fgcolor" "Black" "pin_to_sibling" "CountText" } } ================================================ FILE: resource/ui/hudstopwatch.res ================================================ "resource/ui/hudstopwatch.res" { "HudStopWatchBG" { "ControlName" "EditablePanel" "fieldName" "HudStopWatchBG" "xpos" "0" "ypos" "11" "zpos" "0" "wide" "90" "tall" "15" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } "StopWatchImageCaptureTime" { "ControlName" "ImagePanel" "fieldName" "StopWatchImageCaptureTime" "xpos" "9999" } "ObjectiveStatusTimePanel" { "ControlName" "EditablePanel" "fieldName" "ObjectiveStatusTimePanel" "xpos" "57" "ypos" "11" "zpos" "1" "wide" "30" "tall" "15" "visible" "1" "enabled" "1" "TimePanelBG" { "ControlName" "ImagePanel" "fieldName" "TimePanelBG" "tall" "0" "visible" "0" } "TimePanelValue" { "ControlName" "CExLabel" "fieldName" "TimePanelValue" "font" "FontRegular14" "fgcolor" "TanLight" "xpos" "0" "ypos" "1" "zpos" "1" "wide" "30" "tall" "15" "visible" "1" "enabled" "1" "textAlignment" "west" } } "StopWatchScoreToBeat" { "ControlName" "CExLabel" "fieldName" "StopWatchScoreToBeat" "font" "FontBold14" "labelText" "%scoretobeat%" "textAlignment" "east" "xpos" "0" "ypos" "11" "zpos" "1" "wide" "20" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" } "StopWatchPointsLabel" { "ControlName" "CExLabel" "fieldName" "StopWatchPointsLabel" "font" "FontRegular11" "labelText" "%pointslabel%" "textAlignment" "west" "xpos" "24" "ypos" "11" "zpos" "1" "wide" "30" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" } "StopWatchLabel" { "ControlName" "CExLabel" "fieldName" "StopWatchLabel" "font" "FontRegular8" "labelText" "%stopwatchlabel%" "textAlignment" "center" "xpos" "0" "ypos" "11" "zpos" "1" "wide" "90" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "0" } "HudStopWatchDescriptionBG" { "ControlName" "ScalableImagePanel" "fieldName" "HudStopWatchDescriptionBG" "xpos" "9999" } "StopWatchDescriptionLabel" { "ControlName" "CExLabel" "fieldName" "StopWatchDescriptionLabel" "font" "FontRegular8" "labelText" "%descriptionlabel%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "90" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" } } ================================================ FILE: resource/ui/hudteamswitch.res ================================================ "resource/ui/hudteamswitch.res" { "HudTeamSwitchBG" { "ControlName" "CTFImagePanel" "fieldName" "HudTeamSwitchBG" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "246" "tall" "31" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/death_panel_blue_bg" "scaleImage" "1" "teambg_2" "../hud/death_panel_red_bg" "teambg_3" "../hud/death_panel_blue_bg" "paintborder" "1" "border" "NoBorder" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "0" "draw_corner_height" "0" } "SwitchLabel" { "ControlName" "Label" "fieldName" "SwitchLabel" "font" "FontRegular12" "xpos" "31" "ypos" "3" "zpos" "1" "wide" "212" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labelText" "#TF_teambalanced" "textAlignment" "North" "fgcolor_override" "TanLight" "textinsetx" "5" } "BalanceLabel" { "ControlName" "Label" "fieldName" "BalanceLabel" "font" "FontRegular12" "xpos" "31" "ypos" "13" "zpos" "1" "wide" "212" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labelText" "" "textAlignment" "North" "fgcolor_override" "TanLight" "textinsetx" "5" } "SwitchImage" { "ControlName" "CTFImagePanel" "fieldName" "SwitchImage" "xpos" "3" "ypos" "3" "zpos" "1" "wide" "25" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/ico_teambalance" "scaleImage" "1" } } ================================================ FILE: resource/ui/hudtournament.res ================================================ "resource/ui/hudtournament.res" { HudTournament { "ControlName" "EditablePanel" "fieldName" "HudTournament" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "team1_player_base_offset_x" "-75" "team1_player_base_y" "0" "team1_player_delta_x" "-47" "team1_player_delta_y" "0" "team2_player_base_offset_x" "25" "team2_player_base_y" "0" "team2_player_delta_x" "47" "team2_player_delta_y" "0" "teams_player_delta_x_comp" "42" "avatar_width" "63" "spacer" "5" "name_width" "57" "horiz_inset" "2" if_mvm { "ypos" "0" "team1_player_base_y" "66" "team2_player_base_y" "66" "team2_player_delta_x" "52" } if_competitive { "team1_player_base_y" "86" "team2_player_base_y" "86" "teams_player_delta_x_comp" "52" "team2_player_base_offset_x" "5" } if_readymode { "team1_player_base_y" "66" "team2_player_base_y" "66" "team2_player_delta_x" "52" "team2_player_base_offset_x" "5" } "ModeImage" { "ControlName" "ImagePanel" "fieldName" "ModeImage" "xpos" "c-31" "ypos" "70" "zpos" "0" "wide" "60" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "image" "competitive/competitive_logo_laurel" "scaleImage" "1" "proportionaltoparent" "1" if_competitive { "visible" "1" } } "playerpanels_kv" { "visible" "0" "wide" "50" "tall" "35" "zpos" "1" "color_ready" "0 255 0 220" "color_notready" "Black" "PanelBG" { "ControlName" "ImagePanel" "fieldName" "PanelBG" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "24" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "TransparentLightBlack" } "playername" { "ControlName" "CExLabel" "fieldName" "playername" "font" "FontRegular10" "font_minmode" "StreamerMode" "xpos" "1" "ypos" "25" "zpos" "5" "wide" "48" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "labelText" "%playername%" "textAlignment" "center" } "classimage" { "ControlName" "CTFClassImage" "fieldName" "classimage" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "24" "tall" "24" "visible" "1" "enabled" "1" "image" "../hud/class_scoutred" "scaleImage" "1" if_mvm { "image" "hud_connecting" } if_competitive { "image" "hud_connecting" } if_readymode { "image" "hud_connecting" } } "classimagebg" { "ControlName" "Panel" "fieldName" "classimagebg" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "24" "tall" "24" "visible" "0" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "0" if_mvm { "visible" "1" } if_competitive { "visible" "1" } if_readymode { "visible" "1" } } "HealthIcon" { "ControlName" "EditablePanel" "fieldName" "HealthIcon" "xpos" "22" "ypos" "-3" "zpos" "3" "wide" "32" "tall" "32" "visible" "1" "enabled" "1" "HealthBonusPosAdj" "10" "HealthDeathWarning" "0.49" "TFFont" "HudFontSmallest" "HealthDeathWarningColor" "HUDDeathWarning" "TextColor" "HudOffWhite" if_readymode { "xpos" "9999" } } "ReadyBG" { "ControlName" "ScalableImagePanel" "fieldName" "ReadyBG" "xpos" "28" "ypos" "3" "zpos" "3" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "image" "../HUD/tournament_panel_brown" "src_corner_height" "22" // pixels inside the image "src_corner_width" "22" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" if_mvm { "visible" "1" } if_competitive { "visible" "1" } if_readymode { "visible" "1" } } "ReadyImage" { "ControlName" "ImagePanel" "fieldName" "ReadyImage" "xpos" "29" "ypos" "4" "zpos" "4" "wide" "16" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "image" "hud/checkmark" "scaleImage" "1" if_mvm { "visible" "1" } if_competitive { "visible" "1" } if_readymode { "visible" "1" } } "respawntime" { "ControlName" "CExLabel" "fieldName" "respawntime" "font" "DefaultSmall" "xpos" "30" "ypos" "18" "zpos" "5" "wide" "23" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "labelText" "%respawntime%" "textAlignment" "west" //"fgcolor" "NeutralWhite" } "chargeamount" { "ControlName" "CExLabel" "fieldName" "chargeamount" "font" "DefaultSmall" "xpos" "25" "ypos" "17" "zpos" "6" "wide" "25" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "labelText" "%chargeamount%" "textAlignment" "north" "fgcolor" "0 255 0 255" if_mvm { "visible" "0" } } "specindex" { "ControlName" "CExLabel" "fieldName" "specindex" "font" "DefaultVerySmall" "xpos" "4" "ypos" "2" "zpos" "5" "wide" "50" "tall" "8" "autoResize" "0" "pinCorner" "0" "visible" "0" "labelText" "%specindex%" "textAlignment" "north-west" //"fgcolor" "NeutralWhite" } } } "HudTournamentBG" { "ControlName" "ScalableImagePanel" "fieldName" "HudTournamentBG" "wide" "0" } "TournamentLabel" { "ControlName" "Label" "fieldName" "TournamentLabel" "wide" "0" } "MainBG" { "ControlName" "EditablePanel" "fieldName" "MainBG" "xpos" "c-125" "ypos" "25" "zpos" "1" "wide" "250" "tall" "30" "visible" "1" "enabled" "1" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" if_mvm { "xpos" "9999" } } "HudTournamentBLUEBG" { "ControlName" "ImagePanel" "fieldName" "HudTournamentBLUEBG" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "125" "tall" "18" "visible" "1" "enabled" "1" "fillcolor" "HUDBlueTeamSolid" "pin_to_sibling" "MainBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "HudTournamentBLUEBG2" { "ControlName" "ImagePanel" "fieldName" "HudTournamentBLUEBG2" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "125" "tall" "16" "visible" "1" "enabled" "1" "fillcolor" "HUDBlueTeamDark" "pin_to_sibling" "HudTournamentBLUEBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "TournamentBLUELabel" { "ControlName" "Label" "fieldName" "TournamentBLUELabel" "font" "FontBold14" "xpos" "0" "ypos" "0" "zpos" "4" "wide" "125" "tall" "16" "visible" "1" "enabled" "1" "textInsetX" "10" "labelText" "%bluenamelabel%" "textAlignment" "west" "fgcolor_override" "TeamBlue" "pin_to_sibling" "HudTournamentBLUEBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "TournamentBLUEStateLabel" { "ControlName" "Label" "fieldName" "TournamentBLUEStateLabel" "font" "FontRegular10" "xpos" "0" "ypos" "0" "zpos" "4" "wide" "125" "tall" "16" "visible" "1" "enabled" "1" "textInsetX" "10" "labelText" "%bluestate%" "textAlignment" "east" "pin_to_sibling" "HudTournamentBLUEBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "HudTournamentREDBG" { "ControlName" "ImagePanel" "fieldName" "HudTournamentREDBG" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "125" "tall" "18" "visible" "1" "enabled" "1" "fillcolor" "HUDRedTeamSolid" "pin_to_sibling" "HudTournamentBLUEBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "HudTournamentREDBG2" { "ControlName" "ImagePanel" "fieldName" "HudTournamentREDBG2" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "125" "tall" "16" "visible" "1" "enabled" "1" "fillcolor" "HUDRedTeamDark" "pin_to_sibling" "HudTournamentREDBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "TournamentREDLabel" { "ControlName" "Label" "fieldName" "TournamentREDLabel" "font" "FontBold14" "xpos" "0" "ypos" "0" "zpos" "4" "wide" "125" "tall" "16" "visible" "1" "enabled" "1" "textInsetX" "10" "labelText" "%rednamelabel%" "textAlignment" "east" "fgcolor_override" "TeamRed" "pin_to_sibling" "HudTournamentREDBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "TournamentREDStateLabel" { "ControlName" "Label" "fieldName" "TournamentREDStateLabel" "font" "FontRegular10" "xpos" "0" "ypos" "0" "zpos" "4" "wide" "125" "tall" "16" "visible" "1" "enabled" "1" "textInsetX" "10" "labelText" "%redstate%" "textAlignment" "west" "pin_to_sibling" "HudTournamentREDBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "TournamentConditionLabel" { "ControlName" "CExLabel" "fieldName" "TournamentConditionLabel" "font" "FontRegular10" "fgcolor" "TanLight" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "250" "tall" "12" "visible" "1" "enabled" "1" "labelText" "%winconditions%" "textAlignment" "center" "pin_to_sibling" "MainBG" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "HudTournamentBGHelp" { "ControlName" "ScalableImagePanel" "fieldName" "HudTournamentBGHelp" "wide" "0" } "TournamentInstructionsLabel" { "ControlName" "CExLabel" "fieldName" "TournamentInstructionsLabel" "font" "FontBold10" "xpos" "c-125" "ypos" "55" "wide" "250" "tall" "12" "zpos" "1" "visible" "1" "enabled" "1" "labelText" "%readylabel%" "textAlignment" "center" if_mvm { "font" "FontBold14" "ypos" "105" } } "TournamentInstructionsLabelShadow" { "ControlName" "CExLabel" "fieldName" "TournamentInstructionsLabelShadow" "font" "FontBold10" "fgcolor" "Black" "xpos" "-1" "ypos" "-1" "wide" "250" "tall" "12" "zpos" "1" "visible" "1" "enabled" "1" "labelText" "%readylabel%" "textAlignment" "center" "pin_to_sibling" "TournamentInstructionsLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" if_mvm { "font" "FontBold14" } } "TournamentReadyHintIcon" { "ControlName" "CExLabel" "fieldName" "TournamentReadyHintIcon" "wide" "0" } "CountdownBG" { "ControlName" "ScalableImagePanel" "fieldName" "CountdownBG" "wide" "0" } "CountdownLabel" { "ControlName" "CExLabel" "fieldName" "CountdownLabel" "font" "FontBold22" "fgcolor" "TanLight" "xpos" "cs-0.5" "ypos" "cs-0.1" "wide" "40" "tall" "40" "zpos" "5" "visible" "0" "enabled" "1" "labelText" "%tournamentstatelabel%" "textAlignment" "center" "proportionaltoparent" "1" } "CountdownLabelShadow" { "ControlName" "CExLabel" "fieldName" "CountdownLabelShadow" "font" "FontBold22" "fgcolor" "Black" "xpos" "cs-0.48" "ypos" "cs-0.48" "wide" "40" "tall" "40" "zpos" "4" "visible" "0" "enabled" "1" "labelText" "%tournamentstatelabel%" "textAlignment" "center" "proportionaltoparent" "1" } } ================================================ FILE: resource/ui/hudtournamentsetup.res ================================================ "resource/ui/hudtournamentsetup.res" { "HudTournamentSetupBG" { "ControlName" "ImagePanel" "fieldName" "HudTournamentSetupBG" "xpos" "49" "ypos" "0" "zpos" "-1" "wide" "82" "tall" "28" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "DarkGrey" "border" "WhiteBorder" } "TournamentSetupLabel" { "ControlName" "Label" "fieldName" "TournamentSetupLabel" "xpos" "9999" } "TournamentTeamNameLabel" { "ControlName" "Label" "fieldName" "TournamentTeamNameLabel" "xpos" "9999" } "TournamentNameEdit" { "ControlName" "TextEntry" "fieldName" "TournamentNameEdit" "xpos" "52" "ypos" "1" "zpos" "2" "wide" "75" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "textHidden" "0" "editable" "1" "maxchars" "5" "NumericInputOnly" "0" "unicode" "0" "wrap" "0" "fgcolor_override" "TanLight" "bgcolor_override" "DarkGrey" "labelText" "%teamname%" "textAlignment" "west" "font" "FontBold14" "selectionColor_override" "TanLight" "selectionTextColor_override" "Black" } "HudTournamentNameBG" { "ControlName" "CTFImagePanel" "fieldName" "HudTournamentNameBG" "xpos" "9999" } "TournamentNotReadyButton" { "ControlName" "CExButton" "fieldName" "TournamentNotReadyButton" "xpos" "85" "ypos" "14" "wide" "41" "tall" "14" "zpos" "0" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "#Store_CANCEL" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "teamnotready" "default" "1" "font" "FontBold10" "fgcolor" "NeonRed" "defaultBgColor_override" "Blank" "defaultFgColor_override" "TanLight" "armedBgColor_override" "Blank" "armedFgColor_override" "RedSolid" "depressedBgColor_override" "Blank" "depressedFgColor_override" "RedSolid" } "TournamentReadyButton" { "ControlName" "CExButton" "fieldName" "TournamentReadyButton" "xpos" "45" "ypos" "14" "wide" "41" "tall" "14" "zpos" "0" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "#Store_OK" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "teamready" "default" "1" "font" "FontBold10" "fgcolor" "NeonGreen" "defaultBgColor_override" "Blank" "defaultFgColor_override" "TanLight" "armedBgColor_override" "Blank" "armedFgColor_override" "GreenSolid" "depressedBgColor_override" "Blank" "depressedFgColor_override" "GreenSolid" } } ================================================ FILE: resource/ui/hudtraining.res ================================================ "resource/ui/hudtraining.res" { "ObjectiveStatusTraining" { "ControlName" "EditablePanel" "fieldName" "ObjectiveStatusTraining" "xpos" "c-160" "ypos" "r108" "zpos" "1" "wide" "320" "tall" "100" "visible" "1" "enabled" "1" } "GoalLabel" { "ControlName" "CExLabel" "fieldName" "GoalLabel" "fgcolor" "TanLight" "xpos" "20" "ypos" "5" "zpos" "4" "wide" "300" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labelText" "%goal%" "font" "FontBold12" "textAlignment" "North" } "GoalLabelShadow" { "ControlName" "CExLabel" "fieldName" "GoalLabelShadow" "fgcolor" "Black" "xpos" "-1" "ypos" "-1" "zpos" "3" "wide" "300" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labelText" "%goal%" "font" "FontBold12" "textAlignment" "North" "pin_to_sibling" "GoalLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "MsgLabel" { "ControlName" "CExRichText" "fieldName" "MsgLabel" "fgcolor" "TanLight" "xpos" "20" "ypos" "25" "zpos" "3" "wide" "280" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "labelText" "" "textAlignment" "North" "font" "FontRegular12" } "PressSpacebarToContinue" { "ControlName" "CExLabel" "fieldName" "PressSpacebarToContinue" "fgcolor" "TanLight" "xpos" "20" "ypos" "80" "zpos" "3" "wide" "280" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "labelText" "#TF_Training_SpaceToContinue" "textAlignment" "North" "font" "TFFontMedium" } "HudTrainingMsgBG" { "ControlName" "ImagePanel" "fieldName" "HudTrainingMsgBG" "xpos" "-5" "ypos" "-25" "zpos" "2" "wide" "330" "tall" "205" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "HudBlack" "PaintBackgroundType" "0" } } ================================================ FILE: resource/ui/hudupgradepanel.res ================================================ "resource/ui/hudupgradepanel.res" { "HudUpgradePanel" { "ControlName" "EditablePanel" "fieldName" "HudUpgradePanel" "xpos" "0" "ypos" "0" "zpos" "1000" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "settitlebarvisible" "0" "itempanel_xpos" "15" "itempanel_ypos" "10" "itempanel_xdelta" "5" "itempanel_ydelta" "5" "upgradebuypanel_xpos" "160" "upgradebuypanel_ypos" "65" "upgradebuypanel_delta" "6" "modelpanels_kv" { "zpos" "-2" "wide" "70" "tall" "50" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "paintborder" "0" "model_ypos" "5" "model_tall" "30" "model_wide" "48" "model_center_x" "1" "text_ypos" "60" "text_center" "1" "name_only" "1" "text_forcesize" "3" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } } "BGGrayoutPanel" { "ControlName" "EditablePanel" "fieldName" "BGGrayoutPanel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "zpos" "-1" "bgcolor_override" "HudBlack" } "SelectWeaponPanel" { "ControlName" "EditablePanel" "fieldName" "SelectWeaponPanel" "xpos" "c-250" "ypos" "85" "wide" "500" "tall" "350" "OutPanelBG" { "ControlName" "ImagePanel" "fieldName" "OutPanelBG" "xpos" "10" "ypos" "5" "zpos" "-8" "wide" "480" "tall" "310" "fillcolor" "HudBlack" } "BetweenBG" { "ControlName" "ImagePanel" "fieldName" "BetweenBG" "xpos" "10" "ypos" "278" "zpos" "-8" "wide" "480" "tall" "38" "fillcolor" "DarkGrey" } "TopBorder" { "ControlName" "Panel" "fieldName" "TopBorder" "xpos" "10" "ypos" "53" "zpos" "-1" "wide" "480" "tall" "2" "bgcolor_override" "TanLight" } "PlayerUpgradeButton" { "ControlName" "CExButton" "fieldName" "PlayerUpgradeButton" "xpos" "15" "ypos" "10" "zpos" "-2" "wide" "70" "tall" "50" "Command" "PlayerUpgrade" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "alpha" "0" } "ClassImage" { "ControlName" "CTFClassImage" "fieldName" "ClassImage" "xpos" "30" "ypos" "15" "zpos" "-2" "wide" "40" "tall" "40" "image" "../hud/class_scoutred" "scaleImage" "1" } "SentryIcon" { "ControlName" "ImagePanel" "fieldName" "SentryIcon" "xpos" "332" "ypos" "15" "wide" "34" "tall" "34" "zpos" "-2" "scaleImage" "1" "image" "../hud/eng_build_sentry" } "ActiveTabPanel" { "ControlName" "EditablePanel" "fieldName" "ActiveTabPanel" "xpos" "88" "ypos" "8" "zpos" "-3" "wide" "74" "tall" "47" "bgcolor_override" "TanLight" } "MouseOverTabPanel" { "ControlName" "EditablePanel" "fieldName" "MouseOverTabPanel" "xpos" "14" "ypos" "9" "zpos" "-6" "wide" "72" "tall" "47" "visible" "0" "enabled" "1" } "MouseOverUpgradePanel" { "ControlName" "EditablePanel" "fieldName" "MouseOverUpgradePanel" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "157" "tall" "47" "visible" "0" "enabled" "1" "bgcolor_override" "239 128 73 255" } "InactiveTabPanel1" { "ControlName" "EditablePanel" "fieldName" "InactiveTabPanel1" "xpos" "15" "ypos" "10" "zpos" "-5" "wide" "70" "tall" "45" "bgcolor_override" "97 94 85 255" } "InactiveTabPanel2" { "ControlName" "EditablePanel" "fieldName" "InactiveTabPanel2" "xpos" "15" "ypos" "10" "zpos" "-5" "wide" "70" "tall" "45" "bgcolor_override" "97 94 85 255" } "InactiveTabPanel3" { "ControlName" "EditablePanel" "fieldName" "InactiveTabPanel3" "xpos" "15" "ypos" "10" "zpos" "-5" "wide" "70" "tall" "45" "bgcolor_override" "97 94 85 255" } "InactiveTabPanel4" { "ControlName" "EditablePanel" "fieldName" "InactiveTabPanel4" "xpos" "15" "ypos" "10" "zpos" "-5" "wide" "70" "tall" "45" "bgcolor_override" "97 94 85 255" } "InactiveTabPanel5" { "ControlName" "EditablePanel" "fieldName" "InactiveTabPanel5" "xpos" "15" "ypos" "10" "zpos" "-5" "wide" "70" "tall" "45" "bgcolor_override" "97 94 85 255" } "InactiveTabPanel6" { "ControlName" "EditablePanel" "fieldName" "InactiveTabPanel6" "xpos" "15" "ypos" "10" "zpos" "-5" "wide" "70" "tall" "45" "bgcolor_override" "97 94 85 255" } "GreyedOutLabel" { "ControlName" "CExLabel" "fieldName" "GreyedOutLabel" "font" "HudFontSmall" "labelText" "%powerup_hint%" "textAlignment" "north" "centerwrap" "1" "xpos" "190" "ypos" "95" "zpos" "2" "wide" "240" "tall" "140" } "QuickEquipButton" { "ControlName" "CExButton" "fieldName" "QuickEquipButton" "xpos" "250" "ypos" "195" "zpos" "1" "wide" "120" "tall" "17" "visible" "0" "enabled" "1" "labelText" "#TF_PVE_Quick_Equip_Bottle" "font" "HudFontSmallestBold" "textAlignment" "center" "Command" "quick_equip_bottle" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "LoadoutButton" { "ControlName" "CExButton" "fieldName" "LoadoutButton" "xpos" "250" "ypos" "215" "zpos" "1" "wide" "120" "tall" "17" "visible" "0" "enabled" "1" "labelText" "#OpenGeneralLoadout" "font" "HudFontSmallestBold" "textAlignment" "center" "Command" "open_charinfo_direct" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "UpgradeItemsDescriptionLabel" { "ControlName" "CExLabel" "fieldName" "UpgradeItemsDescriptionLabel" "font" "FontRegular9" "labelText" "%upgrade_description%" "textAlignment" "center" "centerwrap" "1" "xpos" "20" "ypos" "58" "zpos" "2" "wide" "130" "tall" "47" } "UpgradeItemsLabel" { "ControlName" "CExLabel" "fieldName" "UpgradeItemsLabel" "font" "FontRegular10" "labelText" "%upgrade_label%" "textAlignment" "center" "xpos" "20" "ypos" "105" "zpos" "2" "wide" "130" "tall" "40" "wrap" "1" } "UpgradeItemStatsLabel" { "ControlName" "CExLabel" "fieldName" "UpgradeItemStatsLabel" "font" "FontRegular8" "labelText" "" "textAlignment" "north-west" "xpos" "20" "ypos" "145" "zpos" "2" "wide" "130" "tall" "130" "wrap" "1" } "CreditsLabel" { "ControlName" "CExLabel" "fieldName" "CreditsLabel" "font" "FontBold22" "labelText" "%credits%" "textAlignment" "east" "xpos" "0" "ypos" "282" "wide" "240" "tall" "30" "fgcolor" "121 195 58 255" } "CreditsTextLabel" { "ControlName" "CExLabel" "fieldName" "CreditsTextLabel" "font" "FontRegular10" "labelText" "#TF_PVE_UpgradeAmount" "textAlignment" "west" "xpos" "245" "ypos" "282" "wide" "500" "tall" "30" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "325" "ypos" "286" "zpos" "1" "wide" "75" "tall" "22" "labelText" "#TF_PVE_UpgradeCancel" "font" "FontBold12" "textAlignment" "center" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CloseButton" { "ControlName" "CExButton" "fieldName" "CloseButton" "xpos" "405" "ypos" "286" "zpos" "1" "wide" "75" "tall" "22" "visible" "1" "enabled" "0" "labelText" "#TF_PVE_UpgradeDone" "font" "FontBold12" "textAlignment" "center" "Command" "close" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "RespecButton" { "ControlName" "CExButton" "fieldName" "RespecButton" "xpos" "20" "ypos" "286" "zpos" "1" "wide" "120" "tall" "22" "labelText" "#TF_PVE_UpgradeRespec" "font" "FontBold10" "textAlignment" "center" "Command" "respec" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } "TipPanel" { "visible" "0" "enabled" "0" } } ================================================ FILE: resource/ui/hudweaponselection.res ================================================ "resource/ui/hudweaponselection.res" { "modelpanel0" { "ControlName" "CItemModelPanel" "fieldName" "modelpanel0" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "paintborder" "1" "name_only" "1" "model_center_y" "1" "model_center_x" "1" "model_wide" "80" "model_tall" "50" "standard_text_color" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "modelpanel1" { "ControlName" "CItemModelPanel" "fieldName" "modelpanel1" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "paintborder" "1" "name_only" "1" "model_center_y" "1" "model_center_x" "1" "model_wide" "80" "model_tall" "50" "standard_text_color" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "modelpanel2" { "ControlName" "CItemModelPanel" "fieldName" "modelpanel2" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "paintborder" "1" "name_only" "1" "model_center_y" "1" "model_center_x" "1" "model_wide" "80" "model_tall" "50" "standard_text_color" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "modelpanel3" { "ControlName" "CItemModelPanel" "fieldName" "modelpanel3" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "paintborder" "1" "name_only" "1" "model_center_y" "1" "model_center_x" "1" "model_wide" "80" "model_tall" "50" "standard_text_color" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "modelpanel4" { "ControlName" "CItemModelPanel" "fieldName" "modelpanel4" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "paintborder" "1" "name_only" "1" "model_center_y" "1" "model_center_x" "1" "model_wide" "80" "model_tall" "50" "standard_text_color" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "modelpanel5" { "ControlName" "CItemModelPanel" "fieldName" "modelpanel5" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "paintborder" "1" "name_only" "1" "model_center_y" "1" "model_center_x" "1" "model_wide" "80" "model_tall" "50" "standard_text_color" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } } ================================================ FILE: resource/ui/importfiledialog.res ================================================ "ImportFileDialog.res" { "ImportFileDialog" { "ControlName" "CImportFileDialog" "fieldName" "ImportFileDialog" "xpos" "c-300" "ypos" "c-200" "wide" "600" "tall" "400" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "border" "NoBorder" } "Background" { "ControlName" "EditablePanel" "fieldName" "Background" "xpos" "0" "ypos" "0" "zpos" "-100" "wide" "600" "tall" "400" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "0 0 0 255" } "WorkshopBG" { "ControlName" "ImagePanel" "fieldName" "WorkshopBG" "xpos" "0" "ypos" "0" "zpos" "-100" "wide" "600" "tall" "300" "visible" "1" "enabled" "1" "image" "workshop_blue_top" "scaleImage" "1" } "BackgroundBottom" { "ControlName" "EditablePanel" "fieldName" "BackgroundBottom" "xpos" "0" "ypos" "355" "wide" "600" "tall" "45" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "0 0 0 255" } "Title" { "ControlName" "Label" "fieldName" "Title" "xpos" "15" "ypos" "15" "wide" "250" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" "labelText" "#TF_ImportFile_Title" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold22" } "NameLabel" { "ControlName" "Label" "fieldName" "NameLabel" "xpos" "5" "ypos" "0" "wide" "200" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_NameLabel" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "Name" { "ControlName" "TextEntry" "fieldName" "Name" "xpos" "5" "ypos" "20" "wide" "190" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "1" "maxchars" "128" "NumericInputOnly" "0" "unicode" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "paintbackgroundtype" "2" "font" "FontRegular12" } "TypeLabel" { "ControlName" "Label" "fieldName" "TypeLabel" "xpos" "210" "ypos" "0" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_TypeLabel" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "TypeComboBox" { "ControlName" "ComboBox" "fieldName" "TypeComboBox" "font" "FontRegular12" "xpos" "210" "ypos" "20" "wide" "190" "tall" "20" "autoResize" "0" "pinCorner" "0" "editable" "0" "visible" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" } "EquipRegionPanel" { "ControlName" "EditablePanel" "fieldName" "EquipRegionPanel" "xpos" "5" "ypos" "40" "wide" "190" "tall" "40" "autoResize" "0" "pinCorner" "0" "editable" "0" "visible" "1" "EquipRegionLabel" { "ControlName" "Label" "fieldName" "EquipRegionLabel" "xpos" "0" "ypos" "0" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_EquipRegionLabel" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "EquipRegionComboBox" { "ControlName" "ComboBox" "fieldName" "EquipRegionComboBox" "font" "FontRegular12" "xpos" "0" "ypos" "20" "wide" "190" "tall" "20" "autoResize" "0" "pinCorner" "0" "editable" "0" "visible" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" } } "WorkshopIDLabel" { "ControlName" "Label" "fieldName" "WorkshopIDLabel" "xpos" "205" "ypos" "0" "wide" "200" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_WorkshopIDLabel" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "WorkshopIDTextEntry" { "ControlName" "TextEntry" "fieldName" "WorkshopIDTextEntry" "xpos" "205" "ypos" "20" "wide" "190" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "1" "maxchars" "128" "NumericInputOnly" "1" "unicode" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "paintbackgroundtype" "2" "font" "FontRegular12" } "TFEnglishNameLabel" { "ControlName" "Label" "fieldName" "TFEnglishNameLabel" "xpos" "205" "ypos" "43" "wide" "200" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "TF_English Name" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "TFEnglishNameTextEntry" { "ControlName" "TextEntry" "fieldName" "TFEnglishNameTextEntry" "xpos" "205" "ypos" "63" "wide" "190" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "1" "maxchars" "128" "NumericInputOnly" "0" "unicode" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "paintbackgroundtype" "2" "font" "FontRegular12" } "PerforceCheckButton" { "ControlName" "CheckButton" "fieldName" "PerforceCheckButton" "labelText" "Perforce" "font" "FontRegular12" "textAlignment" "west" "xpos" "245" "ypos" "85" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "border" "NoBorder" } "PartnerCheckButton" { "ControlName" "CheckButton" "fieldName" "PartnerCheckButton" "labelText" "Partner" "font" "FontRegular12" "textAlignment" "west" "xpos" "325" "ypos" "85" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "border" "NoBorder" } "IconPanel" { "ControlName" "EditablePanel" "fieldName" "IconPanel" "xpos" "405" "ypos" "5" "wide" "190" "tall" "122" "visible" "1" "border" "NoBorder" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "ButtonIconClear" { "ControlName" "CExImageButton" "fieldName" "ButtonIconClear" "xpos" "173" "ypos" "2" "zpos" "2" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "ClearIcon" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "ButtonIconBrowse" { "ControlName" "CExImageButton" "fieldName" "ButtonIconBrowse" "xpos" "153" "ypos" "2" "zpos" "2" "wide" "19" "tall" "15" "autoResize" "0" "pinCorner" "3" "textinsetx" "15" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "west" "labelText" "" "command" "BrowseIcon" "image_drawcolor" "TanLight" "image_armedcolor" "170 221 183 255" "image_disabledcolor" "0 0 0 255" "paintbackground" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "3" "ypos" "1" "zpos" "1" "wide" "13" "tall" "13" "scaleImage" "1" "image" "glyph_workshop_view" } } "Icon" { "ControlName" "ImagePanel" "fieldName" "Icon" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "190" "tall" "122" } "IconLabel" { "ControlName" "Label" "fieldName" "IconLabel" "xpos" "4" "ypos" "0" "zpos" "2" "wide" "105" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_IconLabel" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } } "ClassModelsPanel" { "ControlName" "EditablePanel" "fieldName" "ClassModelsPanel" "xpos" "5" "ypos" "80" "wide" "70" "tall" "219" "visible" "1" "paintbackground" "0" "border" "NoBorder" "ClassesTitle" { "ControlName" "Label" "fieldName" "ClassModelsTitle" "xpos" "4" "ypos" "-3" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_Models" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "ClassHighlight1" { "ControlName" "Panel" "fieldName" "ClassHighlight1" "xpos" "4" "ypos" "18" "wide" "75" "tall" "20" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "TanDark" } "ClassButton1" { "ControlName" "RadioButton" "fieldName" "ButtonSelectClass1" "xpos" "4" "ypos" "15" "wide" "75" "tall" "25" "labelText" "#TF_Class_Name_Scout" "font" "FontRegular12" "defaultFgColor_override" "TanLight" } "ClassHighlight2" { "ControlName" "Panel" "fieldName" "ClassHighlight2" "xpos" "4" "ypos" "40" "wide" "75" "tall" "20" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "TanDark" } "ClassButton2" { "ControlName" "RadioButton" "fieldName" "ButtonSelectClass2" "xpos" "4" "ypos" "37" "wide" "75" "tall" "25" "labelText" "#TF_Class_Name_Sniper" "font" "FontRegular12" "defaultFgColor_override" "TanLight" } "ClassHighlight3" { "ControlName" "Panel" "fieldName" "ClassHighlight3" "xpos" "4" "ypos" "62" "wide" "75" "tall" "20" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "TanDark" } "ClassButton3" { "ControlName" "RadioButton" "fieldName" "ButtonSelectClass3" "xpos" "4" "ypos" "59" "wide" "75" "tall" "25" "labelText" "#TF_Class_Name_Soldier" "font" "FontRegular12" "defaultFgColor_override" "TanLight" } "ClassHighlight4" { "ControlName" "Panel" "fieldName" "ClassHighlight4" "xpos" "4" "ypos" "84" "wide" "75" "tall" "20" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "TanDark" } "ClassButton4" { "ControlName" "RadioButton" "fieldName" "ButtonSelectClass4" "xpos" "4" "ypos" "81" "wide" "75" "tall" "25" "labelText" "#TF_Class_Name_Demoman" "font" "FontRegular12" "defaultFgColor_override" "TanLight" } "ClassHighlight5" { "ControlName" "Panel" "fieldName" "ClassHighlight5" "xpos" "4" "ypos" "106" "wide" "75" "tall" "20" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "TanDark" } "ClassButton5" { "ControlName" "RadioButton" "fieldName" "ButtonSelectClass5" "xpos" "4" "ypos" "103" "wide" "75" "tall" "25" "labelText" "#TF_Class_Name_Medic" "font" "FontRegular12" "defaultFgColor_override" "TanLight" } "ClassHighlight6" { "ControlName" "Panel" "fieldName" "ClassHighlight6" "xpos" "4" "ypos" "128" "wide" "75" "tall" "20" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "TanDark" } "ClassButton6" { "ControlName" "RadioButton" "fieldName" "ButtonSelectClass6" "xpos" "4" "ypos" "125" "wide" "75" "tall" "25" "labelText" "#TF_Class_Name_HWGuy" "font" "FontRegular12" "defaultFgColor_override" "TanLight" } "ClassHighlight7" { "ControlName" "Panel" "fieldName" "ClassHighlight7" "xpos" "4" "ypos" "150" "wide" "75" "tall" "20" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "TanDark" } "ClassButton7" { "ControlName" "RadioButton" "fieldName" "ButtonSelectClass7" "xpos" "4" "ypos" "147" "wide" "75" "tall" "25" "labelText" "#TF_Class_Name_Pyro" "font" "FontRegular12" "defaultFgColor_override" "TanLight" } "ClassHighlight8" { "ControlName" "Panel" "fieldName" "ClassHighlight8" "xpos" "4" "ypos" "172" "wide" "75" "tall" "20" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "TanDark" } "ClassButton8" { "ControlName" "RadioButton" "fieldName" "ButtonSelectClass8" "xpos" "4" "ypos" "169" "wide" "75" "tall" "25" "labelText" "#TF_Class_Name_Spy" "font" "FontRegular12" "defaultFgColor_override" "TanLight" } "ClassHighlight9" { "ControlName" "Panel" "fieldName" "ClassHighlight9" "xpos" "4" "ypos" "194" "wide" "75" "tall" "20" "visible" "0" "PaintBackgroundType" "2" "bgcolor_override" "TanDark" } "ClassButton9" { "ControlName" "RadioButton" "fieldName" "ButtonSelectClass9" "xpos" "4" "ypos" "191" "wide" "75" "tall" "25" "labelText" "#TF_Class_Name_Engineer" "font" "FontRegular12" "defaultFgColor_override" "TanLight" } } "BodygroupsPanel" { "ControlName" "EditablePanel" "fieldName" "BodygroupsPanel" "xpos" "105" "ypos" "80" "wide" "90" "tall" "241" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "NoBorder" "BodygroupTitle" { "ControlName" "Label" "fieldName" "BodygroupTitle" "xpos" "4" "ypos" "-3" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_Bodygroups" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "Bodygroup0" { "ControlName" "CheckButton" "fieldName" "Bodygroup0" "labelText" "" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "18" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdateBodygroup" "border" "NoBorder" } "Bodygroup1" { "ControlName" "CheckButton" "fieldName" "Bodygroup1" "labelText" "" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "40" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdateBodygroup" "border" "NoBorder" } "Bodygroup2" { "ControlName" "CheckButton" "fieldName" "Bodygroup2" "labelText" "" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "62" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdateBodygroup" "border" "NoBorder" } "Bodygroup3" { "ControlName" "CheckButton" "fieldName" "Bodygroup3" "labelText" "" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "84" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdateBodygroup" "border" "NoBorder" } "Bodygroup4" { "ControlName" "CheckButton" "fieldName" "Bodygroup4" "labelText" "" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "106" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdateBodygroup" "border" "NoBorder" } "Bodygroup5" { "ControlName" "CheckButton" "fieldName" "Bodygroup5" "labelText" "" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "128" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdateBodygroup" "border" "NoBorder" } "Bodygroup6" { "ControlName" "CheckButton" "fieldName" "Bodygroup6" "labelText" "" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "150" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdateBodygroup" "border" "NoBorder" } "Bodygroup7" { "ControlName" "CheckButton" "fieldName" "Bodygroup7" "labelText" "" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "172" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdateBodygroup" "border" "NoBorder" } "Bodygroup8" { "ControlName" "CheckButton" "fieldName" "Bodygroup8" "labelText" "" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "194" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdateBodygroup" "border" "NoBorder" } "Bodygroup9" { "ControlName" "CheckButton" "fieldName" "Bodygroup9" "labelText" "" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "216" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdateBodygroup" "border" "NoBorder" } } "LODsPanel" { "ControlName" "EditablePanel" "fieldName" "LODsPanel" "xpos" "250" "ypos" "80" "wide" "150" "tall" "270" "visible" "1" "paintbackground" "0" "LOD0Panel" { "ControlName" "EditablePanel" "fieldName" "LOD0Panel" "xpos" "0" "ypos" "0" "wide" "150" "tall" "50" "visible" "1" "paintbackground" "0" "border" "NoBorder" "LOD0Label" { "ControlName" "Label" "fieldName" "LOD0Label" "xpos" "4" "ypos" "-3" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_ImportFile_LOD0" "textAlignment" "west" "font" "FontBold12" } "ButtonLOD0Clear" { "ControlName" "CExImageButton" "fieldName" "ButtonLOD0Clear" "xpos" "133" "ypos" "2" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "ClearLOD0" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "ButtonLOD0Browse" { "ControlName" "CExImageButton" "fieldName" "ButtonLOD0Browse" "xpos" "113" "ypos" "2" "wide" "19" "tall" "15" "autoResize" "0" "pinCorner" "3" "textinsetx" "15" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "west" "labelText" "" "command" "BrowseLOD0" "image_drawcolor" "TanLight" "image_armedcolor" "170 221 183 255" "image_disabledcolor" "0 0 0 255" "paintbackground" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "3" "ypos" "1" "zpos" "1" "wide" "13" "tall" "13" "scaleImage" "1" "image" "glyph_workshop_view" } } "LOD0File" { "ControlName" "Label" "fieldName" "LOD0File" "xpos" "4" "ypos" "20" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_PublishFile_NoFileSelected" "font" "FontRegular12" } "LOD0Details" { "ControlName" "Label" "fieldName" "LOD0Details" "xpos" "4" "ypos" "35" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "" "font" "FontRegular12" } } "LOD1Panel" { "ControlName" "EditablePanel" "fieldName" "LOD1Panel" "xpos" "0" "ypos" "60" "wide" "150" "tall" "50" "visible" "1" "paintbackground" "0" "border" "NoBorder" "LOD1Label" { "ControlName" "Label" "fieldName" "LOD1Label" "xpos" "4" "ypos" "-3" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_ImportFile_LOD1" "textAlignment" "west" "font" "FontBold12" "enabled" "0" } "ButtonLOD1Clear" { "ControlName" "CExImageButton" "fieldName" "ButtonLOD1Clear" "xpos" "133" "ypos" "2" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "ClearLOD1" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "ButtonLOD1Browse" { "ControlName" "CExImageButton" "fieldName" "ButtonLOD1Browse" "xpos" "113" "ypos" "2" "wide" "19" "tall" "15" "autoResize" "0" "pinCorner" "3" "textinsetx" "15" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "west" "enabled" "0" "labelText" "" "command" "BrowseLOD1" "image_drawcolor" "TanLight" "image_armedcolor" "170 221 183 255" "image_disabledcolor" "0 0 0 255" "paintbackground" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "1" "ypos" "1" "zpos" "1" "wide" "13" "tall" "13" "scaleImage" "1" "image" "glyph_workshop_view" } } "LOD1File" { "ControlName" "Label" "fieldName" "LOD1File" "xpos" "4" "ypos" "20" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_PublishFile_NoFileSelected" "font" "FontRegular12" "enabled" "0" } "LOD1Details" { "ControlName" "Label" "fieldName" "LOD1Details" "xpos" "4" "ypos" "35" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "" "font" "FontRegular12" "enabled" "0" } } "LOD2Panel" { "ControlName" "EditablePanel" "fieldName" "LOD2Panel" "xpos" "0" "ypos" "120" "wide" "150" "tall" "50" "visible" "1" "paintbackground" "0" "border" "NoBorder" "LOD2Label" { "ControlName" "Label" "fieldName" "LOD2Label" "xpos" "4" "ypos" "-3" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_ImportFile_LOD2" "textAlignment" "west" "font" "FontBold12" "enabled" "0" } "ButtonLOD2Clear" { "ControlName" "CExImageButton" "fieldName" "ButtonLOD2Clear" "xpos" "133" "ypos" "2" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "ClearLOD2" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "ButtonLOD2Browse" { "ControlName" "CExImageButton" "fieldName" "ButtonLOD2Browse" "xpos" "113" "ypos" "2" "wide" "19" "tall" "15" "autoResize" "0" "pinCorner" "3" "textinsetx" "15" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "west" "enabled" "0" "labelText" "" "command" "BrowseLOD2" "image_drawcolor" "TanLight" "image_armedcolor" "170 221 183 255" "image_disabledcolor" "0 0 0 255" "paintbackground" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "3" "ypos" "1" "zpos" "1" "wide" "13" "tall" "13" "scaleImage" "1" "image" "glyph_workshop_view" } } "LOD2File" { "ControlName" "Label" "fieldName" "LOD2File" "xpos" "4" "ypos" "20" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_PublishFile_NoFileSelected" "font" "FontRegular12" "enabled" "0" } "LOD2Details" { "ControlName" "Label" "fieldName" "LOD2Details" "xpos" "4" "ypos" "35" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "" "font" "FontRegular12" "enabled" "0" } } "ButtonEditQC" { "ControlName" "Button" "fieldName" "ButtonEditQC" "xpos" "0" "ypos" "195" "zpos" "1" "wide" "92" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_EditQC" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "EditQC" "Default" "0" "font" "FontBold12" } } "SkinsPanel" { "ControlName" "EditablePanel" "fieldName" "SkinsPanel" "xpos" "405" "ypos" "130" "wide" "190" "tall" "219" "visible" "1" "paintbackground" "0" "border" "NoBorder" "SkinsTitle" { "ControlName" "Label" "fieldName" "SkinsTitle" "xpos" "4" "ypos" "-3" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_Skins" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "SwapVMTButton" { "ControlName" "Button" "fieldName" "SwapVMTButton" "xpos" "125" "ypos" "3" "wide" "60" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_SwapVMT" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "SwapVMT" "Default" "1" "font" "FontBold12" } "SkinComboBox" { "ControlName" "ComboBox" "fieldName" "SkinComboBox" "Font" "FontRegular12" "xpos" "4" "ypos" "18" "wide" "181" "tall" "20" "autoResize" "0" "pinCorner" "0" "editable" "0" "visible" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" } "Material0Panel" { "ControlName" "EditablePanel" "fieldName" "Material0Panel" "xpos" "4" "ypos" "39" "wide" "250" "tall" "50" "visible" "0" "paintbackground" "0" "Material0Label" { "ControlName" "Label" "fieldName" "Material0Label" "xpos" "4" "ypos" "3" "wide" "240" "tall" "15" "autoResize" "0" "pinCorner" "0" "textAlignment" "west" "font" "FontBold12" } "ButtonMaterial0Edit" { "ControlName" "CExImageButton" "fieldName" "ButtonMaterial0Edit" "xpos" "162" "ypos" "3" "wide" "19" "tall" "15" "autoResize" "0" "pinCorner" "3" "textinsetx" "15" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "west" "labelText" "" "command" "EditMaterial0" "image_armedcolor" "170 221 183 255" "image_disabledcolor" "0 0 0 255" "paintbackground" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "3" "ypos" "1" "zpos" "1" "wide" "13" "tall" "13" "scaleImage" "1" "image" "glyph_workshop_edit" } } "Material0File" { "ControlName" "Label" "fieldName" "Material0File" "xpos" "4" "ypos" "18" "wide" "190" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_PublishFile_NoFileSelected" "font" "FontRegular12" } } "Material1Panel" { "ControlName" "EditablePanel" "fieldName" "Material1Panel" "xpos" "4" "ypos" "74" "wide" "250" "tall" "50" "visible" "0" "paintbackground" "0" "Material1Label" { "ControlName" "Label" "fieldName" "Material1Label" "xpos" "4" "ypos" "3" "wide" "240" "tall" "15" "autoResize" "0" "pinCorner" "0" "textAlignment" "west" "font" "FontBold12" } "ButtonMaterial1Edit" { "ControlName" "CExImageButton" "fieldName" "ButtonMaterial1Edit" "xpos" "162" "ypos" "3" "wide" "19" "tall" "15" "autoResize" "0" "pinCorner" "3" "textinsetx" "15" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "west" "labelText" "" "command" "EditMaterial1" "image_armedcolor" "170 221 183 255" "image_disabledcolor" "0 0 0 255" "paintbackground" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "3" "ypos" "1" "zpos" "1" "wide" "13" "tall" "13" "scaleImage" "1" "image" "glyph_workshop_edit" } } "Material1File" { "ControlName" "Label" "fieldName" "Material1File" "xpos" "4" "ypos" "18" "wide" "190" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_PublishFile_NoFileSelected" "font" "FontRegular12" "fillcolor" "255 0 0 255" } } "Material2Panel" { "ControlName" "EditablePanel" "fieldName" "Material2Panel" "xpos" "4" "ypos" "109" "wide" "250" "tall" "50" "visible" "0" "paintbackground" "0" "Material2Label" { "ControlName" "Label" "fieldName" "Material2Label" "xpos" "4" "ypos" "3" "wide" "240" "tall" "15" "autoResize" "0" "pinCorner" "0" "textAlignment" "west" "font" "FontBold12" } "ButtonMaterial2Edit" { "ControlName" "CExImageButton" "fieldName" "ButtonMaterial2Edit" "xpos" "162" "ypos" "3" "wide" "19" "tall" "15" "autoResize" "0" "pinCorner" "3" "textinsetx" "15" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "west" "labelText" "" "command" "EditMaterial2" "image_armedcolor" "170 221 183 255" "image_disabledcolor" "0 0 0 255" "paintbackground" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "3" "ypos" "1" "zpos" "1" "wide" "13" "tall" "13" "scaleImage" "1" "image" "glyph_workshop_edit" } } "Material2File" { "ControlName" "Label" "fieldName" "Material2File" "xpos" "4" "ypos" "18" "wide" "190" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_PublishFile_NoFileSelected" "font" "FontRegular12" } } "Material3Panel" { "ControlName" "EditablePanel" "fieldName" "Material3Panel" "xpos" "4" "ypos" "144" "wide" "250" "tall" "50" "visible" "0" "paintbackground" "0" "Material3Label" { "ControlName" "Label" "fieldName" "Material3Label" "xpos" "4" "ypos" "3" "wide" "240" "tall" "15" "autoResize" "0" "pinCorner" "0" "textAlignment" "west" "font" "FontBold12" } "ButtonMaterial3Edit" { "ControlName" "CExImageButton" "fieldName" "ButtonMaterial3Edit" "xpos" "162" "ypos" "3" "wide" "19" "tall" "15" "autoResize" "0" "pinCorner" "3" "textinsetx" "15" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "west" "labelText" "" "command" "EditMaterial3" "image_armedcolor" "170 221 183 255" "image_disabledcolor" "0 0 0 255" "paintbackground" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "3" "ypos" "1" "zpos" "1" "wide" "13" "tall" "13" "scaleImage" "1" "image" "glyph_workshop_edit" } } "Material3File" { "ControlName" "Label" "fieldName" "Material3File" "xpos" "4" "ypos" "18" "wide" "190" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_PublishFile_NoFileSelected" "font" "FontRegular12" } } "Paintable0CheckBox" { "ControlName" "CheckButton" "fieldName" "Paintable0CheckBox" "labelText" "#TF_ImportFile_Paintable0" "Font" "FontRegular12" "textAlignment" "west" "xpos" "4" "ypos" "190" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdatePaintable0" "border" "NoBorder" } "Paintable1CheckBox" { "ControlName" "CheckButton" "fieldName" "Paintable1CheckBox" "labelText" "#TF_ImportFile_Paintable1" "Font" "FontRegular12" "textAlignment" "west" "xpos" "100" "ypos" "190" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" "command" "UpdatePaintable1" "border" "NoBorder" } } "AnimationPropLabel" { "ControlName" "Label" "fieldName" "AnimationPropLabel" "xpos" "0" "ypos" "105" "wide" "150" "tall" "0" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_ImportFile_AnimationProp" "textAlignment" "west" "font" "FontBold12" } "TauntInputPanel" { "ControlName" "EditablePanel" "fieldName" "TauntInputPanel" "xpos" "95" "ypos" "80" "wide" "150" "tall" "219" "visible" "1" "enabled" "1" "paintbackground" "0" "AnimationSourcePanel" { "ControlName" "EditablePanel" "fieldName" "AnimationSourcePanel" "xpos" "0" "ypos" "0" "wide" "150" "tall" "50" "visible" "1" "paintbackground" "0" "border" "NoBorder" "AnimationSourceLabel" { "ControlName" "Label" "fieldName" "AnimationSourceLabel" "xpos" "4" "ypos" "-3" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_ImportFile_AnimationSource" "textAlignment" "west" "font" "FontBold12" } "ButtonAnimationSourceClear" { "ControlName" "CExImageButton" "fieldName" "ButtonAnimationSourceClear" "xpos" "133" "ypos" "2" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "ClearAnimationSource" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "ButtonAnimationSourceBrowse" { "ControlName" "CExImageButton" "fieldName" "ButtonAnimationSourceBrowse" "xpos" "113" "ypos" "2" "wide" "19" "tall" "15" "autoResize" "0" "pinCorner" "3" "textinsetx" "15" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "west" "labelText" "" "command" "BrowseAnimationSource" "image_drawcolor" "TanLight" "image_armedcolor" "170 221 183 255" "image_disabledcolor" "0 0 0 255" "paintbackground" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "3" "ypos" "1" "zpos" "1" "wide" "13" "tall" "13" "scaleImage" "1" "image" "glyph_workshop_view" } } "AnimationSourceFile" { "ControlName" "Label" "fieldName" "AnimationSourceFile" "xpos" "4" "ypos" "20" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_PublishFile_NoFileSelected" "font" "FontRegular12" } "AnimationSourceDetails" { "ControlName" "Label" "fieldName" "AnimationSourceDetails" "xpos" "4" "ypos" "35" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "" "font" "FontRegular12" } } "AnimationVCDPanel" { "ControlName" "EditablePanel" "fieldName" "AnimationVCDPanel" "xpos" "0" "ypos" "60" "wide" "150" "tall" "50" "visible" "1" "paintbackground" "0" "border" "NoBorder" "AnimationVCDLabel" { "ControlName" "Label" "fieldName" "AnimationVCDLabel" "xpos" "4" "ypos" "-3" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_ImportFile_AnimationVCD" "textAlignment" "west" "font" "FontBold12" } "ButtonAnimationVCDClear" { "ControlName" "CExImageButton" "fieldName" "ButtonAnimationVCDClear" "xpos" "133" "ypos" "2" "wide" "15" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "ClearAnimationVCD" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "ButtonAnimationVCDBrowse" { "ControlName" "CExImageButton" "fieldName" "ButtonAnimationVCDBrowse" "xpos" "113" "ypos" "2" "wide" "19" "tall" "15" "autoResize" "0" "pinCorner" "3" "textinsetx" "15" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "west" "labelText" "" "command" "BrowseAnimationVCD" "image_drawcolor" "TanLight" "image_armedcolor" "170 221 183 255" "image_disabledcolor" "0 0 0 255" "paintbackground" "0" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "3" "ypos" "1" "zpos" "1" "wide" "13" "tall" "13" "scaleImage" "1" "image" "glyph_workshop_view" } } "AnimationVCDFile" { "ControlName" "Label" "fieldName" "AnimationVCDFile" "xpos" "4" "ypos" "20" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_PublishFile_NoFileSelected" "font" "FontRegular12" } } "AnimDurationLabel" { "ControlName" "Label" "fieldName" "AnimDurationLabel" "xpos" "0" "ypos" "120" "wide" "120" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "#TF_ImportFile_AnimationDuration" "font" "FontRegular12" } "AnimationLoopCheckButton" { "ControlName" "CheckButton" "fieldName" "AnimationLoopCheckButton" "labelText" "Loop" "Font" "FontRegular12" "textAlignment" "west" "xpos" "0" "ypos" "140" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "command" "UpdateAnimationLoopable" "border" "NoBorder" } "AnimationLoopStartLabel" { "ControlName" "Label" "fieldName" "AnimationLoopStartLabel" "xpos" "50" "ypos" "165" "wide" "60" "tall" "15" "autoResize" "0" "pinCorner" "0" "labelText" "Start Time:" "font" "FontRegular12" "proportionaltoparent" "1" } "AnimationLoopStartTextEntry" { "ControlName" "TextEntry" "fieldName" "AnimationLoopStartTextEntry" "xpos" "4" "ypos" "165" "wide" "40" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "0" "tabPosition" "1" "textHidden" "0" "editable" "1" "maxchars" "128" "NumericInputOnly" "1" "unicode" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "paintbackgroundtype" "2" "proportionaltoparent" "1" "font" "FontRegular12" } "ButtonEditQCI" { "ControlName" "Button" "fieldName" "ButtonEditQCI" "xpos" "0" "ypos" "195" "zpos" "1" "wide" "92" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_EditQCI" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "EditQCI" "Default" "0" "font" "FontBold12" } } "ButtonLoad" { "ControlName" "CExImageButton" "fieldName" "ButtonLoad" "xpos" "120" "ypos" "365" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_Browse" "font" "FontBold12" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "command" "Load" } "ButtonClose" { "ControlName" "CExButton" "fieldName" "ButtonClose" "xpos" "10" "ypos" "365" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Close" "font" "FontBold12" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "Close" } "ButtonPreview" { "ControlName" "Button" "fieldName" "ButtonPreview" "xpos" "270" "ypos" "365" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_Preview" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "BuildPreview" "Default" "1" "font" "FontBold12" } "ButtonVerify" { "ControlName" "Button" "fieldName" "ButtonVerify" "xpos" "380" "ypos" "365" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_Verify" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "BuildVerify" "Default" "1" "font" "FontBold12" } "ButtonBuild" { "ControlName" "Button" "fieldName" "ButtonBuild" "xpos" "490" "ypos" "365" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ImportFile_Build" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "BuildFinal" "Default" "1" "font" "FontBold12" } "BetaNotice" { "ControlName" "ImagePanel" "fieldName" "BetaNotice" "xpos" "c100" "ypos" "c-240" "zpos" "1" "wide" "128" "tall" "128" "scaleImage" "1" "image" "beta" "visible" "0" } "classmodelpanel" { "ControlName" "CTFPlayerModelPanel" "fieldName" "classmodelpanel" "xpos" "c-290" "ypos" "c-182" "zpos" "1" "wide" "340" "tall" "313" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "render_texture" "0" "fov" "40" "allow_manip" "1" "paintbackground" "1" "paintbackgroundenabled" "1" "bgcolor_override" "255 255 255 0" "model" { "force_pos" "1" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "190" "origin_y" "0" "origin_z" "-36" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } } } ================================================ FILE: resource/ui/intromenu.res ================================================ "resource/ui/intromenu.res" { "intro" { "ControlName" "CTFIntroMenu" "fieldName" "intro" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "paintbackground" "0" } "MainBG" { "ControlName" "ImagePanel" "fieldName" "MainBG" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "0 0 0 200" } "titlelabel" { "ControlName" "CExLabel" "fieldName" "titlelabel" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "f0" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "textAlignment" "center" "font" "FontBold37" "fgcolor" "TanLight" } "Skip" [$WIN32] { "ControlName" "CExButton" "fieldName" "Skip" "xpos" "r225" "ypos" "r50" "zpos" "2" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "#Button_SkipIntro" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "skip" "default" "1" "font" "FontBold22" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Continue" [$WIN32] { "ControlName" "CExButton" "fieldName" "Continue" "xpos" "r225" "ypos" "r50" "zpos" "2" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "0" "enabled" "1" "labelText" "#TF_Continue" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "skip" "default" "1" "font" "FontBold22" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Back" [$WIN32] { "ControlName" "CExButton" "fieldName" "Back" "xpos" "30" "ypos" "r50" "zpos" "2" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "#TF_Back" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "back" "font" "FontBold22" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ReplayVideo" [$WIN32] { "ControlName" "CExButton" "fieldName" "ReplayVideo" "xpos" "30" "ypos" "r50" "zpos" "2" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "0" "enabled" "1" "labelText" "#TF_ReplayIntro" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "replayVideo" "default" "1" "font" "FontBold22" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "VideoPanel" { "ControlName" "CTFVideoPanel" "fieldName" "VideoPanel" "xpos" "c-200" "ypos" "50" "zpos" "3" "wide" "400" "tall" "300" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "start_delay" "0" "end_delay" "0" } "VideoCaption" { "ControlName" "CExLabel" "fieldName" "VideoCaption" "xpos" "c-200" "ypos" "c110" "zpos" "6" "wide" "400" "tall" "80" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" " " "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "IntroMenuCaption" "fgcolor" "TanLight" "wrap" "1" "textinsetx" "20" "bgcolor_override" "0 0 0 255" } "MenuBG" { "ControlName" "CTFImagePanel" "fieldName" "MenuBG" "xpos" "9999" } "ShadedBar" { "ControlName" "ImagePanel" "fieldName" "ShadedBar" "xpos" "9999" } "teambutton0SC" { "ControlName" "CExButton" "fieldName" "teambutton0SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&E" "command" "skip" } "teambutton1SC" { "ControlName" "CExButton" "fieldName" "teambutton1SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&Q" "command" "back" } } ================================================ FILE: resource/ui/intromenu_sc.res ================================================ #base "intromenu.res" "resource/ui/intromenu_sc.res" { "Footer" [$X360] { "ControlName" "CTFFooter" "fieldName" "Footer" "zpos" "6" "tall" "80" "button_separator" "10" "button_separator_lodef" "5" "buttongap" "50" "textadjust" "3" "buttonoffsety" "20" "buttonoffsety_hidef" "0" "buttonoffsety_lodef" "18" "fonttext" "MatchmakingDialogMenuLarge" "fonttext_lodef" "MatchmakingDialogMenuSmall" "fgcolor" "HudOffWhite" "button" { "name" "intro" "text" "#GameUI_Back" "icon" "#GameUI_Icons_B_BUTTON" } "button" { "name" "continue" "text" "#Button_SkipIntro_360" "icon" "#GameUI_Icons_A_BUTTON" } } } ================================================ FILE: resource/ui/itemoptionspanel.res ================================================ "resource/ui/itemoptionspanel.res" { "PanelListPanel" { "ControlName" "CPanelListPanel" "fieldName" "PanelListPanel" "xpos" "0" "ypos" "0" "wide" "f-19" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "proportionalToParent" "1" "autohide_scrollbar" "1" "bgcolor_override" "0 0 0 0" "HatUseHeadCheckButton" { "ControlName" "CheckButton" "fieldName" "HatUseHeadCheckButton" "xpos" "0" "ypos" "0" "wide" "140" "tall" "20" "autoResize" "0" "pinCorner" "0" "RoundedCorners" "15" "pin_corner_to_sibling" "0" "pin_to_sibling_corner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#GameUI_ParticleHatUseHead" "textAlignment" "west" "dulltext" "0" "brighttext" "1" "wrap" "0" "centerwrap" "0" "textinsetx" "6" "textinsety" "0" "auto_wide_tocontents" "0" "use_proportional_insets" "0" "Default" "0" "Command" "particle_use_head_clicked" } "HatParticleSlider" { "ControlName" "CCvarSlider" "fieldName" "HatParticleSlider" "xpos" "0" "ypos" "0" "wide" "140" "tall" "14" "autoResize" "0" "RoundedCorners" "15" "visible" "0" "enabled" "1" "tabPosition" "0" "fgcolor_override" "TanLight" } "SetStyleButton" { "ControlName" "CExButton" "fieldName" "SetStyleButton" "xpos" "0" "ypos" "0" "wide" "140" "tall" "14" "autoResize" "0" "pinCorner" "3" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Item_SelectStyle" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "set_style" } } } ================================================ FILE: resource/ui/itemquickswitch.res ================================================ "resource/ui/itemquickswitch.res" { "ItemQuickSwitchPanel" { "ControlName" "EditablePanel" "fieldName" "ItemQuickSwitchPanel" "xpos" "c-135" "ypos" "360" "wide" "270" "tall" "115" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "2" "bgcolor_override" "DarkGrey" "itempanel_xpos" "0" "itempanel_ydelta" "0" "itemskv" { "wide" "205" "tall" "35" "bgcolor_override" "Black" "PaintBackgroundType" "0" "paintbackground" "0" "paintborder" "0" "text_forcesize" "2" "model_xpos" "0" "model_ypos" "0" "model_wide" "58" "model_tall" "34" "text_center" "1" "text_xpos" "55" "text_wide" "135" "name_only" "1" "noitem_textcolor" "TextColor" } } "CaratLabel" { "ControlName" "CExLabel" "fieldName" "CaratLabel" "xpos" "9999" } "ClassLabel" { "ControlName" "CExLabel" "fieldName" "ClassLabel" "xpos" "9999" } "ItemSlotLabel" { "ControlName" "CExLabel" "fieldName" "ItemSlotLabel" "xpos" "9999" } "TopLine" { "ControlName" "ImagePanel" "fieldName" "TopLine" "xpos" "5" "ypos" "20" "zpos" "2" "wide" "265" "tall" "10" "visible" "0" "enabled" "0" "image" "loadout_dotted_line" "tileImage" "1" "tileVertically" "0" } "itemcontainerscroller" { "ControlName" "EditablePanel" "fieldName" "itemcontainerscroller" "xpos" "5" "ypos" "5" "wide" "230" "tall" "105" "PaintBackgroundType" "0" "fgcolor_override" "TanLight" "bgcolor_override" "200 187 161 0" "autohide_buttons" "1" } "itemcontainer" { "ControlName" "EditablePanel" "fieldName" "itemcontainer" "xpos" "0" "ypos" "0" "wide" "230" "tall" "115" "PaintBackgroundType" "2" "bgcolor_override" "200 187 161 0" "CurrentlyEquippedBackground" { "ControlName" "CExLabel" "fieldName" "CurrentlyEquippedBackground" "font" "ItemFontNameSmallest" "labelText" "#QuickSwitchEquipped" "textAlignment" "north-west" "xpos" "3" "ypos" "2" "zpos" "100" "wide" "200" "tall" "35" "visible" "1" "PaintBackgroundType" "2" "fgcolor_override" "LightRed" "bgcolor_override" "Transparent" } } "NoItemsLabel" { "ControlName" "CExLabel" "fieldName" "NoItemsLabel" "xpos" "9999" } "loadout_preset_panel" { "ControlName" "CLoadoutPresetPanel" "FieldName" "loadout_preset_panel" "xpos" "240" "ypos" "5" "zpos" "20" "wide" "25" "tall" "115" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "paintbackground" "0" } } ================================================ FILE: resource/ui/itemrenameconfirmationdialog.res ================================================ "resource/ui/itemrenameconfirmationdialog.res" { "ItemRenameConfirmationDialog" { "fieldName" "ItemRenameConfirmationDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "105" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "100" "ypos" "10" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "200" "tall" "70" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "90" "tall" "70" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" // Hide it off the bottom "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "ConfirmLabel" { "ControlName" "CExLabel" "fieldName" "ConfirmLabel" "font" "HudFontSmall" "labelText" "#CraftAskNameConfirm" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "GivenName" { "ControlName" "CExLabel" "fieldName" "GivenName" "font" "FontBold14" "labelText" "%name%" "textAlignment" "center" "xpos" "20" "ypos" "100" "zpos" "0" "wide" "360" "tall" "40" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" "fgcolor_override" "NeutralWhite" } "WarningLabel" { "ControlName" "CExLabel" "fieldName" "WarningLabel" "font" "HudFontSmall" "labelText" "#CraftAskNameWarning" "textAlignment" "center" "xpos" "0" "ypos" "170" "zpos" "0" "wide" "400" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "50" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "220" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CraftNameConfirm" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/itemrenamedialog.res ================================================ "resource/ui/itemrenamedialog.res" { "ItemRenameDialog" { "fieldName" "ItemRenameDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "75" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "paintborder" "1" "PaintBackgroundType" "2" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "100" "ypos" "10" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "84" "tall" "64" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "OldItemNameBG" { "ControlName" "CExLabel" "fieldName" "OldItemNameBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "90" "zpos" "-1" "wide" "380" "tall" "32" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "bgcolor_override" "Black" "paintbackgroundtype" "0" } "OldItemNameDescLabel" { "ControlName" "CExLabel" "fieldName" "OldItemNameDescLabel" "font" "FontBold12" "labelText" "#ToolItemRenameOldItemName" "textAlignment" "west" "xpos" "20" "ypos" "90" "zpos" "0" "wide" "185" "tall" "35" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "paintbackground" "0" } "OldItemNameLabel" { "ControlName" "CExLabel" "fieldName" "OldItemNameLabel" "font" "FontBold12" "labelText" "%oldname%" "textAlignment" "center" "xpos" "145" "ypos" "94" "wide" "240" "tall" "24" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "paintbackground" "0" } "NewItemNameBG" { "ControlName" "CExLabel" "fieldName" "NewItemNameBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "130" "zpos" "-1" "wide" "380" "tall" "32" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "bgcolor_override" "Black" "paintbackgroundtype" "0" } "NewItemNameDescLabel" { "ControlName" "CExLabel" "fieldName" "NewItemNameDescLabel" "font" "FontBold12" "labelText" "#ToolItemRenameNewItemName" "textAlignment" "west" "xpos" "20" "ypos" "130" "zpos" "0" "wide" "185" "tall" "35" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "paintbackground" "0" } "CustomNameEntry" { "ControlName" "TextEntry" "fieldName" "CustomNameEntry" "xpos" "145" "ypos" "134" "wide" "240" "tall" "24" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "textHidden" "0" "editable" "1" "maxchars" "32" "NumericInputOnly" "0" "unicode" "0" "wrap" "0" "fgcolor_override" "TanLight" "bgcolor_override" "Grey" "labelText" "" "font" "FontRegular12" "textAlignment" "west" "paintbackgroundtype" "0" } "WarningLabel" { "ControlName" "CExLabel" "fieldName" "WarningLabel" "font" "FontRegular12" "labelText" "#ToolConfirmWarning" "textAlignment" "center" "xpos" "0" "ypos" "170" "zpos" "0" "wide" "400" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "50" "ypos" "200" "zpos" "1" "wide" "130" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "220" "ypos" "200" "zpos" "1" "wide" "130" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#CraftNameOk" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "apply" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/itemrenameinvaliddialog.res ================================================ "resource/ui/itemrenameinvaliddialog.res" { "ItemRenameConfirmationDialog" { "fieldName" "ItemRenameConfirmationDialog" "visible" "1" "enabled" "1" "xpos" "c-200" "ypos" "105" "wide" "400" "tall" "240" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "0" "settitlebarvisible" "0" "border" "WhiteBorder" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "dynamic" "textAlignment" "center" "xpos" "100" "ypos" "10" "zpos" "0" "wide" "200" "tall" "60" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ToolBG" { "ControlName" "CExLabel" "fieldName" "ToolBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "10" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_SelfMade" } "tool_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "tool_modelpanel" "xpos" "10" "ypos" "10" "zpos" "1" "wide" "200" "tall" "70" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "SubjectBG" { "ControlName" "CExLabel" "fieldName" "SubjectBG" "font" "HudFontSmallBold" "labelText" "" "textAlignment" "east" "xpos" "300" "ypos" "10" "zpos" "-1" "wide" "84" "tall" "64" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "border" "BackpackItemBorder_Vintage" } "subject_modelpanel" { "ControlName" "CItemModelPanel" "fieldName" "subject_modelpanel" "xpos" "300" "ypos" "10" "zpos" "1" "wide" "90" "tall" "70" "visible" "1" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "0" "model_xpos" "2" "model_ypos" "5" "model_wide" "80" "model_tall" "54" "text_ypos" "100" "text_center" "1" "name_only" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } } "ConfirmLabel" { "ControlName" "CExLabel" "fieldName" "ConfirmLabel" "font" "FontRegular15" "labelText" "#CraftInvalidName" "textAlignment" "center" "xpos" "20" "ypos" "80" "zpos" "0" "wide" "360" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "GivenName" { "ControlName" "CExLabel" "fieldName" "GivenName" "font" "FontBold14" "labelText" "%name%" "textAlignment" "center" "xpos" "20" "ypos" "100" "zpos" "0" "wide" "360" "tall" "32" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "NeutralWhite" } "WarningLabel" { "ControlName" "CExLabel" "fieldName" "WarningLabel" "font" "FontRegular15" "labelText" "#CraftInvalidNameDetail" "textAlignment" "center" "xpos" "0" "ypos" "170" "zpos" "0" "wide" "400" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "BackFromInvalidButton" { "ControlName" "CExButton" "fieldName" "BackFromInvalidButton" "xpos" "135" "ypos" "200" "zpos" "1" "wide" "130" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_OK" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "backfrominvalid" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/itemselectionpanel.res ================================================ "resource/ui/itemselectionpanel.res" { "ItemSelectionPanel" { "ControlName" "EditablePanel" "fieldName" "ItemSelectionPanel" "xpos" "0" "ypos" "0" "zpos" "500" "wide" "f0" "tall" "400" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "bgcolor_override" "DarkGrey" "item_ypos" "60" "item_ydelta" "80" "item_backpack_offcenter_x" "-288" "item_backpack_xdelta" "4" "item_backpack_ydelta" "3" "modelpanels_selection_kv" { "wide" "95" "tall" "70" "model_ypos" "5" "model_wide" "82" "model_tall" "55" "model_center_x" "1" "text_ypos" "0" "text_forcesize" "2" "text_center" "0" "text_yoffset" "2" "name_only" "1" "inset_eq_y" "56" "inset_eq_x" "56" "deferred_description" "1" "deferred_icon" "1" } "modelpanels_kv" { "ControlName" "CItemModelPanel" "xpos" "c-70" "ypos" "270" "wide" "54" "tall" "42" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "model_xpos" "2" "model_ypos" "5" "model_wide" "50" "model_tall" "35" "text_ypos" "60" "text_center" "1" "name_only" "1" "inset_eq_x" "4" "inset_eq_y" "2" "deferred_description" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "inventory_image_type" "1" "allow_rot" "0" } "use_item_sounds" "1" } "duplicatelabels_kv" { "font" "FontRegular8" "textAlignment" "center" "wide" "20" "tall" "15" "zpos" "1" "autoResize" "0" "pinCorner" "0" "enabled" "1" "fgcolor" "153 204 255 255" } } "CaratLabel" { "ControlName" "CExLabel" "fieldName" "CaratLabel" "xpos" "9999" } "ClassLabel" { "ControlName" "CExLabel" "fieldName" "ClassLabel" "font" "FontBold37" "labelText" "#ClassBeingEquipped" "textAlignment" "center" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "f0" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "NameFilterLabel" { "ControlName" "CExLabel" "fieldName" "NameFilterLabel" "font" "FontRegular14" "labelText" "#Store_NameFilterLabel" "textAlignment" "west" "xpos" "c-290" "ypos" "300" "zpos" "1" "wide" "90" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } "NameFilterTextEntry" { "ControlName" "TextEntry" "fieldName" "NameFilterTextEntry" "font" "FontRegular10" "xpos" "c-290" "ypos" "320" "zpos" "2" "wide" "220" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "1" "unicode" "1" "fgcolor_override" "TanLight" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "2" } "TopLine" { "ControlName" "ImagePanel" "fieldName" "TopLine" "xpos" "9999" } "BottomLine" { "ControlName" "ImagePanel" "fieldName" "BottomLine" "xpos" "9999" } "ItemSlotLabel" { "ControlName" "CExLabel" "fieldName" "ItemSlotLabel" "font" "HudFontMedium" "labelText" "#LoadoutSlot_Primary" "textAlignment" "west" "xpos" "c-55" "ypos" "15" "zpos" "1" "wide" "375" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" } "NoItemsLabel" { "ControlName" "CExLabel" "fieldName" "NoItemsLabel" "font" "FontBold14" "labelText" "#NoItemsToEquip" "textAlignment" "center" "xpos" "c-300" "ypos" "150" "zpos" "10" "wide" "600" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "fgcolor_override" "LightRed" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "100" "ypos" "320" "zpos" "2" "wide" "150" "tall" "30" "autoResize" "0" "pinCorner" "2" "visible" "0" "enabled" "0" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "vguicancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OnlyAllowUniqueQuality" { "ControlName" "CheckButton" "fieldName" "OnlyAllowUniqueQuality" "labelText" "#OnlyAllowUniqueQuality" "font" "FontRegular14" "textAlignment" "east" "xpos" "c-40" "ypos" "290" "zpos" "1" "wide" "300" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "dulltext" "0" "brighttext" "0" } "ShowBackpack" { "ControlName" "CExButton" "fieldName" "ShowBackpack" "xpos" "c-55" "ypos" "320" "zpos" "20" "wide" "220" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Selection_ShowBackpack" "font" "FontBold16" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "show_backpack" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ShowSelection" { "ControlName" "CExButton" "fieldName" "ShowSelection" "xpos" "c-55" "ypos" "320" "zpos" "20" "wide" "220" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Selection_ShowSelection" "font" "FontBold16" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "show_selection" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PrevPageButton" { "ControlName" "CExButton" "fieldName" "PrevPageButton" "xpos" "c175" "ypos" "320" "zpos" "1" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&A" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "prevpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CurPageLabel" { "ControlName" "CExLabel" "fieldName" "CurPageLabel" "font" "FontBold16" "labelText" "%backpackpage%" "textAlignment" "center" "xpos" "c210" "ypos" "320" "zpos" "1" "wide" "50" "tall" "30" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "NextPageButton" { "ControlName" "CExButton" "fieldName" "NextPageButton" "xpos" "c265" "ypos" "320" "zpos" "1" "wide" "30" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&D" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "TextColor" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "TextColor" "centerwrap" "1" } } } ================================================ FILE: resource/ui/loadoutpresetpanel.res ================================================ "resource/ui/loadoutpresetpanel.res" { "loadout_preset_panel" { "ControlName" "CLoadoutPresetPanel" "fieldName" "loadout_preset_panel" "presetbutton_kv" { "zpos" "20" "wide" "25" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "font" "HudFontMediumSmallBold" "textAlignment" "center" "textinsetx" "0" "dulltext" "0" "brighttext" "0" "Command" "" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "centerwrap" "1" } } } ================================================ FILE: resource/ui/mainmenuoverride.res ================================================ #base "../preload.res" #base "../links.res" #base "customizations/#customization_menu/hud_customization.res" #base "vguipreload.res" "resource/ui/mainmenuoverride.res" { "MainMenuOverride" { "fieldName" "MainMenuOverride" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "480" "update_url" "http://store.steampowered.com/news/?filter=updates&appids=440" "blog_url" "http://www.teamfortress.com/" "button_x_offset" "-285" "button_y" "120" "button_y_delta" "5" "button_kv" { "xpos" "0" "ypos" "150" "wide" "250" "tall" "26" "visible" "1" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "250" "tall" "26" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "textinsetx" "25" "use_proportional_insets" "1" "font" "FontRegular12" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "MainMenuButtonDefault" "border_armed" "MainMenuButtonArmed" "paintbackground" "0" } } "SaxxySettings" { "xpos" "0" "ypos" "0" "zpos" "-101" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "flashbounds_x" "50" "flashbounds_y" "65" "flashbounds_w" "250" "flashbounds_h" "120" "flashstartsize_min" "8" "flashstartsize_max" "12" "flash_maxscale" "4" "flash_lifelength_min" ".1" "flash_lifelength_max" ".2" "curtain_anim_duration" "4.0" "curtain_open_time" "2.8" "flash_start_time" "4.0" "initial_freakout_duration" "15.0" "clap_sound_duration" "10.0" "CameraFlashSettings" { "visible" "1" "enabled" "1" "tileImage" "0" "scaleImage" "1" "zpos" "9" } } } "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "c-70" "ypos" "270" "zpos" "100" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "Transparent" "noitem_textcolor" "117 107 94 255" "PaintBackgroundType" "2" "paintborder" "1" "border" "MainMenuBGBorder" "text_ypos" "20" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "117 107 94 255" "centerwrap" "1" } } "Background" { "ControlName" "ScalableImagePanel" "fieldName" "Background" "xpos" "cs-0.5" "ypos" "0" "zpos" "-200" "wide" "o1.6" "tall" "f0" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" "proportionaltoparent" "1" "if_wider" { "wide" "f0" "tall" "o0.628" } "if_taller" { "wide" "o1.6" "tall" "f0" } "if_halloween_0" { "image" "../console/title_team_halloween2011_widescreen" } "if_halloween_1" { "image" "../console/title_team_halloween2012_widescreen" } "if_halloween_2" { "image" "../console/title_team_halloween2013_widescreen" } "if_halloween_3" { "image" "../console/title_team_halloween2014_widescreen" } "if_halloween_4" { "image" "../console/title_team_halloween2015_widescreen" } "if_halloween_5" { "image" "../console/title_scream_fortress_2017_widescreen" } "if_fullmoon" { "image" "../console/title_fullmoon_widescreen" } "if_christmas_0" { "image" "../console/background_xmas2020_widescreen" } "if_christmas_1" { "image" "../console/background_xmas2023_widescreen" } } "TFLogoImage" { "ControlName" "ImagePanel" "fieldName" "TFLogoImage" "xpos" "80" "ypos" "65" "wide" "256" "tall" "64" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/main_menu_logo" "scaleImage" "1" "mouseinputenabled" "0" } "TFCharacterImage" { "ControlName" "ImagePanel" "fieldName" "TFCharacterImage" "xpos" "c-250" "ypos" "-80" "zpos" "-99" "wide" "600" "tall" "600" "visible" "1" "enabled" "1" "scaleImage" "1" } "RankModelPanel" { "ControlName" "CPvPRankPanel" "fieldName" "RankModelPanel" "xpos" "0" "ypos" "5" "zpos" "0" "wide" "120" "tall" "60" "visible" "0" "proportionaltoparent" "1" "mouseinputenabled" "1" "matchgroup" "MatchGroup_Casual_12v12" "show_progress" "0" "pin_to_sibling" "BGPanel1" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "CycleRankTypeButton" { "ControlName" "CExImageButton" "fieldName" "CycleRankTypeButton" "xpos" "-2" "ypos" "0" "wide" "20" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "v" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "actionsignallevel" "1" "command" "open_rank_type_menu" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "TanDark" "depressedFgColor_override" "TanLight" "pin_to_sibling" "BGPanel1" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "RankTooltipPanel" { "ControlName" "ImagePanel" "fieldName" "RankTooltipPanel" "xpos" "c-285" "ypos" "99" "zpos" "-1" "wide" "0" "tall" "8" "visible" "1" "proportionaltoparent" "1" "mouseinputenabled" "1" "image" "info" "scaleImage" "1" "alpha" "75" } "RankPanel" { "ControlName" "CPvPRankPanel" "fieldName" "RankPanel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "170" "tall" "50" "visible" "1" "proportionaltoparent" "1" "mouseinputenabled" "0" "matchgroup" "MatchGroup_Casual_12v12" "xp_source_notification_center_x" "350" "show_model" "0" "pin_to_sibling" "BGPanel1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "NoGCMessage" { "ControlName" "Label" "fieldName" "NoGCMessage" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "200" "tall" "50" "visible" "1" "wrap" "1" "labelText" "#TF_MM_NoGC_Rank" "font" "ItemFontNameSmall" "textAlignment" "west" "textinsetx" "10" "proportionaltoparent" "1" "mouseinputenabled" "0" "use_proportional_insets" "1" "pin_to_sibling" "BGPanel1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "NoGCImage" { "ControlName" "ImagePanel" "fieldName" "NoGCImage" "xpos" "5" "ypos" "-3" "zpos" "5" "wide" "45" "tall" "45" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/nogc" "scaleImage" "1" "proportionaltoparent" "1" "pin_to_sibling" "NoGCMessage" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_BOTTOMRIGHT" } "RankBorder" { "ControlName" "EditablePanel" "fieldName" "RankBorder" "xpos" "40" "ypos" "140" "zpos" "-55" "wide" "260" "tall" "130" "visible" "0" "PaintBackgroundType" "2" "border" "MainMenuBGBorder" "proportionaltoparent" "1" } "TooltipPanel" { "ControlName" "EditablePanel" "fieldName" "TooltipPanel" "xpos" "0" "ypos" "0" "zpos" "10000" "wide" "150" "tall" "50" "visible" "0" "PaintBackgroundType" "2" "border" "PanelBorder" "TipSubLabel" { "ControlName" "ImagePanel" "fieldName" "TipSubLabel" "font" "HudFontSmall" "labelText" "%tipsubtext%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "250" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "DarkGrey" "wrap" "1" } "TipLabel" { "ControlName" "CExLabel" "fieldName" "TipLabel" "font" "FontBold14" "labelText" "%tiptext%" "textAlignment" "center" "xpos" "4" "ypos" "-5" "zpos" "3" "wide" "140" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "auto_wide_tocontents" "1" } } "Notifications_ShowButtonPanel" { "ControlName" "EditablePanel" "fieldName" "Notifications_ShowButtonPanel" "xpos" "-10" "ypos" "5" "zpos" "0" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "Transparent" "pin_to_sibling" "BGPanel5" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" "Notifications_CountLabel" { "ControlName" "CExLabel" "fieldName" "Notifications_CountLabel" "font" "FontRegular10" "labelText" "%noticount%" "textAlignment" "center" "xpos" "11" "ypos" "-2" "zpos" "4" "wide" "16" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" } "Notifications_ShowButtonPanel_SB" { "ControlName" "CExImageButton" "fieldName" "Notifications_ShowButtonPanel_SB" "xpos" "-1" "ypos" "0" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "k" "font" "SmallIcons" "Command" "noti_show" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "255 190 25 255" "armedFgColor_override" "202 153 27 255" } } "ReloadHUDButton" { "ControlName" "EditablePanel" "fieldName" "ReloadHUDButton" "xpos" "-9" "ypos" "0" "zpos" "1" "wide" "20" "tall" "20" "visible" "1" "pin_to_sibling" "BGPanel5" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "112 176 74 255" } } "ShowToolsButton" { "ControlName" "EditablePanel" "fieldName" "ShowToolsButton" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "20" "tall" "20" "visible" "1" "pin_to_sibling" "ReloadHUDButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "77 116 85 255" } } "MOTD_ShowButtonPanel" { "ControlName" "EditablePanel" "fieldName" "MOTD_ShowButtonPanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "20" "tall" "20" "visible" "1" "pin_to_sibling" "ShowToolsButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "71 98 145 255" } } "QuestLogButton" { "ControlName" "EditablePanel" "fieldName" "QuestLogButton" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "pin_to_sibling" "MOTD_ShowButtonPanel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "207 106 50 255" } } "HomeServerButton" { "ControlName" "EditablePanel" "fieldName" "HomeServerButton" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "20" "tall" "20" "visible" "1" "pin_to_sibling" "QuestLogButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "134 80 172 255" } } "MOTD_Panel" { "ControlName" "EditablePanel" "fieldName" "MOTD_Panel" "xpos" "r345" "ypos" "100" "zpos" "100" "wide" "300" "tall" "350" "visible" "0" "paintbackground" "1" "paintborder" "0" "bgcolor_override" "DarkGrey" "PaintBackgroundType" "2" "MOTD_HeaderContainer" { "ControlName" "EditablePanel" "fieldName" "MOTD_HeaderContainer" "xpos" "0" "ypos" "0" "wide" "300" "tall" "22" "visible" "1" "bgcolor_override" "71 98 145 255" "MOTD_HeaderLabel" { "ControlName" "Label" "fieldName" "MOTD_HeaderLabel" "font" "FontBold16" "textAlignment" "center" "xpos" "0" "ypos" "0" "wide" "300" "tall" "24" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "fgcolor_override" "TanLight" "labelText" "%motdheader%" } } "MOTD_CloseButton" { "ControlName" "CExImageButton" "fieldName" "MOTD_CloseButton" "xpos" "275" "ypos" "1" "zpos" "10" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "MediumIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "actionsignallevel" "2" "Command" "motd_hide" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } "MOTD_HeaderIcon" { "ControlName" "ImagePanel" "fieldName" "MOTD_HeaderIcon" "xpos" "265" "ypos" "25" "zpos" "100" "wide" "25" "tall" "25" "visible" "0" "enabled" "1" "image" "class_icons/filter_all_motd" "scaleImage" "1" } "MOTD_TitleLabel" { "ControlName" "CExLabel" "fieldName" "MOTD_TitleLabel" "font" "HudFontSmallBold" "labelText" "%motdtitle%" "textAlignment" "west" "xpos" "10" "ypos" "25" "wide" "250" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "wrap" "1" } "MOTD_Label" { "ControlName" "CExLabel" "fieldName" "MOTD_Label" "font" "TFFontMedium" "labelText" "%motddate%" "textAlignment" "north-west" "xpos" "10" "ypos" "40" "wide" "300" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } "MOTD_TitleImageBg" { "ControlName" "ImagePanel" "fieldName" "MOTD_TitleImageBg" "xpos" "cs-0.5" "ypos" "55" "zpos" "99" "wide" "250" "tall" "150" "visible" "1" "enabled" "1" "image" "item_bg" "scaleImage" "1" "proportionaltoparent" "1" } "MOTD_TitleImageContainer" { "ControlName" "EditablePanel" "fieldName" "MOTD_TitleImageContainer" "xpos" "cs-0.5" "ypos" "55" "zpos" "100" "wide" "250" "tall" "150" "visible" "1" "proportionaltoparent" "1" "MOTD_TitleImage" { "ControlName" "ImagePanel" "fieldName" "MOTD_TitleImage" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "250" "tall" "250" "visible" "1" "enabled" "1" "image" "class_icons/filter_all" "scaleImage" "0" } } "MOTD_TextScroller" { "ControlName" "ScrollableEditablePanel" "fieldName" "MOTD_TextScroller" "xpos" "20" "ypos" "215" "wide" "280" "tall" "115" "PaintBackgroundType" "2" "fgcolor" "TanLight" "MOTD_TextPanel" { "ControlName" "EditablePanel" "fieldName" "MOTD_TextPanel" "xpos" "0" "ypos" "0" "wide" "250" "tall" "300" "visible" "1" "PaintBackgroundType" "2" "MOTD_TextLabel" { "ControlName" "CExLabel" "fieldName" "MOTD_TextLabel" "font" "TFFontMedium" "labelText" "%motdtext%" "textAlignment" "north-west" "xpos" "0" "ypos" "0" "wide" "250" "tall" "300" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor" "TanLight" "wrap" "1" } } } "MOTD_URLButton" { "ControlName" "CExButton" "fieldName" "MOTD_URLButton" "xpos" "75" "ypos" "rs1.2" "wide" "150" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#MMenu_MOTD_URL" "textinsetx" "20" "use_proportional_insets" "1" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "command" "motd_viewurl" "proportionaltoparent" "1" "actionsignallevel" "2" "navUp" "MOTD_CloseButton" "navLeft" "MOTD_PrevButton" "navRight" "MOTD_NextButton" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MOTD_PrevButton" { "ControlName" "CExImageButton" "fieldName" "MOTD_PrevButton" "xpos" "12" "ypos" "336" "zpos" "1" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "motd_prev" "actionsignallevel" "2" "navUp" "MOTD_CloseButton" "navRight" "MOTD_URLButton" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintbackground" "0" "image_drawcolor" "235 226 202 255" "image_armedcolor" "255 255 255 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "image" "blog_back" "scaleImage" "1" } } "MOTD_NextButton" { "ControlName" "CExImageButton" "fieldName" "MOTD_NextButton" "xpos" "267" "ypos" "336" "zpos" "1" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "motd_next" "actionsignallevel" "2" "navUp" "MOTD_CloseButton" "navLeft" "MOTD_URLButton" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "paintbackground" "0" "image_drawcolor" "235 226 202 255" "image_armedcolor" "255 255 255 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "20" "tall" "20" "visible" "1" "enabled" "1" "image" "blog_forward" "scaleImage" "1" } } } "Notifications_Panel" { "ControlName" "EditablePanel" "fieldName" "Notifications_Panel" "xpos" "r255" "ypos" "130" "zpos" "100" "wide" "210" "tall" "80" "visible" "0" "paintbackground" "1" "bgcolor_override" "TransparentBlack" "PaintBackgroundType" "2" "Notifications_CloseButton" { "ControlName" "CExImageButton" "fieldName" "Notifications_CloseButton" "xpos" "186" "ypos" "2" "zpos" "10" "wide" "20" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "MediumSmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "actionsignallevel" "2" "Command" "noti_hide" "paintbackground" "0" "armedFgColor_override" "LightRed" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Notifications_TitleLabel" { "ControlName" "CExLabel" "fieldName" "Notifications_TitleLabel" "font" "FontBold12" "labelText" "%notititle%" "textAlignment" "west" "xpos" "0" "ypos" "0" "wide" "250" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "textinsetx" "25" } "Notifications_Scroller" { "ControlName" "ScrollableEditablePanel" "fieldName" "Notifications_Scroller" "xpos" "8" "ypos" "25" "wide" "210" "tall" "135" "PaintBackgroundType" "2" "fgcolor_override" "TextColor" "Notifications_Control" { "ControlName" "CMainMenuNotificationsControl" "fieldName" "Notifications_Control" "xpos" "0" "ypos" "0" "wide" "220" "tall" "135" "visible" "1" } } } "CompetitiveAccessInfoPanel" { "ControlName" "CCompetitiveAccessInfoPanel" "fieldName" "CompetitiveAccessInfoPanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "1000" "wide" "f0" "tall" "f0" "visible" "0" } "FriendsContainer" { "ControlName" "EditablePanel" "fieldName" "FriendsContainer" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "260" "tall" "140" "visible" "1" "border" "NoBorder" "bgcolor_override" "Transparent" "PaintBackgroundType" "2" "pin_to_sibling" "BGPanel4" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallBold" "labelText" "#TF_Competitive_Friends" "textAlignment" "center" "xpos" "0" "ypos" "5" "wide" "260" "tall" "15" "visible" "1" "enabled" "1" } "InnerShadow" { "ControlName" "EditablePanel" "fieldName" "InnerShadow" "xpos" "cs-0.5" "ypos" "rs1-10" "zpos" "501" "wide" "f20" "tall" "0" "visible" "0" "PaintBackgroundType" "0" "proportionaltoparent" "1" "mouseinputenabled" "0" "paintborder" "1" "border" "InnerShadowBorder" } "SteamFriendsList" { "ControlName" "CSteamFriendsListPanel" "fieldName" "SteamFriendsList" "xpos" "0" "ypos" "22" "zpos" "500" "wide" "260" "tall" "120" "visible" "1" "proportionaltoparent" "1" "columns_count" "2" "inset_x" "6" "inset_y" "2" "row_gap" "5" "column_gap" "5" "restrict_width" "0" "friendpanel_kv" { "wide" "122" "tall" "25" } "ScrollBar" { "ControlName" "ScrollBar" "FieldName" "ScrollBar" "xpos" "rs1-1" "ypos" "0" "tall" "f0" "wide" "5" "zpos" "1000" "nobuttons" "1" "proportionaltoparent" "1" "Slider" { "fgcolor_override" "TanDark" } "UpButton" { "ControlName" "Button" "FieldName" "UpButton" "visible" "0" } "DownButton" { "ControlName" "Button" "FieldName" "DownButton" "visible" "0" } } } "BelowDarken" { "ControlName" "EditablePanel" "fieldName" "BelowDarken" "xpos" "0" "ypos" "22" "zpos" "499" "wide" "260" "tall" "120" "visible" "1" "PaintBackgroundType" "0" "proportionaltoparent" "1" "mouseinputenabled" "0" "bgcolor_override" "TransparentLightBlack" } } "VersionLabel" { "ControlName" "CExImageButton" "fieldName" "VersionLabel" "font" "FontRegular12" "labelText" "FlawHUD v2026.0110" "labelText_minmode" "#FH_streamer_mode_active" "xpos" "f0" "ypos" "r13" "zpos" "1" "wide" "f0" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "0" "sound_depressed" "" "textAlignment" "east" "sound_released" "UI/homie.mp3" "defaultFgColor_override" "TanLight" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanLight" } "CharacterSetupButton" { "ControlName" "CExImageButton" "fieldName" "CharacterSetupButton" "xpos" "-5" "ypos" "-5" "zpos" "11" "wide" "122" "tall" "26" "visible" "1" "enabled" "1" "labeltext" "#MMenu_CharacterSetup" "command" "engine open_charinfo" "font" "FontBold14" "textAlignment" "center" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "BGPanel2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "GeneralStoreButton" { "ControlName" "CExImageButton" "fieldName" "GeneralStoreButton" "xpos" "-5" "ypos" "-5" "zpos" "11" "wide" "124" "tall" "26" "visible" "1" "enabled" "1" "labeltext" "#StoreTitle" "command" "engine open_store" "font" "FontBold14" "textAlignment" "center" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "BGPanel2" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "SteamWorkshopButton" { "ControlName" "CExImageButton" "fieldName" "SteamWorkshopButton" "xpos" "-5" "ypos" "-5" "zpos" "11" "wide" "124" "tall" "26" "visible" "1" "enabled" "1" "AllCaps" "1" "labeltext" "#MMenu_SteamWorkshop" "command" "engine OpenSteamWorkshopDialog" "font" "FontBold14" "textAlignment" "center" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "BGPanel2" "pin_corner_to_sibling" "PIN_BOTTOMRIGHT" "pin_to_sibling_corner" "PIN_BOTTOMRIGHT" } "SettingButton" { "ControlName" "CExImageButton" "fieldName" "SettingButton" "xpos" "-5" "ypos" "-5" "zpos" "11" "wide" "122" "tall" "26" "visible" "1" "enabled" "1" "AllCaps" "1" "labeltext" "#MMenu_Tooltip_Options" "command" "OpenOptionsDialog" "font" "FontBold14" "textAlignment" "center" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "BGPanel2" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "TF2SettingsButton" { "ControlName" "EditablePanel" "fieldName" "TF2SettingsButton" "xpos" "-8" "ypos" "-2" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "BGPanel3" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "AchievementsButton" { "ControlName" "EditablePanel" "fieldName" "AchievementsButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "TF2SettingsButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "ReplayButton" { "ControlName" "EditablePanel" "fieldName" "ReplayButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "AchievementsButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "ReportBugButton" { "ControlName" "EditablePanel" "fieldName" "ReportBugButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "ReplayButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "ItemTestButton" { "ControlName" "EditablePanel" "fieldName" "ItemTestButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "ReportBugButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "TrainingModeButton" { "ControlName" "EditablePanel" "fieldName" "TrainingModeButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "ItemTestButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "CreateServerButton" { "ControlName" "EditablePanel" "fieldName" "CreateServerButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "TrainingModeButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "ConsoleButton" { "ControlName" "EditablePanel" "FieldName" "ConsoleButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "CreateServerButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "CoachPlayersButton" { "ControlName" "EditablePanel" "FieldName" "CoachPlayersButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "ConsoleButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "RequestCoachButton" { "ControlName" "EditablePanel" "FieldName" "RequestCoachButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "CoachPlayersButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "CallVoteButton" { "ControlName" "EditablePanel" "FieldName" "CallVoteButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "RequestCoachButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "MutePlayersButton" { "ControlName" "EditablePanel" "FieldName" "MutePlayersButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "CallVoteButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "ReportPlayerButton" { "ControlName" "EditablePanel" "FieldName" "ReportPlayerButton" "xpos" "19" "ypos" "0" "zpos" "12" "wide" "19" "tall" "19" "visible" "1" "pin_to_sibling" "MutePlayersButton" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SubButton" { "ControlName" "CExImageButton" "fieldName" "SubButton" "xpos" "0" "ypos" "0" "wide" "19" "tall" "19" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "SmallIcons" "use_proportional_insets" "1" "textAlignment" "center" "default" "1" "actionsignallevel" "2" "paintbackground" "0" "paintborder" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "armedFgColor_override" "TanDark" } } "SettingsButtonSDK" { "ControlName" "CExImageButton" "fieldName" "SettingsButtonSDK" "xpos" "c-34+273" "ypos" "437" "zpos" "4" "wide" "25" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "font" "HudFontSmallBold" "textAlignment" "west" "textinsetx" "25" "use_proportional_insets" "1" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "OpenOptionsDialog" "navUp" "TF2SettingsButtonSDK" "navLeft" "TF2SettingsButtonSDK" "navRight" "TF2SettingsButtonSDK" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "image_drawcolor" "235 226 202 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "6" "ypos" "6" "zpos" "1" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "glyph_options" } } "TF2SettingsButtonSDK" { "ControlName" "CExImageButton" "fieldName" "TF2SettingsButtonSDK" "xpos" "c-0+273" "ypos" "437" "zpos" "5" "wide" "25" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "font" "HudFontSmallBold" "textAlignment" "east" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "opentf2options" "use_proportional_insets" "1" "textinsetx" "25" "navUp" "SettingsButtonSDK" "navLeft" "SettingsButtonSDK" "navRight" "SettingsButtonSDK" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "image_drawcolor" "235 226 202 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "6" "ypos" "6" "zpos" "1" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "glyph_options" } } "BGPanel1" { "ControlName" "EditablePanel" "fieldName" "BGPanel1" "xpos" "0" "ypos" "2" "zpos" "-1" "wide" "260" "tall" "50" "visible" "1" "bgcolor_override" "TransparentBlack" "PaintBackgroundType" "2" "pin_to_sibling" "TFLogoImage" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "BGPanel2" { "ControlName" "EditablePanel" "fieldName" "BGPanel2" "xpos" "0" "ypos" "2" "zpos" "-1" "wide" "260" "tall" "66" "visible" "1" "bgcolor_override" "TransparentBlack" "PaintBackgroundType" "2" "pin_to_sibling" "BGPanel1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "BGPanel3" { "ControlName" "EditablePanel" "fieldName" "BGPanel3" "xpos" "0" "ypos" "2" "zpos" "-1" "wide" "260" "tall" "22" "visible" "1" "bgcolor_override" "TransparentBlack" "PaintBackgroundType" "2" "pin_to_sibling" "BGPanel2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "BGPanel4" { "ControlName" "EditablePanel" "FieldName" "BGPanel4" "xpos" "0" "ypos" "2" "zpos" "-1" "wide" "260" "tall" "145" "visible" "1" "bgcolor_override" "TransparentBlack" "PaintBackgroundType" "2" "pin_to_sibling" "BGPanel3" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "BGPanel5" { "ControlName" "EditablePanel" "FieldName" "BGPanel5" "xpos" "rs1+10" "ypos" "130" "zpos" "-1" "wide" "45" "tall" "103" "visible" "1" "bgcolor_override" "TransparentBlack" "PaintBackgroundType" "2" } } ================================================ FILE: resource/ui/mainmenuplaylistentry.res ================================================ "resource/ui/mainmenuplaylistentry.res" { "ModeImage" { "ControlName" "ImagePanel" "fieldName" "ModeImage" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "o4" "tall" "p1.17" "visible" "1" "enabled" "1" "scaleImage" "1" "proportionaltoparent" "1" "image" "" } "PlayListDropShadow" { "ControlName" "EditablePanel" "fieldName" "PlayListDropShadow" "xpos" "0" "ypos" "0" "zpos" "1000" "wide" "f0" "tall" "f0" "visible" "1" "PaintBackgroundType" "2" "border" "PanelBorder" "proportionaltoparent" "1" "mouseinputenabled" "0" } "BGColor" { "ControlName" "EditablePanel" "fieldName" "BGColor" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "bgcolor_override" "Transparent" } "ToolTipHack" { "ControlName" "EditablePanel" "fieldName" "ToolTipHack" "xpos" "0" "ypos" "0" "zpos" "490" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "mouseinputenabled" "1" "eatmouseinput" "0" } "ModeButton" { "ControlName" "CExButton" "fieldName" "ModeButton" "xpos" "0" "ypos" "0" "zpos" "5" "tall" "f0" "wide" "f0" "visible" "1" "enabled" "1" "labelText" "%button_token%" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "command" "%button_command%" "proportionaltoparent" "1" "actionsignallevel" "2" "textinsety" "0" "border_default" "DarkBorderThick" "border_armed" "WhiteBorderThick" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "Transparent" "armedFgColor_override" "Transparent" "depressedFgColor_override" "Transparent" } "MatchmakingBanPanel" { "ControlName" "EditablePanel" "fieldName" "MatchmakingBanPanel" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "f0" "tall" "f0" "visible" "0" "enabled" "1" "mouseinputenabled" "0" "bgcolor_override" "0 0 0 250" "proportionaltoparent" "1" "MatchmakingBanDurationLabel" { "ControlName" "CExLabel" "fieldName" "MatchmakingBanDurationLabel" "font" "DefaultVerySmall" "fgcolor_override" "RedSolid" "labelText" "#TF_Matchmaking_Ban_Duration_Remaining" "textalignment" "south" "xpos" "5" "ypos" "-2" "zpos" "2" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" "autoResize" "1" "pinCorner" "0" "proportionaltoparent" "1" "paintbackground" "0" } } "DescLabel" { "ControlName" "CExLabel" "fieldName" "DescLabel" "xpos" "9999" } "DescLabelShadow" { "ControlName" "CExLabel" "fieldName" "DescLabelShadow" "xpos" "9999" } "DisabledIcon" { "ControlName" "CExImageButton" "fieldName" "DisabledIcon" "xpos" "9999" } } ================================================ FILE: resource/ui/mapinfomenu.res ================================================ "resource/ui/mapinfomenu.res" { "mapinfo" { "ControlName" "Frame" "fieldName" "mapinfo" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "MainBG" { "ControlName" "ImagePanel" "fieldName" "MainBG" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "fillcolor" "0 0 0 200" } "MapInfoTitle" { "ControlName" "CExLabel" "fieldName" "MapInfoTitle" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "f0" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%mapname%" "textAlignment" "center" "font" "FontBold37" "fgcolor" "TanLight" } "MapInfoType" { "ControlName" "CExLabel" "fieldName" "MapInfoType" "xpos" "0" "ypos" "5" "zpos" "1" "wide" "f0" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%gamemode%" "textAlignment" "center" "font" "FontRegular20" "fgcolor" "TanLight" "pin_to_sibling" "MapInfoTitle" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "MapInfoText" { "ControlName" "CExRichText" "fieldName" "MapInfoText" "xpos" "0" "ypos" "-40" "zpos" "1" "wide" "235" "tall" "250" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "center" "font" "FontRegular15" "fgcolor" "TanLight" "bgcolor_override" "Transparent" "pin_to_sibling" "MapImage" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MapImage" { "ControlName" "ImagePanel" "fieldName" "MapImage" "xpos" "120" "ypos" "c-120" "zpos" "2" "wide" "270" "tall" "270" "visible" "0" "enabled" "1" "image" "" "scaleImage" "1" } "MapInfoContinue" { "ControlName" "CExButton" "fieldName" "MapInfoContinue" "xpos" "r225" "ypos" "r50" "zpos" "2" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "#TF_Continue" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "continue" "default" "1" "font" "FontBold22" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MapInfoWatchIntro" { "ControlName" "CExButton" "fieldName" "MapInfoWatchIntro" "xpos" "c-100" "ypos" "r50" "zpos" "2" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "#TF_WatchIntro" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "intro" "default" "1" "font" "FontBold22" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MapInfoBack" { "ControlName" "CExButton" "fieldName" "MapInfoBack" "xpos" "30" "ypos" "r50" "zpos" "2" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "#TF_Back" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "back" "font" "FontBold22" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MenuBG" { "ControlName" "CTFImagePanel" "fieldName" "MenuBG" "xpos" "9999" } "ShadedBar" { "ControlName" "ImagePanel" "fieldName" "ShadedBar" "xpos" "9999" } "teambutton0SC" { "ControlName" "CExButton" "fieldName" "teambutton0SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&E" "command" "continue" } "teambutton1SC" { "ControlName" "CExButton" "fieldName" "teambutton1SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&Q" "command" "back" } } ================================================ FILE: resource/ui/mapinfomenu_sc.res ================================================ #base "mapinfomenu.res" "resource/ui/mapinfomenu_sc.res" { "MapInfoContinueHintIcon" [$WIN32] { "ControlName" "CSCHintIcon" "fieldName" "MapInfoContinueHintIcon" "xpos" "-5" "ypos" "0" "zpos" "7" "wide" "25" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "actionSet" "InGameHUDControls" "actionName" "menu_select" "pin_to_sibling" "MapInfoContinue" } "MapInfoIntroHintIcon" [$WIN32] { "ControlName" "CSCHintIcon" "fieldName" "MapInfoIntroHintIcon" "xpos" "-5" "ypos" "0" "zpos" "7" "wide" "25" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "Y" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "actionSet" "InGameHUDControls" "actionName" "menu_toggle_function" "pin_to_sibling" "MapInfoWatchIntro" } "MapInfoBackHintIcon" [$WIN32] { "ControlName" "CSCHintIcon" "fieldName" "MapInfoBackHintIcon" "xpos" "-5" "ypos" "0" "zpos" "7" "wide" "25" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "actionSet" "InGameHUDControls" "actionName" "menu_cancel" "pin_to_sibling" "MapInfoBack" } "Footer" [$X360] { "ControlName" "CTFFooter" "fieldName" "Footer" "zpos" "6" "tall" "80" "button_separator" "10" "button_separator_lodef" "5" "buttongap" "50" "textadjust" "3" "buttonoffsety" "20" "buttonoffsety_hidef" "0" "buttonoffsety_lodef" "18" "fonttext" "MatchmakingDialogMenuLarge" "fonttext_lodef" "MatchmakingDialogMenuSmall" "fgcolor" "HudOffWhite" "button" { "name" "intro" "text" "#TF_WatchIntro_360" "icon" "#GameUI_Icons_Y_BUTTON" } "button" { "name" "continue" "text" "#TF_Continue_360" "icon" "#GameUI_Icons_A_BUTTON" } } } ================================================ FILE: resource/ui/matchhistoryentrypanel.res ================================================ "MatchHistoryEntryPanel" { "MatchEntry" { "fieldName" "MatchEntry" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "17" "proportionaltoparent" "1" "resize_time" "0.2" } "Container" { "ControlName" "EditablePanel" "fieldName" "Container" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "17" "proportionaltoparent" "1" "bgcolor_override" "0 0 0 120" "EntryToggleButton" { "ControlName" "CExButton" "fieldName" "EntryToggleButton" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "actionsignallevel" "2" "command" "toggle_collapse" "labeltext" "" "border_default" "NoBorder" "defaultBgColor_override" "0 0 0 0" "border_armed" "NoBorder" "armedBgColor_override" "235 226 202 20" "sound_armed" "ui/item_info_mouseover.wav" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "WinLabel" { "ControlName" "Label" "fieldName" "WinLabel" "xpos" "10" "ypos" "0" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "visible" "0" "mouseinputenabled" "0" "labeltext" "#TF_Competitive_MatchHistory_Win" "font" "HudFontSmallestBold" "fgcolor_override" "95 164 44 255" "textAlignment" "west" } "LossLabel" { "ControlName" "Label" "fieldName" "LossLabel" "xpos" "10" "ypos" "0" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "visible" "0" "mouseinputenabled" "0" "labeltext" "#TF_Competitive_MatchHistory_Loss" "font" "HudFontSmallestBold" "fgcolor_override" "141 63 63 255" "textAlignment" "west" } "DateLabel" { "ControlName" "Label" "fieldName" "DateLabel" "xpos" "p0.2" "ypos" "0" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "visible" "1" "mouseinputenabled" "0" "labeltext" "%match_date%" "font" "MMenuPlayListDesc" "fgcolor_override" "TanLight" "textAlignment" "west" } "MapNameLabel" { "ControlName" "Label" "fieldName" "MapNameLabel" "xpos" "p0.60" "ypos" "0" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "visible" "1" "mouseinputenabled" "0" "labeltext" "%map_name%" "font" "MMenuPlayListDesc" "fgcolor_override" "TanLight" "textAlignment" "west" } "KDLabel" { "ControlName" "Label" "fieldName" "KDLabel" "xpos" "p0.9" "ypos" "0" "wide" "100" "tall" "f0" "proportionaltoparent" "1" "visible" "1" "mouseinputenabled" "0" "labeltext" "%kd_ratio%" "font" "MMenuPlayListDesc" "fgcolor_override" "TanLight" "textAlignment" "west" } } "BottomStats" { "ControlName" "EditablePanel" "fieldName" "BottomStats" "xpos" "0" "ypos" "17" "wide" "f0" "tall" "0" "proportionaltoparent" "1" "bgcolor_override" "0 0 0 190" "autoresize" "2" "pincorner" "3" "InnerShadow" { "ControlName" "EditablePanel" "fieldName" "InnerShadow" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "zpos" "1" "proportionaltoparent" "1" "autoresize" "2" "pincorner" "3" "border" "InnerShadowBorder" } "SlidingStatsContainer" { "ControlName" "EditablePanel" "fieldName" "SlidingStatsContainer" "xpos" "0" "ypos" "rs1+17" "wide" "f0" "tall" "50" "proportionaltoparent" "1" "pincorner" "3" // Just slide down "BGImage" { "ControlName" "ScalableImagePanel" "fieldName" "BGImage" "xpos" "-2" "ypos" "0" "wide" "o1" "tall" "50" "image" "casual\gametype_koth" "proportionaltoparent" "1" } "GradientImage" { "ControlName" "ImagePanel" "fieldName" "GradientImage" "xpos" "8" "ypos" "0" "zpos" "1" "wide" "o1" "tall" "40" "image" "training\gradient_black" "proportionaltoparent" "1" "rotation" "1" } // First column "KillsMedal" { "ControlName" "ScalableImagePanel" "fieldName" "KillsMedal" "xpos" "p0.2" "ypos" "2" "wide" "o1" "tall" "10" "zpos" "100" "image" "competitive\competitive_coin_bronze" "proportionaltoparent" "1" } "KillsLabel" { "ControlName" "Label" "fieldName" "KillsLabel" "xpos" "p0.2+10" "ypos" "0" "wide" "f0" "tall" "15" "proportionaltoparent" "1" "visible" "1" "mouseinputenabled" "0" "labeltext" "%stat_kills%" "font" "MMenuPlayListDesc" "fgcolor_override" "TanLight" "textAlignment" "west" } "DeathsLabel" { "ControlName" "Label" "fieldName" "DeathsLabel" "xpos" "p0.2+10" "ypos" "10" "wide" "f0" "tall" "15" "proportionaltoparent" "1" "visible" "1" "mouseinputenabled" "0" "labeltext" "%stat_deaths%" "font" "MMenuPlayListDesc" "fgcolor_override" "TanLight" "textAlignment" "west" } "DamageMedal" { "ControlName" "ScalableImagePanel" "fieldName" "DamageMedal" "xpos" "p0.2" "ypos" "22" "wide" "o1" "tall" "10" "zpos" "100" "image" "competitive\competitive_coin_bronze" "proportionaltoparent" "1" } "DamageLabel" { "ControlName" "Label" "fieldName" "DamageLabel" "xpos" "p0.2+10" "ypos" "20" "wide" "f0" "tall" "15" "proportionaltoparent" "1" "visible" "1" "mouseinputenabled" "0" "labeltext" "%stat_damage%" "font" "MMenuPlayListDesc" "fgcolor_override" "TanLight" "textAlignment" "west" } // Second column "HealingMedal" { "ControlName" "ScalableImagePanel" "fieldName" "HealingMedal" "xpos" "p0.6-10" "ypos" "2" "wide" "o1" "tall" "10" "zpos" "100" "image" "competitive\competitive_coin_bronze" "proportionaltoparent" "1" } "HealingLabel" { "ControlName" "Label" "fieldName" "HealingLabel" "xpos" "p0.6" "ypos" "0" "wide" "f0" "tall" "15" "proportionaltoparent" "1" "visible" "1" "mouseinputenabled" "0" "labeltext" "%stat_healing%" "font" "MMenuPlayListDesc" "fgcolor_override" "TanLight" "textAlignment" "west" } "SupportMedal" { "ControlName" "ScalableImagePanel" "fieldName" "SupportMedal" "xpos" "p0.6-10" "ypos" "12" "wide" "o1" "tall" "10" "zpos" "100" "image" "competitive\competitive_coin_bronze" "proportionaltoparent" "1" } "SupportLabel" { "ControlName" "Label" "fieldName" "SupportLabel" "xpos" "p0.6" "ypos" "10" "wide" "f0" "tall" "15" "proportionaltoparent" "1" "visible" "1" "mouseinputenabled" "0" "labeltext" "%stat_support%" "font" "MMenuPlayListDesc" "fgcolor_override" "TanLight" "textAlignment" "west" } "ScoreMedal" { "ControlName" "ScalableImagePanel" "fieldName" "ScoreMedal" "xpos" "p0.6-10" "ypos" "22" "wide" "o1" "tall" "10" "zpos" "100" "image" "competitive\competitive_coin_bronze" "proportionaltoparent" "1" } "ScoreLabel" { "ControlName" "Label" "fieldName" "ScoreLabel" "xpos" "p0.6" "ypos" "20" "wide" "f0" "tall" "15" "proportionaltoparent" "1" "visible" "1" "mouseinputenabled" "0" "pincorner" "3" "labeltext" "%stat_score%" "font" "MMenuPlayListDesc" "fgcolor_override" "TanLight" "textAlignment" "west" } "ClassIcons" { "ControlName" "EditablePanel" "fieldName" "ClassIcons" "xpos" "rs1-5" "ypos" "2" "wide" "o1" "tall" "30" "zpos" "1" "proportionaltoparent" "1" // First row "ScoutIcon" { "ControlName" "ScalableImagePanel" "fieldName" "ScoutIcon" "xpos" "0" "ypos" "0" "wide" "p0.333" "tall" "p0.333" "image" "class_icons/filter_scout" "proportionaltoparent" "1" } "PyroIcon" { "ControlName" "ScalableImagePanel" "fieldName" "PyroIcon" "xpos" "p0.333" "ypos" "0" "wide" "p0.333" "tall" "p0.333" "image" "class_icons/filter_pyro" "proportionaltoparent" "1" } "SoldierIcon" { "ControlName" "ScalableImagePanel" "fieldName" "SoldierIcon" "xpos" "p0.666" "ypos" "0" "wide" "p0.333" "tall" "p0.333" "image" "class_icons/filter_soldier" "proportionaltoparent" "1" } // Second row "DemoIcon" { "ControlName" "ScalableImagePanel" "fieldName" "DemoIcon" "xpos" "0" "ypos" "p0.333" "wide" "p0.333" "tall" "p0.333" "image" "class_icons/filter_demo" "proportionaltoparent" "1" } "HeavyIcon" { "ControlName" "ScalableImagePanel" "fieldName" "HeavyIcon" "xpos" "p0.333" "ypos" "p0.333" "wide" "p0.333" "tall" "p0.333" "image" "class_icons/filter_heavy" "proportionaltoparent" "1" } "EngineerIcon" { "ControlName" "ScalableImagePanel" "fieldName" "EngineerIcon" "xpos" "p0.666" "ypos" "p0.333" "wide" "p0.333" "tall" "p0.333" "image" "class_icons/filter_engineer" "proportionaltoparent" "1" } // Third row "MedicIcon" { "ControlName" "ScalableImagePanel" "fieldName" "MedicIcon" "xpos" "0" "ypos" "p0.666" "wide" "p0.333" "tall" "p0.333" "image" "class_icons/filter_medic" "proportionaltoparent" "1" } "SniperIcon" { "ControlName" "ScalableImagePanel" "fieldName" "SniperIcon" "xpos" "p0.333" "ypos" "p0.666" "wide" "p0.333" "tall" "p0.333" "image" "class_icons/filter_sniper" "proportionaltoparent" "1" } "SpyIcon" { "ControlName" "ScalableImagePanel" "fieldName" "SpyIcon" "xpos" "p0.666" "ypos" "p0.666" "wide" "p0.333" "tall" "p0.333" "image" "class_icons/filter_spy" "proportionaltoparent" "1" } } } } } ================================================ FILE: resource/ui/matchmakingcasualcriteria.res ================================================ "resource/ui/matchmakingcasualcriteria.res" { "PlaylistBGPanel" { "ControlName" "EditablePanel" "fieldName" "PlaylistBGPanel" "xpos" "cs-0.5" "ypos" "0" "zpos" "-1" "wide" "p0.98" "tall" "p1" "visible" "1" "PaintBackgroundType" "2" "proportionaltoparent" "1" "pinCorner" "2" "autoResize" "1" "RankImage" { "ControlName" "CTFLocalPlayerBadgePanel" "fieldName" "RankImage" "xpos" "4" "ypos" "-8" "zpos" "110" "wide" "o1" "tall" "60" "visible" "0" "enabled" "1" "proportionaltoparent" "1" "mouseinputenabled" "0" "matchgroup" "MatchGroup_Casual_12v12" } "RankPanel" { "ControlName" "CPvPRankPanel" "fieldName" "RankPanel" "xpos" "0" "ypos" "-60" "zpos" "100" "wide" "330" "tall" "102" "visible" "1" "proportionaltoparent" "1" "mouseinputenabled" "0" "matchgroup" "MatchGroup_Casual_12v12" "show_model" "0" "show_name" "0" "show_stats" "1" } "RestoreCasualSearchCriteria" { "ControlName" "CExImageButton" "fieldName" "RestoreCasualSearchCriteria" "xpos" "rs1-29" "ypos" "35" "zpos" "100" "wide" "15" "tall" "o1" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "font" "FontRegular10" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "restore_search_criteria" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "actionsignallevel" "2" "paintbackground" "0" "proportionaltoparent" "1" "image_drawcolor" "TanLight" "image_armedcolor" "169 123 53 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "2" "ypos" "2" "zpos" "1" "wide" "11" "tall" "11" "visible" "1" "enabled" "1" "image" "button_load" "scaleImage" "1" } } "SaveCasualSearchCriteria" { "ControlName" "CExImageButton" "fieldName" "SaveCasualSearchCriteria" "xpos" "rs1-9" "ypos" "35" "zpos" "100" "wide" "15" "tall" "o1" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "font" "FontRegular10" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "save_search_criteria" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "actionsignallevel" "2" "paintbackground" "0" "proportionaltoparent" "1" "image_drawcolor" "TanLight" "image_armedcolor" "169 123 53 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "2" "ypos" "2" "zpos" "1" "wide" "11" "tall" "11" "visible" "1" "enabled" "1" "image" "button_save" "scaleImage" "1" } } "ShowExplanationsButton" { "ControlName" "CExButton" "fieldName" "ShowExplanationsButton" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "Title" { "ControlName" "Label" "fieldName" "Title" "xpos" "10" "ypos" "35" "zpos" "0" "wide" "f0" "tall" "20" "proportionaltoparent" "1" "labeltext" "" "textAlignment" "west" "font" "FontRegular15" "mouseinputenabled" "0" } "SelectedCount" { "ControlName" "Label" "fieldName" "SelectedCount" "xpos" "10" "ypos" "35" "zpos" "0" "wide" "f0" "tall" "20" "proportionaltoparent" "1" "labeltext" "%selected_maps_count%" "textAlignment" "west" "font" "FontRegular15" "fgcolor_override" "TanDark" "mouseinputenabled" "1" } "QueueEstimation" { "ControlName" "Label" "fieldName" "QueueEstimation" "xpos" "rs1-5" "ypos" "38" "zpos" "0" "wide" "f0" "tall" "20" "proportionaltoparent" "1" "labeltext" "#TF_Casual_QueueEstimation" "textAlignment" "east" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textinsetx" "5" "visible" "0" "mouseinputenabled" "0" } "PlayListDropShadow" { "ControlName" "EditablePanel" "fieldName" "PlayListDropShadow" "xpos" "cs-0.5" "ypos" "55" "zpos" "101" "wide" "f15" "tall" "f63" "visible" "1" "PaintBackgroundType" "2" "border" "InnerShadowBorder" "proportionaltoparent" "1" "mouseinputenabled" "0" } "GameModesList" { "ControlName" "CScrollableList" "fieldName" "GameModesList" "xpos" "cs-0.5" "ypos" "55" "wide" "f15" "tall" "f63" "visible" "1" "proportionaltoparent" "1" "restrict_width" "0" "border" "MainMenuBGBorder" "ScrollBar" { "ControlName" "ScrollBar" "FieldName" "ScrollBar" "xpos" "rs0.7-1" "ypos" "0" "tall" "f0" "wide" "5" // This gets slammed from client schme. GG. "zpos" "1000" "nobuttons" "1" "proportionaltoparent" "1" "Slider" { "fgcolor_override" "TanDark" } "UpButton" { "ControlName" "Button" "FieldName" "UpButton" "visible" "0" } "DownButton" { "ControlName" "Button" "FieldName" "DownButton" "visible" "0" } } } } } ================================================ FILE: resource/ui/matchmakingdashboard.res ================================================ "resource/ui/matchmakingdashboard.res" { "MMDashboard" { "fieldName" "MMDashboard" "visible" "1" "enabled" "1" "xpos" "cs-0.5" "ypos" "-5" "zpos" "10001" "wide" "f0" "tall" "35" "keyboardinputenabled" "0" "collapsed_height" "0" "expanded_height" "35" "resize_time" "0.2" } "TopBar" { "ControlName" "EditablePanel" "fieldName" "TopBar" "xpos" "cs-0.5" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "35" "visible" "1" "proportionaltoparent" "1" "pinCorner" "2" "autoResize" "1" "Gradient" { "ControlName" "ImagePanel" "fieldName" "Gradient" "xpos" "0" "ypos" "0" "wide" "p0.5" "tall" "f6" "zpos" "0" "visible" "0" "enabled" "0" "rotation" "2" "proportionaltoparent" "1" "scaleimage" "1" "mouseinputenabled" "0" "alpha" "100" "image" "gradient_pure_black" } "BGPanel" { "ControlName" "EditablePanel" "fieldName" "BGPanel" "xpos" "cs-0.5" "ypos" "0" "zpos" "-1" "wide" "p1.1" "tall" "f5" "visible" "1" "PaintBackgroundType" "2" "border" "NoBorder" "bgcolor_override" "DarkGrey" "proportionaltoparent" "1" } "OuterShadow" { "ControlName" "EditablePanel" "fieldName" "OuterShadow" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "-2" "wide" "p1.1" "tall" "p1" "visible" "1" "PaintBackgroundType" "2" "border" "OuterShadowBorder" "proportionaltoparent" "1" } "ToggleChatButton" { "ControlName" "CExImageButton" "fieldName" "ToggleChatButton" "xpos" "0" "ypos" "3" "zpos" "100" "wide" "30" "tall" "f6" "wide_minmode" "0" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "m" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "toggle_chat" "proportionaltoparent" "1" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "2" "roundedcorners" "0" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "Yellow" "depressedFgColor_override" "TanLight" } "PartyBG" { "ControlName" "EditablePanel" "fieldName" "PartyBG" "xpos" "0" "ypos" "0" "zpos" "99" "wide" "175" "wide_minmode" "0" "tall" "30" "paintbackground" "1" "bgcolor_override" "darkergrey" } "PartySlot0" { "ControlName" "CDashboardPartyMember" "fieldName" "PartySlot0" "xpos" "30" "ypos" "rs1-6" "zpos" "100" "wide" "o1" "tall" "24" "wide_minmode" "0" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "proportionaltoparent" "1" "mouseinputenabled" "1" "keyboardinputenabled" "0" "party_slot" "0" } "PartySlot1" { "ControlName" "CDashboardPartyMember" "fieldName" "PartySlot1" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "o1" "tall" "24" "wide_minmode" "0" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "proportionaltoparent" "1" "mouseinputenabled" "1" "keyboardinputenabled" "0" "party_slot" "1" "pin_to_sibling" "PartySlot0" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "PartySlot2" { "ControlName" "CDashboardPartyMember" "fieldName" "PartySlot2" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "o1" "tall" "24" "wide_minmode" "0" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "proportionaltoparent" "1" "mouseinputenabled" "1" "keyboardinputenabled" "0" "party_slot" "2" "pin_to_sibling" "PartySlot1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "PartySlot3" { "ControlName" "CDashboardPartyMember" "fieldName" "PartySlot3" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "o1" "tall" "24" "wide_minmode" "0" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "proportionaltoparent" "1" "mouseinputenabled" "1" "keyboardinputenabled" "0" "party_slot" "3" "pin_to_sibling" "PartySlot2" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "PartySlot4" { "ControlName" "CDashboardPartyMember" "fieldName" "PartySlot4" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "o1" "tall" "24" "wide_minmode" "0" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "proportionaltoparent" "1" "mouseinputenabled" "1" "keyboardinputenabled" "0" "party_slot" "4" "pin_to_sibling" "PartySlot3" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "PartySlot5" { "ControlName" "CDashboardPartyMember" "fieldName" "PartySlot5" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "o1" "tall" "24" "wide_minmode" "0" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "proportionaltoparent" "1" "mouseinputenabled" "1" "keyboardinputenabled" "0" "party_slot" "5" "pin_to_sibling" "PartySlot4" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "QueueContainer" { "ControlName" "EditablePanel" "fieldName" "QueueContainer" "xpos" "cs-0.5" "ypos" "-50" "zpos" "111" "wide" "220" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "OuterShadow" { "ControlName" "Panel" "fieldName" "OuterShadow" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "f0" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "border" "OuterShadowBorderThin" } "BGPanel" { "ControlName" "Panel" "fieldName" "BGPanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "0" "wide" "f4" "tall" "f4" "visible" "1" "proportionaltoparent" "1" "border" "PanelBorder" "bgcolor_override" "DarkGrey" } "QueueLogoButton" { "ControlName" "Button" "fieldName" "QueueLogoButton" "xpos" "0" "ypos" "1" "zpos" "10" "wide" "o1" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "queue_logo_clicked" "proportionaltoparent" "1" "actionsignallevel" "3" "button_activation_type" "1" "paintbackground" "0" "paintborder" "0" } "CTFLogoPanel" { "ControlName" "CTFLogoPanel" "fieldname" "CTFLogoPanel" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "o1" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "radius" "10" "velocity" "100" "fgcolor_override" "TFOrange" } "QueueText" { "ControlName" "CAutoFittingLabel" "fieldName" "QueueText" "xpos" "33" "ypos" "1" "wide" "f55" "zpos" "100" "tall" "f0" "visible" "1" "enabled" "1" "font" "HudFontSmallestBold" "fgcolor_override" "TanLight" "textAlignment" "west" "labelText" "%queue_state%" "proportionaltoparent" "1" "mouseinputenabled" "0" } "MultiQueuesManageButton" { "ControlName" "CExImageButton" "fieldName" "MultiQueuesManageButton" "xpos" "rs1-6" "ypos" "12" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "manage_queues" "proportionaltoparent" "1" "actionsignallevel" "3" "paintbackground" "0" "defaultFgColor_override" "TanDarker" "armedFgColor_override" "235 226 202 255" "depressedFgColor_override" "TanDarker" "image_drawcolor" "TanLight" "image_armedcolor" "0 191 255 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "glyph_options" "scaleImage" "1" } } "CloseButton" { "ControlName" "CExImageButton" "fieldName" "CloseButton" "xpos" "rs1-6" "ypos" "12" "zpos" "10" "wide" "14" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labeltext" "(" "font" "SmallIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "leave_queue" "proportionaltoparent" "1" "actionsignallevel" "3" "paintbackground" "0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultFgColor_override" "TanLight" "armedFgColor_override" "LightRed" "depressedFgColor_override" "TanLight" } } "JoinPartyLobbyContainer" { "ControlName" "EditablePanel" "fieldName" "JoinPartyLobbyContainer" "xpos" "cs-0.5" "ypos" "-50" "zpos" "110" "wide" "220" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "OuterShadow" { "ControlName" "Panel" "fieldName" "OuterShadow" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "f0" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "border" "OuterShadowBorderThin" } "BGPanel" { "ControlName" "Panel" "fieldName" "BGPanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "0" "wide" "f6" "tall" "f6" "visible" "1" "proportionaltoparent" "1" "border" "PanelBorder" "bgcolor_override" "DarkGrey" } "PromptText" { "ControlName" "Label" "fieldName" "PromptText" "xpos" "cs-0.5" "ypos" "1" "wide" "f35" "zpos" "100" "tall" "f0" "visible" "1" "enabled" "1" "font" "HudFontSmallestBold" "fgcolor_override" "TanLight" "textAlignment" "west" "labelText" "#TF_MM_JoinPartyLobby_Prompt" "proportionaltoparent" "1" "mouseinputenabled" "0" } "JoinNowButton" { "ControlName" "CExButton" "fieldName" "JoinNowButton" "xpos" "rs1-10" "ypos" "rs1-9" "wide" "40" "zpos" "100" "tall" "15" if_queued { "xpos" "cs-0.5" "wide" "150" } "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "join_party_match" "proportionaltoparent" "1" "labeltext" "#TF_MM_JoinPartyLobby_Join" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "3" "armedBgColor_override" "CreditsGreen" "defaultBgColor_override" "SaleGreen" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } "QuitButton" { "ControlName" "CExImageButton" "fieldName" "QuitButton" "xpos" "rs1" "ypos" "0" "zpos" "100" "wide" "30" "tall" "f6" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "MediumIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "quit" "proportionaltoparent" "1" "labeltext" "q" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "2" "paintbackground" "0" "textinsety" "7" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "FgColor" "TanLight" "defaultFgColor_override" "TanLight" "armedFgColor_override" "192 28 0 150" "depressedFgColor_override" "192 28 0 150" } "DisconnectButton" { "ControlName" "CExImageButton" "fieldName" "DisconnectButton" "xpos" "rs1" "ypos" "0" "zpos" "100" "wide" "30" "tall" "f6" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "MediumIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "quit" "proportionaltoparent" "1" "labeltext" "q" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "2" "paintbackground" "0" "textinsety" "7" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "FgColor" "TanLight" "defaultFgColor_override" "TanLight" "armedFgColor_override" "192 28 0 150" "depressedFgColor_override" "192 28 0 150" } "ResumeButton" { "ControlName" "CExImageButton" "fieldName" "ResumeButton" "xpos" "rs1-31-120" "ypos" "0" "zpos" "100" "wide" "30" "tall" "f6" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "MediumIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "resume_game" "proportionaltoparent" "1" "labeltext" "/" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "2" "paintbackground" "0" "textinsety" "7" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "FgColor" "TanLight" "defaultFgColor_override" "TanLight" "armedFgColor_override" "170 221 183 155" "depressedFgColor_override" "170 221 183 155" } "FindAGameButton" { "ControlName" "CExImageButton" "fieldName" "FindAGameButton" "xpos" "rs1-31" "ypos" "0" "zpos" "100" "wide" "30" "tall" "f6" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "MediumIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "find_game" "proportionaltoparent" "1" "labeltext" "!" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "2" "paintbackground" "0" "textinsety" "7" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "FgColor" "TanLight" "defaultFgColor_override" "TanLight" "armedFgColor_override" "CreditsGreen" "depressedFgColor_override" "CreditsGreen" } } } ================================================ FILE: resource/ui/matchmakingdashboardcasualcriteria.res ================================================ #base "matchmakingdashboardsidepanel.res" "resource/ui/matchmakingdashboardcasualcriteria.res" { "CasualCriteria" { "fieldName" "CasualCriteria" "xpos" "r0" "ypos" "10" "zpos" "1002" "wide" "270" "tall" "f70" "visible" "1" "proportionaltoparent" "1" } "Title" { "ControlName" "Label" "fieldName" "Title" "xpos" "8" "ypos" "23" "zpos" "99" "wide" "f0" "tall" "20" "proportionaltoparent" "1" "labeltext" "#TF_Matchmaking_HeaderCasual" "textAlignment" "center" "font" "FontBold20" "fgcolor_override" "TanLight" "mouseinputenabled" "0" } "criteria" { "ControlName" "CCasualCriteriaPanel" "fieldName" "criteria" "xpos" "-3" "ypos" "40" "zpos" "100" "wide" "f0" "tall" "f73" "visible" "1" "proportionaltoparent" "1" } "ToolTipButtonHack" { "ControlName" "EditablePanel" "fieldName" "ToolTipButtonHack" "xpos" "cs-0.5" "ypos" "rs1-8" "zpos" "101" "wide" "f20" "tall" "20" "visible" "0" "enabled" "1" "mouseinputenabled" "1" "eatmouseinput" "0" "proportionaltoparent" "1" "showtooltipswhenmousedisabled" "1" } "QueueButton" { "ControlName" "CExButton" "fieldName" "QueueButton" "xpos" "cs-0.51" "ypos" "rs1-17" "zpos" "100" "wide" "f19" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "find_game" "proportionaltoparent" "1" "labeltext" "#TF_Matchmaking_StartSearch" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "1" "defaultBgColor_override" "OverhealShadow" "armedBgColor_override" "Overheal" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/matchmakingdashboardcomp.res ================================================ #base "matchmakingdashboardsidepanel.res" "resource/ui/matchmakingdashboardcomp.res" { "CompStats" { "fieldName" "CompStats" "xpos" "r0" "ypos" "10" "zpos" "1002" "wide" "270" "tall" "f70" "visible" "1" "proportionaltoparent" "1" } "Title" { "ControlName" "Label" "fieldName" "Title" "xpos" "8" "ypos" "23" "zpos" "101" "wide" "f0" "tall" "20" "proportionaltoparent" "1" "labeltext" "#TF_Matchmaking_HeaderCompetitive" "textAlignment" "center" "font" "FontBold20" "fgcolor_override" "TanLight" "bgcolor_override" "DarkGrey" "mouseinputenabled" "0" } "ShowExplanationsButton" { "ControlName" "CExButton" "fieldName" "ShowExplanationsButton" "xpos" "rs1-21" "ypos" "20" "zpos" "100" "wide" "15" "tall" "o1" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" "labelText" "?" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "show_explanations" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "actionsignallevel" "1" "proportionaltoparent" "1" } "RankTooltipPanel" { "ControlName" "ImagePanel" "fieldName" "RankTooltipPanel" "xpos" "5" "ypos" "44" "zpos" "1000" "wide" "8" "tall" "8" "visible" "0" "enabled" "0" "proportionaltoparent" "1" "mouseinputenabled" "1" "image" "info" "scaleImage" "1" "alpha" "75" } "stats" { "fieldName" "stats" "xpos" "-1" "ypos" "40" "zpos" "100" "wide" "305" "tall" "330" "visible" "1" "proportionaltoparent" "1" } "ToolTipButtonHack" { "ControlName" "EditablePanel" "fieldName" "ToolTipButtonHack" "xpos" "cs-0.5" "ypos" "rs1-8" "zpos" "101" "wide" "f20" "tall" "20" "visible" "0" "enabled" "1" "mouseinputenabled" "1" "eatmouseinput" "0" "showtooltipswhenmousedisabled" "1" "proportionaltoparent" "1" } "QueueButton" { "ControlName" "CExButton" "fieldName" "QueueButton" "xpos" "cs-0.51" "ypos" "rs1-17" "zpos" "100" "wide" "f19" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "find_game" "proportionaltoparent" "1" "labeltext" "#TF_Matchmaking_StartSearch" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "1" "defaultBgColor_override" "OverhealShadow" "armedBgColor_override" "Overheal" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/matchmakingdashboardmvmcriteria.res ================================================ #base "matchmakingdashboardsidepanel.res" "resource/ui/matchmakingdashboardmvmcriteria.res" { "MVMCriteria" { "fieldName" "MVMCriteria" "xpos" "r0" "ypos" "10" "zpos" "1003" "wide" "420" "tall" "f70" "visible" "1" "proportionaltoparent" "1" } "criteria" { "ControlName" "CMVMCriteriaPanel" "fieldName" "criteria" "xpos" "5" "ypos" "15" "zpos" "100" "wide" "410" "tall" "f60" "visible" "1" "pinCorner" "2" "proportionaltoparent" "1" } "BackButton" { "ControlName" "CExButton" "fieldName" "BackButton" "xpos" "6" "ypos" "rs1-17" "zpos" "100" "wide" "90" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "back" "proportionaltoparent" "1" "labeltext" "#TF_Matchmaking_Back" "mouseinputenabled" "1" "keyboardinputenabled" "0" //"actionsignallevel" "1" "defaultBgColor_override" "DarkerGrey" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MannUpQueueButton" { "ControlName" "CExButton" "fieldName" "MannUpQueueButton" "xpos" "106" "ypos" "rs1-17" "zpos" "100" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "start_search" "proportionaltoparent" "1" "labeltext" "#TF_Matchmaking_StartSearch" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "1" "defaultBgColor_override" "OverhealShadow" "armedBgColor_override" "Overheal" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "BootCampQueueButton" { "ControlName" "CExButton" "fieldName" "BootCampQueueButton" "xpos" "5" "ypos" "rs1-17" "zpos" "100" "wide" "264" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "start_search" "proportionaltoparent" "1" "labeltext" "#TF_Matchmaking_StartSearch" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "1" "defaultBgColor_override" "OverhealShadow" "armedBgColor_override" "Overheal" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "NextButton" { "ControlName" "CExButton" "fieldName" "NextButton" "xpos" "6" "ypos" "rs1-17" "zpos" "100" "wide" "f20" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "select_tour" "proportionaltoparent" "1" "labeltext" "#TF_MvM_SelectChallenge" "mouseinputenabled" "1" "keyboardinputenabled" "0" //"actionsignallevel" "1" "defaultBgColor_override" "OverhealShadow" "armedBgColor_override" "Overheal" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "JoinLateCheckButton" { "ControlName" "CheckButton" "fieldName" "JoinLateCheckButton" "xpos" "rs1-10" "ypos" "rs1-17" "zpos" "50" "wide" "140" "tall" "20" "font" "FontRegular12" "labelText" "" "proportionaltoparent" "1" } "JoinLateLabel" { "ControlName" "Label" "fieldName" "JoinLateLabel" "xpos" "rs1-10" "ypos" "rs1-17" "zpos" "50" "wide" "115" "tall" "20" "font" "FontRegular12" "labelText" "#TF_Matchmaking_JoinInProgress" "proportionaltoparent" "1" } } ================================================ FILE: resource/ui/matchmakingdashboardmvmmodeselect.res ================================================ #base "matchmakingdashboardsidepanel.res" "resource/ui/matchmakingdashboardcasualcriteria.res" { "MVMModeSelect" { "fieldName" "MVMModeSelect" "xpos" "r0" "ypos" "10" "zpos" "1002" "wide" "270" "tall" "f70" "visible" "1" "proportionaltoparent" "1" } "MvMLogoImage" { "ControlName" "ImagePanel" "fieldName" "MvMLogoImage" "xpos" "30" "ypos" "-5" "zpos" "2" "wide" "o2" "tall" "100" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "image" "mvm/mvm_logo" "scaleImage" "1" } "MannUpGroupBox" { //"ControlName" "EditablePanel" "fieldName" "MannUpGroupBox" "xpos" "6" "ypos" "55" "zpos" "1" "wide" "250" "tall" "215" "visible" "1" "enabled" "1" "DropShadow" { "ControlName" "EditablePanel" "fieldName" "DropShadow" "xpos" "0" "ypos" "0" "zpos" "101" "wide" "f0" "tall" "f0" "visible" "1" "PaintBackgroundType" "2" "border" "InnerShadowBorder" "proportionaltoparent" "1" "mouseinputenabled" "0" } "MannUpImage" { "ControlName" "ImagePanel" "fieldName" "MannUpImage" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "o1" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "image" "mvm/mannup" "scaleImage" "1" "proportionaltoparent" "1" } "Gradient" { "ControlName" "ImagePanel" "fieldName" "Gradient" "xpos" "0" "ypos" "rs1" "wide" "f0" "tall" "100" "zpos" "1" "visible" "1" "enabled" "1" "rotation" "0" "proportionaltoparent" "1" "scaleimage" "1" "mouseinputenabled" "0" "alpha" "255" "image" "gradient_pure_black" } "PlayNowButton" { //"ControlName" "CExButton" "fieldName" "PlayNowButton" "xpos" "cs-0.5" "ypos" "rs1-5" "zpos" "20" "wide" "120" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_MvM_MannUp" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "mannup" "actionsignallevel" "2" "proportionaltoparent" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PlayForBraggingRightsExplanation" { "ControlName" "Label" "fieldName" "PlayForBraggingRightsExplanation" "font" "FontRegular12" "fgcolor_override" "TanLight" "labelText" "#TF_MvM_BraggingRightsExplaination" "textAlignment" "north-west" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "2" "wide" "f20" "tall" "60" "wrap" "1" "proportionaltoparent" "1" "mouseinputenabled" "0" } } "PracticeGroupBox" { //"ControlName" "EditablePanel" "fieldName" "PracticeGroupBox" "xpos" "6" "ypos" "275" "zpos" "100" "wide" "250" "tall" "120" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "DropShadow" { "ControlName" "EditablePanel" "fieldName" "DropShadow" "xpos" "0" "ypos" "0" "zpos" "101" "wide" "f0" "tall" "f0" "visible" "1" "PaintBackgroundType" "2" "border" "InnerShadowBorder" "proportionaltoparent" "1" "mouseinputenabled" "0" } "BootcampImage" { "ControlName" "ImagePanel" "fieldName" "BootcampImage" "xpos" "0" "ypos" "rs1" "zpos" "0" "wide" "f0" "tall" "o1" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "image" "mvm/bootcamp" "scaleImage" "1" "proportionaltoparent" "1" } "Gradient" { "ControlName" "ImagePanel" "fieldName" "Gradient" "xpos" "0" "ypos" "rs1" "wide" "f0" "tall" "100" "zpos" "1" "visible" "1" "enabled" "1" "rotation" "0" "proportionaltoparent" "1" "scaleimage" "1" "mouseinputenabled" "0" "alpha" "255" "image" "gradient_pure_black" } "PracticeButton" { //"ControlName" "CExButton" "fieldName" "PracticeButton" "xpos" "cs-0.5" "ypos" "rs1-5" "zpos" "20" "tall" "25" "wide" "120" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_MvM_BootCamp" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "bootcamp" "actionsignallevel" "2" "proportionaltoparent" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PlayOnCommunityServerExplanation" { "ControlName" "Label" "fieldName" "PlayOnCommunityServerExplanation" "font" "FontRegular12" "fgcolor_override" "TanLight" "labelText" "#TF_MvM_PracticeExplaination" "textAlignment" "north-west" "xpos" "cs-0.5" "ypos" "rs1" "zpos" "3" "wide" "f20" "tall" "50" "wrap" "1" "proportionaltoparent" "1" "mouseinputenabled" "0" } } } ================================================ FILE: resource/ui/matchmakingdashboardplaylist.res ================================================ #base "matchmakingdashboardsidepanel.res" "resource/ui/matchmakingdashboardplaylist.res" { "ExpandableList" { "fieldName" "ExpandableList" "xpos" "r0" "ypos" "r75" "zpos" "2001" "wide" "f0" "tall" "f0" "visible" "1" "proportionaltoparent" "1" } "Title" { "ControlName" "Label" "fieldName" "Title" "xpos" "0" "ypos" "25" "zpos" "99" "wide" "f0" "tall" "20" "proportionaltoparent" "1" "labeltext" "#TF_Matchmaking_HeaderModeSelect" "textAlignment" "center" "font" "HudFontMediumBold" "fgcolor_override" "TanLight" "mouseinputenabled" "0" "visible" "0" } "playlist" { // "ControlName" "CTFPlaylistPanel" "fieldName" "playlist" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "f0" "tall" "f0" "visible" "1" "proportionaltoparent" "1" } "PlayListDropShadow" { "ControlName" "EditablePanel" "fieldName" "PlayListDropShadow" "xpos" "0" "ypos" "0" "zpos" "1000" "wide" "f0" "tall" "f0" "visible" "0" "PaintBackgroundType" "2" "border" "InnerShadowBorder" "proportionaltoparent" "1" "mouseinputenabled" "0" } } ================================================ FILE: resource/ui/matchmakingdashboardpopup_newmatch.res ================================================ "resource/ui/matchmakingdashboardpopup_newmatch.res" { "NewMatchFound" { "ControlName" "CExpandablePanel" "fieldName" "NewMatchFound" "xpos" "cs-0.5" "ypos" "0" "zpos" "10001" "wide" "200" "tall" "60" "visible" "1" "proportionaltoparent" "0" "keyboardinputenabled" "0" "mouseinputenabled" "1" "collapsed_height" "0" "expanded_height" "60" "pinCorner" "2" "autoResize" "1" "OuterShadow" { "ControlName" "EditablePanel" "fieldName" "OuterShadow" "xpos" "0" "ypos" "rs1" "zpos" "-2" "wide" "f0" "tall" "f0" "visible" "1" "PaintBackgroundType" "0" "border" "OuterShadowBorder" "proportionaltoparent" "1" "pinCorner" "0" "autoResize" "2" } "BGPanel" { "ControlName" "EditablePanel" "fieldName" "BGPanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "-1" "wide" "f5" "tall" "f5" "visible" "1" "PaintBackgroundType" "2" "border" "QuickplayBorder" "bgcolor_override" "DarkGrey" "proportionaltoparent" "1" "pinCorner" "3" "DescLabel" { "ControlName" "CAutoFittingLabel" "fieldName" "DescLabel" "xpos" "0" "ypos" "7" "wide" "f0" "zpos" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "HudFontSmallBold" "fgcolor_override" "TanLight" "textAlignment" "center" "labelText" "%match_type%" "proportionaltoparent" "1" "pinCorner" "3" "fonts" { "0" "FontBold12" "1" "StorePromotionsTitle" "2" "FontStorePrice" } } "AutoJoinLabel" { "ControlName" "Label" "fieldName" "AutoJoinLabel" "xpos" "0" "ypos" "rs1-17" "wide" "f0" "zpos" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "FontRegular12" "fgcolor_override" "TanLight" "textAlignment" "center" "labelText" "%auto_join%" "proportionaltoparent" "1" "pinCorner" "3" } "AbandonButton" { "ControlName" "CExButton" "fieldName" "AbandonButton" "xpos" "rs1-10" "ypos" "rs1-5" "zpos" "100" "wide" "75" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "abandon_match" "proportionaltoparent" "1" "labeltext" "#TF_MM_Rejoin_Abandon" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "2" "paintbackground" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "SmallJoinButton" { "ControlName" "CExButton" "fieldName" "SmallJoinButton" "xpos" "10" "ypos" "rs1-5" "wide" "90" "zpos" "100" "tall" "15" "if_expected" { "xpos" "cs-0.5" "wide" "150" } "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "join_match" "proportionaltoparent" "1" "labeltext" "#TF_Matchmaking_RollingQueue_JoinNow" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "2" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "WideJoinButton" { "ControlName" "CExButton" "fieldName" "WideJoinButton" "xpos" "cs-0.5" "ypos" "rs1-5" "wide" "150" "zpos" "100" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "join_match" "proportionaltoparent" "1" "labeltext" "#TF_Matchmaking_RollingQueue_JoinNow" "mouseinputenabled" "1" "keyboardinputenabled" "0" "actionsignallevel" "2" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "JoiningLabel" { "ControlName" "Label" "fieldName" "JoiningLabel" "xpos" "cs-1" "ypos" "rs1-17" "wide" "f0" "zpos" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "FontBold12" "fgcolor_override" "TanLight" "textAlignment" "east" "labelText" "#TF_Matchmaking_RollingQueue_MatchReadyJoining" "proportionaltoparent" "1" "pinCorner" "3" } "Spinner" { "ControlName" "CTFLogoPanel" "fieldName" "Spinner" "xpos" "c+5" "ypos" "rs1-17" "zpos" "104" "wide" "o1" "tall" "25" "visible" "1" "proportionaltoparent" "1" "mouseinputenabled" "0" "alpha" "200" "radius" "10" "velocity" "250" "fgcolor_override" "Orange" } } } } ================================================ FILE: resource/ui/matchmakingdashboardpopup_nextmapvoting.res ================================================ "resource/ui/matchmakingdashboardpopup_nextmapvoting.res" { "NextMapVoting" { "ControlName" "CExpandablePanel" "fieldName" "NextMapVoting" "xpos" "cs-0.5" "ypos" "0" "zpos" "9999" "wide" "260" "tall" "80" "visible" "1" "proportionaltoparent" "0" "keyboardinputenabled" "0" "mouseinputenabled" "1" "collapsed_height" "0" "expanded_height" "80" "pinCorner" "2" "autoResize" "1" "OuterShadow" { "ControlName" "EditablePanel" "fieldName" "OuterShadow" "xpos" "0" "ypos" "rs1" "zpos" "-2" "wide" "f0" "tall" "f0" "visible" "1" "PaintBackgroundType" "0" "border" "OuterShadowBorder" "proportionaltoparent" "1" "pinCorner" "0" "autoResize" "2" } "BGPanel" { "ControlName" "EditablePanel" "fieldName" "BGPanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "-1" "wide" "f5" "tall" "f5" "visible" "1" "border" "QuickplayBorder" "bgcolor_override" "DarkGrey" "proportionaltoparent" "1" "pinCorner" "2" "HideButton" { "ControlName" "CExImageButton" "fieldName" "HideButton" "xpos" "rs1-3" "ypos" "rs1+3" "zpos" "1000" "wide" "o1" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "labeltext" "" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "toggle_hide" "proportionaltoparent" "1" "actionsignallevel" "2" "paintbackground" "0" "image_default" "glyph_collapse" "image_drawcolor" "235 226 202 255" "image_armedcolor" "200 80 60 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "p1" "tall" "p1" "visible" "1" "enabled" "1" "image" "glyph_store" "scaleImage" "1" "proportionaltoparent" "1" } } // HideButton "ShowButton" { "ControlName" "CExImageButton" "fieldName" "ShowButton" "xpos" "rs1-3" "ypos" "rs1+3" "zpos" "1000" "wide" "o1" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "labeltext" "" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "Command" "toggle_hide" "proportionaltoparent" "1" "actionsignallevel" "2" "paintbackground" "0" "image_default" "glyph_expand" "image_drawcolor" "235 226 202 255" "image_armedcolor" "200 80 60 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "p1" "tall" "p1" "visible" "1" "enabled" "1" "image" "glyph_store" "scaleImage" "1" "proportionaltoparent" "1" } } // HideButton "DescLabel" { "ControlName" "Label" "fieldName" "DescLabel" "xpos" "0" "ypos" "3" "wide" "f0" "zpos" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "HudFontSmallBold" "fgcolor_override" "TanLight" "textAlignment" "center" "labelText" "#TF_Matchmaking_RollingQueue_MatchOver" "proportionaltoparent" "1" } "TimeRemainingProgressBar" { "ControlName" "CircularProgressBar" "fieldName" "TimeRemainingProgressBar" "xpos" "rs1-2" "ypos" "4" "wide" "20" "tall" "o1" "proportionaltoparent" "1" "fg_image" "pve/mvm_1_progress" "bg_image" "progress_bar_pointer_right" } "MapChoice0" { "ControlName" "EditablePanel" "fieldName" "MapChoice0" "xpos" "p0.2-s0.5" "ypos" "15" "zpos" "-1" "wide" "100" "tall" "60" "visible" "1" "PaintBackgroundType" "2" "proportionaltoparent" "1" } "MapChoice1" { "ControlName" "EditablePanel" "fieldName" "MapChoice1" "xpos" "p0.5-s0.5" "ypos" "15" "zpos" "-1" "wide" "100" "tall" "60" "visible" "1" "PaintBackgroundType" "2" "proportionaltoparent" "1" } "MapChoice2" { "ControlName" "EditablePanel" "fieldName" "MapChoice2" "xpos" "p0.8-s0.5" "ypos" "15" "zpos" "-1" "wide" "100" "tall" "60" "visible" "1" "PaintBackgroundType" "2" "proportionaltoparent" "1" } } } } ================================================ FILE: resource/ui/matchmakingdashboardpopup_nextmapwinner.res ================================================ "resource/ui/matchmakingdashboardpopup_nextmapwinner.res" { "NextMapWinner" { "ControlName" "CExpandablePanel" "fieldName" "NextMapWinner" "xpos" "cs-0.5" "ypos" "0" "zpos" "9999" "wide" "260" "tall" "80" "visible" "1" "proportionaltoparent" "0" "keyboardinputenabled" "0" "mouseinputenabled" "1" "collapsed_height" "0" "expanded_height" "80" "pinCorner" "2" "autoResize" "1" "OuterShadow" { "ControlName" "EditablePanel" "fieldName" "OuterShadow" "xpos" "0" "ypos" "rs1" "zpos" "-2" "wide" "f0" "tall" "f0" "visible" "1" "PaintBackgroundType" "0" "border" "OuterShadowBorder" "proportionaltoparent" "1" "pinCorner" "0" "autoResize" "2" } "BGPanel" { "ControlName" "EditablePanel" "fieldName" "BGPanel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "-1" "wide" "f5" "tall" "f5" "visible" "1" "PaintBackgroundType" "2" "border" "QuickplayBorder" "bgcolor_override" "DarkGrey" "proportionaltoparent" "1" "pinCorner" "2" "DescLabel" { "ControlName" "Label" "fieldName" "DescLabel" "xpos" "0" "ypos" "3" "wide" "f0" "zpos" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "HudFontSmallBold" "fgcolor_override" "TanLight" "textAlignment" "center" "labelText" "#TF_Matchmaking_RollingQueue_NextMapWinner" "proportionaltoparent" "1" } "MapImageClip" { "ControlName" "EditablePanel" "fieldName" "MapImageClip" "xpos" "cs-0.5" "ypos" "22" "wide" "50" "tall" "o0.75" "zpos" "1" "proportionaltoparent" "1" "mouseinputenabled" "0" "MapImage" { "ControlName" "ScalableImagePanel" "fieldName" "MapImage" "xpos" "cs-0.5" "ypos" "0" "wide" "f0" "tall" "o1" "zpos" "0" "image" "maps/menu_thumb_pl_goldrush" "proportionaltoparent" "1" "mouseinputenabled" "0" } } "NameLabel" { "ControlName" "Label" "fieldName" "NameLabel" "xpos" "0" "ypos" "rs1-2" "wide" "f0" "zpos" "10" "tall" "20" "visible" "1" "enabled" "1" "font" "MapVotesPercentage" "fgcolor_override" "TanLight" "textAlignment" "south" "labelText" "%mapname%" "proportionaltoparent" "1" "mouseinputenabled" "0" } } } } ================================================ FILE: resource/ui/matchmakingdashboardsidepanel.res ================================================ "resource/ui/matchmakingdashboardsidepanel.res" { "Shade" { "ControlName" "EditablePanel" "fieldName" "Shade" "xpos" "3" "ypos" "0" "zpos" "1000" "wide" "f0" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "mouseinputenabled" "0" "bgcolor_override" "0 0 0 255" } "TitleGradient" { "ControlName" "ImagePanel" "fieldName" "TitleGradient" "xpos" "3" "ypos" "0" "wide" "f0" "tall" "60" "zpos" "98" "visible" "0" "enabled" "0" "rotation" "3" "proportionaltoparent" "1" "scaleimage" "1" "mouseinputenabled" "0" "alpha" "180" "image" "gradient_pure_black" } "InnerGradient" { "ControlName" "ImagePanel" "fieldName" "InnerGradient" "xpos" "3" "rotation" "2" "ypos" "0" "wide" "30" "tall" "f0" "zpos" "1000" "visible" "0" "enabled" "0" "proportionaltoparent" "1" "scaleimage" "1" "mouseinputenabled" "0" "image" "gradient_pure_black" if_left { "xpos" "rs1-3" "rotation" "1" } } "OuterGradient" { "ControlName" "ImagePanel" "fieldName" "OuterGradient" "xpos" "rs1" "rotation" "1" "ypos" "0" "wide" "20" "tall" "f0" "zpos" "1000" "visible" "0" "enabled" "0" "proportionaltoparent" "1" "scaleimage" "1" "mouseinputenabled" "0" "alpha" "255" "image" "gradient_pure_black" if_left { "xpos" "0" "rotation" "2" } } "CloseButton" { "ControlName" "CExButton" "fieldName" "CloseButton" "xpos" "rs1" "labelText" ">" "ypos" "0" "zpos" "10000" "wide" "13" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "command" "nav_close" "textAlignment" "east" "font" "FontBold14" "armedBgColor_override" "Transparent" "defaultBgColor_override" "Transparent" "defaultFgColor_override" "TanLight" "armedFgColor_override" "169 123 53 255" if_left { "xpos" "0" "labelText" "<" } } "ReturnButton" { "ControlName" "CExButton" "fieldName" "ReturnButton" "xpos" "3" "labelText" "<" "ypos" "0" "zpos" "10000" "wide" "20" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "command" "nav_to" "labelText" "<" "textAlignment" "west" "font" "FontBold14" "armedBgColor_override" "Transparent" "defaultBgColor_override" "Transparent" "defaultFgColor_override" "TanLight" "armedFgColor_override" "169 123 53 255" if_left { "xpos" "rs1-3" "labelText" ">" } } "BGPanel" { "ControlName" "EditablePanel" "fieldName" "BGPanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f-20" "visible" "1" "proportionaltoparent" "1" "border" "TeamMenuBorder" "bgcolor_override" "DarkGrey" } } ================================================ FILE: resource/ui/matchmakingpingpanel.res ================================================ #base "matchmakingdashboardsidepanel.res" "resource/ui/matchmakingpingpanel.res" { "PingPanel" { "fieldName" "PingPanel" "xpos" "-300" "ypos" "10" "zpos" "1001" "wide" "300" "tall" "f70" "visible" "1" "proportionaltoparent" "1" "datacenter_y" "3" "datacenter_y_space" "1" } "BGPanel" { "ControlName" "EditablePanel" "fieldName" "BGPanel" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "f0" "tall" "f-50" "visible" "1" "PaintBackgroundType" "2" "border" "MainMenuBGBorder" "proportionaltoparent" "1" } "Title" { "ControlName" "Label" "fieldName" "Title" "xpos" "13" "ypos" "20" "zpos" "99" "wide" "f0" "tall" "20" "proportionaltoparent" "1" "labeltext" "#TF_MM_OpenSettings" "textAlignment" "west" "font" "HudFontMediumBold" "fgcolor_override" "TanDark" "mouseinputenabled" "0" } "InviteModeLabel" { "ControlName" "Label" "fieldName" "InviteModeLabel" "xpos" "26" "ypos" "50" "zpos" "3" "wide" "208" "tall" "20" "proportionaltoparent" "1" "labeltext" "#TF_MM_InviteMode" "textAlignment" "west" "font" "HudFontSmallestBold" "smallcheckimage" "1" "fgcolor_override" "TanDark" "sound_depressed" "UI/buttonclickrelease.wav" "button_activation_type" "1" } "InviteModeComboBox" { // "ControlName" "ComboBox" "fieldName" "InviteModeComboBox" "xpos" "26" "ypos" "66" "zpos" "1" "wide" "200" "tall" "15" "textAlignment" "west" "font" "HudFontSmallestBold" "keyboardinputenabled" "0" "editable" "0" "bgcolor_override" "0 0 0 255" "fgcolor_override" "235 226 202 255" "disabledFgColor_override" "235 226 202 255" "disabledBgColor_override" "0 0 0 0" "selectionColor_override" "0 0 0 0" "selectionTextColor_override" "235 226 202 255" "defaultSelectionBG2Color_override" "0 0 0 0" } "IgnorePartyInvites" { "ControlName" "CvarToggleCheckButton" "fieldName" "IgnorePartyInvites" "xpos" "23" "ypos" "80" "zpos" "3" "wide" "208" "tall" "20" "proportionaltoparent" "1" "labeltext" "#TF_MM_IgnoreInvites" "textAlignment" "west" "font" "HudFontSmallestBold" "smallcheckimage" "1" "sound_depressed" "UI/buttonclickrelease.wav" "button_activation_type" "1" "cvar_name" "tf_party_ignore_invites" } "KeepPartyOnSameTeam" { "ControlName" "CvarToggleCheckButton" "fieldName" "KeepPartyOnSameTeam" "xpos" "23" "ypos" "95" "zpos" "3" "wide" "250" "tall" "20" "proportionaltoparent" "1" "labeltext" "" "textAlignment" "west" "font" "HudFontSmallestBold" "smallcheckimage" "1" "enabled" "0" "sound_depressed" "UI/buttonclickrelease.wav" "button_activation_type" "1" } "KeepPartyOnSameTeamLabel" { "ControlName" "Label" "fieldName" "KeepPartyOnSameTeamLabel" "xpos" "42" "ypos" "95" "zpos" "3" "wide" "250`" "tall" "20" "proportionaltoparent" "1" "labeltext" "#TF_MM_PartySameTeam" "textAlignment" "west" "font" "HudFontSmallestBold" "smallcheckimage" "1" "sound_depressed" "UI/buttonclickrelease.wav" "button_activation_type" "1" "fgcolor_override" "TanDark" } "CustomPingCheckButton" { "ControlName" "CvarToggleCheckButton" "fieldName" "CustomPingCheckButton" "xpos" "23" "ypos" "110" "zpos" "3" "wide" "208" "tall" "20" "proportionaltoparent" "1" "labeltext" "" "textAlignment" "west" "font" "HudFontSmallBold" "smallcheckimage" "1" "actionsignallevel" "1" "sound_depressed" "UI/buttonclickrelease.wav" "button_activation_type" "1" "cvar_name" "tf_mm_custom_ping_enabled" } // VGUI is weird and makes some checkboxes have their text lower than it's supposed to be // and the above checkbox has that behavior. To get around it, make another label "CheckLabel" { "ControlName" "Label" "fieldName" "CheckLabel" "xpos" "42" "ypos" "110" "zpos" "3" "wide" "208" "tall" "20" "proportionaltoparent" "1" "labeltext" "#TF_LobbyContainer_CustomPingButton" "textAlignment" "west" "font" "HudFontSmallestBold" "smallcheckimage" "1" "sound_depressed" "UI/buttonclickrelease.wav" "button_activation_type" "1" } "DescLabel" { "ControlName" "CExLabel" "fieldName" "DescLabel" "xpos" "43" "ypos" "127" "zpos" "3" "wide" "p0.81" "tall" "45" "proportionaltoparent" "1" "labeltext" "#TF_LobbyContainer_CustomPingDesc" "textAlignment" "north-west" "font" "HudFontSmallest" "wrap" "1" "fgcolor" "117 107 94 255" "sound_depressed" "UI/buttonclickrelease.wav" "button_activation_type" "1" } "CurrentPingLabel" { "ControlName" "Label" "fieldName" "CurrentPingLabel" "xpos" "27" "ypos" "160" "zpos" "0" "wide" "f0" "tall" "20" "proportionaltoparent" "1" "labeltext" "" "textAlignment" "west" "font" "HudFontSmallestBold" "mouseinputenabled" "0" } "PingSlider" { "ControlName" "CCvarSlider" "fieldName" "PingSlider" "xpos" "rs1-10" "ypos" "175" "wide" "f40" "tall" "30" "autoResize" "0" "pinCorner" "0" "RoundedCorners" "15" "pin_corner_to_sibling" "0" "pin_to_sibling_corner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "proportionaltoparent" "1" "cvar_name" "tf_mm_custom_ping" "use_convar_minmax" "1" } "DataCenterContainer" { "ControlName" "EditablePanel" "fieldName" "DataCenterContainer" "xpos" "rs1-10" "ypos" "210" "zpos" "100" "wide" "f37" "tall" "f220" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "proportionaltoparent" "1" "DataCenterList" { "ControlName" "CScrollableList" "fieldName" "DataCenterList" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "restrict_width" "0" "ScrollBar" { "ControlName" "ScrollBar" "FieldName" "ScrollBar" "xpos" "rs1-1" "ypos" "0" "tall" "f0" "wide" "5" // This gets slammed from client schme. GG. "zpos" "1000" "nobuttons" "1" "proportionaltoparent" "1" "Slider" { "fgcolor_override" "TanDark" } "UpButton" { "ControlName" "Button" "FieldName" "UpButton" "visible" "0" } "DownButton" { "ControlName" "Button" "FieldName" "DownButton" "visible" "0" } } } "Frame" { "Controlname" "EditablePanel" "fieldName" "Frame" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "zpos" "5" "proportionaltoparent" "1" "border" "InnerShadowBorder" "mouseinputenabled" "0" } "Background" { "ControlName" "EditablePanel" "fieldname" "Background" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "f0" "visible" "1" "PaintBackgroundType" "0" "proportionaltoparent" "1" "paintborder" "1" "border" "ReplayDefaultBorder" } } "ReturnButton" { "ControlName" "CExButton" "fieldName" "ReturnButton" "visible" "0" if_left { "visible" "0" } } } ================================================ FILE: resource/ui/matchmakingplaylist.res ================================================ "resource/ui/matchmakingdashboardcasualcriteria.res" { "EventEntry" { "ControlName" "CEventPlayListEntry" "fieldName" "EventEntry" "xpos" "0" "ypos" "3" "tall" "60" "wide" "200" "proportionaltoparent" "1" "button_command" "play_event" } "CasualLabel" { "ControlName" "Label" "fieldName" "CasualLabel" "xpos" "0" "ypos" "5" "zpos" "15" "tall" "18" "wide" "180" "labeltext" "#MMenu_PlayList_Casual_Button" "textAlignment" "center" "font" "FontBold14" "fgcolor_override" "TanLight" "proportionaltoparent" "1" "pin_to_sibling" "CasualEntry" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "CasualEntry" { "ControlName" "CPlayListEntry" "fieldName" "CasualEntry" "xpos" "r210" "ypos" "25" "tall" "40" "wide" "180" "proportionaltoparent" "0" "image_name" "replay/thumbnails/main_menu/main_menu_button_casual" "button_token" "#MMenu_PlayList_Casual_Button" "button_command" "play_casual" "desc_token" "#MMenu_PlayList_Casual_Desc" "matchgroup" "7" // k_eTFMatchGroup_Casual_12v12 } //--------------- "CompetitiveLabel" { "ControlName" "Label" "fieldName" "CompetitiveLabel" "xpos" "5" "ypos" "0" "zpos" "15" "tall" "18" "wide" "180" "labeltext" "#MMenu_PlayList_Competitive_Button" "textAlignment" "center" "font" "FontBold14" "fgcolor_override" "TanLight" "proportionaltoparent" "1" "pin_to_sibling" "CasualLabel" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "CompetitiveEntry" { "ControlName" "CPlayListEntry" "fieldName" "CompetitiveEntry" "xpos" "0" "ypos" "5" "tall" "40" "wide" "180" "proportionaltoparent" "1" "image_name" "replay/thumbnails/main_menu/main_menu_button_competitive" "button_token" "#MMenu_PlayList_Competitive_Button" "button_command" "play_competitive" "desc_token" "#MMenu_PlayList_Competitive_Desc" "matchgroup" "2" // k_eTFMatchGroup_Ladder_6v6 "pin_to_sibling" "CompetitiveLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } //--------------- "MvMLabel" { "ControlName" "Label" "fieldName" "MvMLabel" "xpos" "5" "ypos" "0" "zpos" "15" "tall" "18" "wide" "180" "labeltext" "#MMenu_PlayList_MvM_Button" "textAlignment" "center" "font" "FontBold14" "fgcolor_override" "TanLight" "proportionaltoparent" "1" "pin_to_sibling" "CompetitiveLabel" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "MvMEntry" { "ControlName" "CPlayListEntry" "fieldName" "MvMEntry" "xpos" "0" "ypos" "5" "tall" "40" "wide" "180" "proportionaltoparent" "1" "image_name" "replay/thumbnails/main_menu/main_menu_button_mvm" "button_token" "#MMenu_PlayList_MvM_Button" "button_command" "play_mvm" "desc_token" "#MMenu_PlayList_MvM_Desc" "matchgroup" "1" // k_eTFMatchGroup_MvM_MannUp "pin_to_sibling" "MvMLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } //--------------- "ServerBrowserLabel" { "ControlName" "Label" "fieldName" "ServerBrowserLabel" "xpos" "5" "ypos" "0" "zpos" "15" "tall" "18" "wide" "180" "labeltext" "#MMenu_BrowseServers" "textAlignment" "center" "font" "FontBold14" "fgcolor_override" "TanLight" "proportionaltoparent" "1" "pin_to_sibling" "MvMLabel" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ServerBrowserEntry" { "ControlName" "CPlayListEntry" "fieldName" "ServerBrowserEntry" "xpos" "0" "ypos" "5" "tall" "40" "wide" "180" "proportionaltoparent" "1" "image_name" "replay/thumbnails/main_menu/main_menu_button_community_server" "button_token" "#MMenu_PlayList_ServerBrowser_Button" "button_command" "play_community" "desc_token" "#MMenu_PlayList_ServerBrowser_Desc" "matchgroup" "1" // k_eTFMatchGroup_MvM_MannUp "pin_to_sibling" "ServerBrowserLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "TrainingEntry" { "ControlName" "CPlayListEntry" "fieldName" "TrainingEntry" "xpos" "9999" } "CreateServerEntry" { "ControlName" "CPlayListEntry" "fieldName" "CreateServerEntry" "xpos" "9999" } "ScrollBar" { "ControlName" "ScrollBar" "FieldName" "ScrollBar" "xpos" "9999" } } ================================================ FILE: resource/ui/matchmakingtooltip.res ================================================ "resource/ui/matchmakingtooltip.res" { "TooltipPanel" { //"ControlName" "EditablePanel" "fieldName" "TooltipPanel" "xpos" "0" "ypos" "0" "zpos" "30000" "wide" "300" "tall" "100" "visible" "0" "PaintBackgroundType" "2" "border" "MainMenuBGBorder" "mouseinputenabled" "0" "TipLabel" { "ControlName" "CExLabel" "fieldName" "TipLabel" "labelText" "%tiptext%" "textAlignment" "center" "xpos" "10" "ypos" "10" "zpos" "2" "wide" "0" "wide_minmode" "0" "tall" "0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "235 226 202 255" "auto_wide_tocontents" "1" "auto_tall_tocontents" "1" "wrap" "1" } } } ================================================ FILE: resource/ui/mediccallerpanel.res ================================================ "resource/ui/mediccallerpanel.res" { "CallerBG" { "ControlName" "CTFImagePanel" "fieldName" "CallerBG" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "30" "tall" "30" "visible" "0" "enabled" "1" "image" "../effects/speech_mediccall_hud" "scaleImage" "1" } "CallerBurning" { "ControlName" "CTFImagePanel" "fieldName" "CallerBurning" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "45" "tall" "45" "visible" "0" "enabled" "1" "image" "../effects/speech_mediccall_fire" "scaleImage" "1" } "CallerHealth" { "ControlName" "CTFImagePanel" "fieldName" "CallerHealth" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "30" "tall" "30" "visible" "0" "enabled" "1" "image" "../effects/speech_mediccall_hurt" "scaleImage" "1" } "CallerBleeding" { "ControlName" "CTFImagePanel" "fieldName" "CallerBleeding" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "45" "tall" "45" "visible" "0" "enabled" "1" "image" "../effects/speech_mediccall_bleed" "scaleImage" "1" } "CallerAuto" { "ControlName" "CTFImagePanel" "fieldName" "CallerAuto" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "30" "tall" "30" "visible" "0" "enabled" "1" "image" "../effects/speech_mediccall_attention" "scaleImage" "1" } "CallerReviveEasy" { "ControlName" "CTFImagePanel" "fieldName" "CallerReviveEasy" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "30" "tall" "30" "visible" "0" "enabled" "1" "image" "../effects/speech_mediccall_tombstone_noz" "scaleImage" "1" } "CallerReviveMedium" { "ControlName" "CTFImagePanel" "fieldName" "CallerReviveMedium" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "30" "tall" "30" "visible" "0" "enabled" "1" "image" "../effects/speech_mediccall_tombstone_1_noz" "scaleImage" "1" } "CallerReviveHard" { "ControlName" "CTFImagePanel" "fieldName" "CallerReviveHard" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "30" "tall" "30" "visible" "0" "enabled" "1" "image" "../effects/speech_mediccall_tombstone_2_noz" "scaleImage" "1" } } ================================================ FILE: resource/ui/mediguninfo.res ================================================ "resource/ui/mediguninfo.res" { "MedigunInfo" { "ControlName" "Frame" "fieldName" "MedigunInfo" "xpos" "0" "ypos" "20" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "red_base_x" "0" "red_base_y" "c28" "red_offset_x" "0" "red_offset_y" "18" "blu_base_x" "0" "blu_base_y" "c46" "blu_offset_x" "0" "blu_offset_y" "-18" } } ================================================ FILE: resource/ui/medigunpanel.res ================================================ "resource/ui/medigunpanel.res" { "MedigunPanel" { "ControlName" "Frame" "fieldName" "MedigunPanel" "wide" "130" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "player-dead" { //"visible" "0" } } "PanelCover" { "ControlName" "ImagePanel" "fieldName" "PanelCover" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "HudBlack" "player-dead" { //"visible" "0" } } "MedigunPanelBackground" { "ControlName" "ScalableImagePanel" "fieldName" "MedigunPanelBackground" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "proportionaltoparent" "1" "image" "../HUD/color_panel_brown" "scaleImage" "1" "src_corner_height" "22" // pixels inside the image "src_corner_width" "22" "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional "draw_corner_height" "0" "player-alive" { "team-red" { "image" "../HUD/color_panel_red" } "team-blu" { "image" "../HUD/color_panel_blu" } } } "MedigunPanelChargeTypeIcon" { "ControlName" "ImagePanel" "fieldName" "MedigunPanelChargeTypeIcon" "xpos" "2" "ypos" "2" "zpos" "2" "wide" "12" "tall" "12" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "replay/thumbnails/uber" "team-red" { "drawcolor" "HUDRedTeamSolid" } "team-blu" { "drawcolor" "HUDBlueTeamSolid" } "player-alive" { "medigun-kritzkrieg" { "image" "replay/thumbnails/kritz" } "medigun-quickfix" { "image" "replay/thumbnails/quickfix" } "medigun-vaccinator" { "ypos" "0" "wide" "17" "tall" "17" "drawcolor_override" "" "team-red" { "resist-bullet" { "image" "../HUD/defense_buff_bullet_red" } "resist-explosive" { "image" "../HUD/defense_buff_explosion_red" } "resist-fire" { "image" "../HUD/defense_buff_fire_red" } } "team-blu" { "resist-bullet" { "image" "../HUD/defense_buff_bullet_blue" } "resist-explosive" { "image" "../HUD/defense_buff_explosion_blue" } "resist-fire" { "image" "../HUD/defense_buff_fire_blue" } } } } "player-dead" { "drawcolor_override" "130 130 130 225" "image" "replay/thumbnails/deadshield" } } "MedigunPanelChargeLabel" { "ControlName" "Label" "fieldName" "MedigunPanelChargeLabel" "xpos" "105" "ypos" "0" "zpos" "2" "wide" "25" "tall" "15" "autoResize" "1" "visible" "1" "enabled" "1" "labelText" "%charge%" "tabPosition" "0" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontBold12" "fgcolor" "TanLight" "medigun-vaccinator" { "labelText" "%charges%" } "player-dead" { "visible" "0" } } "MedigunPanelChargeLabelShadow" { "ControlName" "Label" "fieldName" "MedigunPanelChargeLabelShadow" "xpos" "-2" "ypos" "-2" "zpos" "2" "wide" "25" "tall" "15" "autoResize" "1" "visible" "0" "enabled" "0" "labelText" "%charge%" "tabPosition" "0" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontBold12" "fgcolor_override" "Black" "pin_to_sibling" "MedigunPanelChargeLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" "player-dead" { "visible" "0" } } "MedigunPanelChargeMeter" { "ControlName" "ContinuousProgressBar" "fieldName" "MedigunPanelChargeMeter" "font" "Default" "xpos" "16" "ypos" "0" "zpos" "2" "wide" "114" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "bgcolor_override" "HUDBlueTeamDark" "fgcolor_override" "HUDBlueTeam" "direction" "east" "variable" "charge" "medigun-vaccinator" { "visible" "0" } "player-dead" { "visible" "0" } "team-red" { "bgcolor_override" "HUDRedTeamDark" "fgcolor_override" "HUDRedTeam" } } "MedigunPanelNameLabel" { "ControlName" "Label" "fieldName" "MedigunPanelNameLabel" "xpos" "18" "ypos" "0" "zpos" "3" "wide" "80" "tall" "15" "autoResize" "1" "labelText" "#TF_Weapon_Medigun" "visible" "1" "enabled" "1" "tabPosition" "0" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "textinsetx" "10" "font" "FontRegular10" "fgcolor_override" "TanLight" "proportionaltoparent" "1" "medigun-medigun" { "labelText" "#TF_Weapon_Medigun" } "medigun-kritzkrieg" { "labelText" "#TF_Unique_Achievement_Medigun1" } "medigun-quickfix" { "labelText" "#TF_Unique_MediGun_QuickFix" } "medigun-vaccinator" { "labelText" "#TF_Weapon_Medigun_Resist" } "player-dead" { "visible" "0" } } "MedigunPanelNameLabelShadow" { "ControlName" "Label" "fieldName" "MedigunPanelNameLabelShadow" "xpos" "-2" "ypos" "-2" "zpos" "3" "wide" "80" "tall" "15" "autoResize" "1" "labelText" "#TF_Weapon_Medigun" "visible" "0" "enabled" "0" "tabPosition" "0" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "textinsetx" "6" "font" "FontRegular10" "fgcolor_override" "Black" "proportionaltoparent" "1" "pin_to_sibling" "MedigunPanelNameLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" "medigun-medigun" { "labelText" "#TF_Weapon_Medigun" } "medigun-kritzkrieg" { "labelText" "#TF_Unique_Achievement_Medigun1" } "medigun-quickfix" { "labelText" "#TF_Unique_MediGun_QuickFix" } "medigun-vaccinator" { "labelText" "#TF_Weapon_Medigun_Resist" } "player-dead" { "visible" "0" } } } ================================================ FILE: resource/ui/mvmcreditspendpanel.res ================================================ "resource/ui/mvmcreditspendpanel.res" { "HeaderLabel" { "ControlName" "CExLabel" "fieldName" "HeaderLabel" "font" "FontRegular14" "labelText" "%header%" "textAlignment" "north-west" "xpos" "0" "ypos" "0" "wide" "300" "tall" "15" "fgcolor" "TanLight" } "TableBackground" { "ControlName" "EditablePanel" "fieldName" "TableBackground" "xpos" "0" "ypos" "14" "zpos" "-1" "wide" "190" "tall" "42" "visible" "1" "bgcolor_override" "Transparent" } "UpgradesLabel" { "ControlName" "CExLabel" "fieldName" "UpgradesLabel" "font" "FontRegular12" "labelText" "#TF_PVE_Upgrades" "textAlignment" "north-west" "xpos" "0" "ypos" "15" "wide" "70" "tall" "20" "fgcolor" "TanLight" } "UpgradesCountLabel" { "ControlName" "CExLabel" "fieldName" "UpgradesCountLabel" "font" "FontRegular12" "labelText" "%upgrades%" "textAlignment" "north-east" "xpos" "75" "ypos" "15" "wide" "30" "tall" "20" "fgcolor" "TanLight" } "BuyBackLabel" { "ControlName" "CExLabel" "fieldName" "BuyBackLabel" "font" "FontRegular12" "labelText" "#TF_PVE_Buybacks" "textAlignment" "north-west" "xpos" "0" "ypos" "27" "wide" "70" "tall" "20" "fgcolor" "TanLight" } "BuyBackCountLabel" { "ControlName" "CExLabel" "fieldName" "BuyBackCountLabel" "font" "FontRegular12" "labelText" "%buybacks%" "textAlignment" "north-east" "xpos" "75" "ypos" "27" "wide" "30" "tall" "20" "fgcolor" "TanLight" } "BottleLabel" { "ControlName" "CExLabel" "fieldName" "BottleLabel" "font" "FontRegular12" "labelText" "#TF_PVE_Bottles" "textAlignment" "north-west" "xpos" "0" "ypos" "39" "wide" "70" "tall" "20" "fgcolor" "TanLight" } "BottleCountLabel" { "ControlName" "CExLabel" "fieldName" "BottleCountLabel" "font" "FontRegular12" "labelText" "%bottles%" "textAlignment" "north-east" "xpos" "75" "ypos" "39" "wide" "30" "tall" "20" "fgcolor" "TanLight" } } ================================================ FILE: resource/ui/mvmcreditsubpanel.res ================================================ "resource/ui/mvmcreditsubpanel.res" { "HeaderLabel" { "ControlName" "CExLabel" "fieldName" "HeaderLabel" "font" "FontRegular14" "labelText" "%header%" "textAlignment" "north-west" "xpos" "0" "ypos" "0" "wide" "300" "tall" "15" "fgcolor" "TanLight" } "TableBackground" { "ControlName" "EditablePanel" "fieldName" "TableBackground" "xpos" "0" "ypos" "14" "zpos" "-1" "wide" "190" "tall" "42" "visible" "1" "bgcolor_override" "Transparent" } "CreditCollectedTextLabel" { "ControlName" "CExLabel" "fieldName" "CreditCollectedTextLabel" "font" "FontRegular12" "labelText" "#TF_PVE_Collected" "textAlignment" "north-west" "xpos" "0" "ypos" "15" "wide" "70" "tall" "12" "fgcolor" "TanLight" } "CreditCollectedCountLabel" { "ControlName" "CExLabel" "fieldName" "CreditCollectedCountLabel" "font" "FontRegular12" "labelText" "%creditscollected%" "textAlignment" "north-east" "xpos" "75" "ypos" "15" "wide" "30" "tall" "12" "fgcolor" "CreditsGreen" } "CreditMissedTextLabel" { "ControlName" "CExLabel" "fieldName" "CreditMissedTextLabel" "font" "FontRegular12" "labelText" "#TF_PVE_Missed" "textAlignment" "north-west" "xpos" "0" "ypos" "27" "wide" "70" "tall" "12" "fgcolor" "TanLight" } "CreditMissedCountLabel" { "ControlName" "CExLabel" "fieldName" "CreditMissedCountLabel" "font" "FontRegular12" "labelText" "%creditsmissed%" "textAlignment" "north-east" "xpos" "75" "ypos" "27" "wide" "30" "tall" "12" "fgcolor" "RedSolid" } "CreditBonusTextLabel" { "ControlName" "CExLabel" "fieldName" "CreditBonusTextLabel" "font" "FontRegular12" "labelText" "#TF_PVE_Bonus" "textAlignment" "north-west" "xpos" "0" "ypos" "39" "wide" "70" "tall" "12" "fgcolor" "TanLight" } "CreditBonusCountLabel" { "ControlName" "CExLabel" "fieldName" "CreditBonusCountLabel" "font" "FontRegular12" "labelText" "%creditbonus%" "textAlignment" "north-east" "xpos" "75" "ypos" "39" "wide" "30" "tall" "12" "fgcolor" "CreditsGreen" } "CreditRatingLabel" { "ControlName" "CExLabel" "fieldName" "CreditRatingLabel" "font" "HudFontSmallishBold" "labelText" "%rating%" "textAlignment" "center" "xpos" "66" "ypos" "-3" "zpos" "1" "wide" "70" "tall" "20" "fgcolor" "TanLight" } } ================================================ FILE: resource/ui/mvmcriteria.res ================================================ "resource/ui/mvmcriteria.res" { "MvMTourOfDutyGroupBox" { "ControlName" "EditablePanel" "fieldName" "MvMTourOfDutyGroupBox" "xpos" "0" "ypos" "10" "zpos" "-1" "wide" "400" "tall" "225" "ChallengeLabel" { "ControlName" "Label" "fieldName" "ChallengeLabel" "font" "FontBold20" "labelText" "#TF_MvM_TourOfDuty" "textAlignment" "south-west" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "400" "tall" "26" "fgcolor_override" "TanLight" } "DifficultyLabel" { "ControlName" "Label" "fieldName" "DifficultyLabel" "font" "FontBold10" "labelText" "#TF_MvM_Difficulty" "textAlignment" "south-west" "xpos" "189" "ypos" "0" "zpos" "0" "wide" "100" "tall" "24" "fgcolor_override" "TanLight" } "CompleteLabel" { "ControlName" "Label" "fieldName" "CompleteLabel" "font" "FontBold10" "labelText" "#TR_ProgressDone" "textAlignment" "south-west" "xpos" "279" "ypos" "0" "zpos" "0" "wide" "80" "tall" "24" "fgcolor_override" "TanLight" } "TourLevelLabel" { "ControlName" "Label" "fieldName" "TourLevelLabel" "font" "FontBold9" "labelText" "#TF_MvM_TourNumber" "textAlignment" "south-west" "xpos" "345" "ypos" "0" "zpos" "0" "wide" "80" "tall" "26" "fgcolor_override" "TanLight" } "TourlistGroupBox" { "ControlName" "EditablePanel" "fieldName" "TourlistGroupBox" "xpos" "0" "ypos" "28" "zpos" "-1" "wide" "400" "tall" "197" "PaintBackgroundType" "0" "paintbackground" "1" "bgcolor_override" "DarkerGrey" "GreyOutPanel" { "ControlName" "EditablePanel" "fieldName" "GreyOutPanel" "xpos" "0" "ypos" "0" "zpos" "200" "wide" "400" "tall" "225" "visible" "0" "bgcolor_override" "128 128 128 128" } "TourList" { "ControlName" "SectionedListPanel" "fieldName" "TourList" "font" "HudFontSmall" "xpos" "0" "ypos" "5" "zpos" "0" "wide" "400" "tall" "197" "linespacing" "12" } } "TourDifficultyWarning" { "ControlName" "Label" "fieldName" "TourDifficultyWarning" "font" "HudFontSmall" "labelText" "#TF_MVM_Tour_ExpertDifficulty_Warning" "xpos" "30" "ypos" "100" "zpos" "2" "wide" "340" "tall" "120" "textAlignment" "north-west" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "250 114 45 255" } } "MannUpTourLootDescriptionBox" { "ControlName" "EditablePanel" "fieldName" "MannUpTourLootDescriptionBox" "xpos" "0" "ypos" "240" "zpos" "-1" "wide" "400" "tall" "120" "PaintBackgroundType" "0" "paintbackground" "1" "bgcolor_override" "DarkerGrey" "TourLootImage" { "ControlName" "ImagePanel" "fieldName" "TourLootImage" "xpos" "280" "ypos" "6" "zpos" "0" "wide" "110" "tall" "110" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "image" "pve/mvm_loot_image" "scaleImage" "1" } "TourLootTitle" { "ControlName" "Label" "fieldName" "TourLootTitle" "font" "FontBold18" "labelText" "#TF_MvM_TourLootTitle" "textAlignment" "west" "xpos" "10" "ypos" "5" "zpos" "0" "wide" "200" "tall" "30" } "TourLootDetailLabel" { "ControlName" "Label" "fieldName" "TourLootDetailLabel" "font" "FontRegular12" "labelText" "%tour_loot_detail%" "textAlignment" "west" "wrap" "1" "xpos" "10" "ypos" "30" "zpos" "0" "wide" "280" "tall" "50" } } "MvMEconItemsGroupBox" { "ControlName" "EditablePanel" "fieldName" "MvMEconItemsGroupBox" "xpos" "0" "ypos" "240" "zpos" "-1" "wide" "400" "tall" "120" "bgcolor_override" "0 0 0 200" "border" "QuickplayBorder" "InventoryTitleLabel" { "ControlName" "Label" "fieldName" "InventoryTitleLabel" "font" "FontBold18" "labelText" "#TF_MvM_InventoryTitle" "textAlignment" "north-west" "xpos" "8" "ypos" "5" "zpos" "0" "wide" "200" "tall" "20" } "MannUpTicketAd" { "ControlName" "CCyclingAdContainerPanel" "fieldName" "MannUpTicketAd" "xpos" "3" "ypos" "30" "zpos" "0" "wide" "70" "tall" "40" "visible" "1" "enabled" "1" "mouseinputenabled" "1" "paintborder" "0" "items" { "0" { "item" "Tour of Duty Ticket" "show_market" "0" "show_name" "0" "show_ad_text" "0" "show_background" "0" } } } "MannUpTicketCountLabel" { "ControlName" "Label" "fieldName" "MannUpTicketCountLabel" "font" "FontBold20" "labelText" "%ticket_count%" "textAlignment" "north-west" "fgcolor_override" "201 79 57 255" "xpos" "11" "ypos" "28" "zpos" "2" "wide" "60" "tall" "30" "mouseinputenabled" "0" } "SquadSurplusTicketAd" { "ControlName" "CCyclingAdContainerPanel" "fieldName" "SquadSurplusTicketAd" "xpos" "83" "ypos" "30" "zpos" "0" "wide" "70" "tall" "40" "visible" "1" "enabled" "1" "mouseinputenabled" "1" "paintborder" "0" "items" { "0" { "item" "MvM Squad Surplus Voucher" "show_market" "0" "show_name" "0" "show_ad_text" "0" "show_background" "0" } } } "SquadSurplusCountLabel" { "ControlName" "Label" "fieldName" "SquadSurplusCountLabel" "font" "FontBold20" "labelText" "%voucher_count%" "textAlignment" "north-west" "fgcolor_override" "201 79 57 255" "xpos" "89" "ypos" "28" "zpos" "2" "wide" "60" "tall" "30" "mouseinputenabled" "0" } "SquadSurplusCheckButton" { "ControlName" "CheckButton" "fieldName" "SquadSurplusCheckButton" "xpos" "5" "ypos" "82" "zpos" "2" "wide" "25" "tall" "25" "font" "HudFontSmall" "labelText" "" } "ActivateSquadSurplusLabel" { "ControlName" "Label" "fieldName" "ActivateSquadSurplusLabel" "font" "FontRegular12" "labelText" "#TF_MvM_ActivateSquadSurplus" "textAlignment" "west" "wrap" "1" "xpos" "33" "ypos" "80" "zpos" "0" "wide" "140" "tall" "25" } "Slot0" { "ControlName" "CMvMPlayerTicketStatusPanel" "fieldName" "Slot0" "xpos" "200" "ypos" "5" "zpos" "0" "wide" "28" "tall" "200" "party_slot" "0" } "Slot1" { "ControlName" "CMvMPlayerTicketStatusPanel" "fieldName" "Slot1" "xpos" "200+30" "ypos" "5" "zpos" "0" "wide" "28" "tall" "200" "party_slot" "1" } "Slot2" { "ControlName" "CMvMPlayerTicketStatusPanel" "fieldName" "Slot2" "xpos" "200+30+30" "ypos" "5" "zpos" "0" "wide" "28" "tall" "200" "party_slot" "2" } "Slot3" { "ControlName" "CMvMPlayerTicketStatusPanel" "fieldName" "Slot3" "xpos" "200+30+30+30" "ypos" "5" "zpos" "0" "wide" "28" "tall" "200" "party_slot" "3" } "Slot4" { "ControlName" "CMvMPlayerTicketStatusPanel" "fieldName" "Slot4" "xpos" "200+30+30+30+30" "ypos" "5" "zpos" "0" "wide" "28" "tall" "200" "party_slot" "4" } "Slot5" { "ControlName" "CMvMPlayerTicketStatusPanel" "fieldName" "Slot5" "xpos" "200+30+30+30+30+30" "ypos" "5" "zpos" "0" "wide" "28" "tall" "200" "party_slot" "5" } "MissingTicketsAlertImage" { "ControlName" "ImagePanel" "fieldName" "MissingTicketsAlertImage" "xpos" "195" "ypos" "r40" "zpos" "105" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "image" "glyph_alert" "scaleImage" "1" "mouseinputenabled" "0" "proportionaltoparent" "1" "drawcolor" "255 255 255 255" } "MissingTicketsLabel" { "ControlName" "Label" "fieldName" "MissingTicketsLabel" "font" "FontRegular10" "fgcolor_override" "TanDark" "labelText" "#TF_Matchmaking_CantQueue_NoTicket" "textAlignment" "south-west" "wrap" "1" "xpos" "230" "ypos" "rs1-18" "zpos" "0" "wide" "165" "tall" "35" "proportionaltoparent" "1" } } "MvMPracticeGroupBox" { "ControlName" "EditablePanel" "fieldName" "MvMPracticeGroupBox" "xpos" "0" "ypos" "240" "zpos" "-1" "wide" "400" "tall" "120" "PaintBackgroundType" "2" "paintbackground" "1" "bgcolor_override" "0 0 0 200" "border" "QuickplayBorder" "NoMannUpImage" { "ControlName" "ImagePanel" "fieldName" "NoMannUpImage" "xpos" "250" "ypos" "6" "zpos" "0" "wide" "110" "tall" "110" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "image" "pve/mvm_loot_image" "scaleImage" "1" } "NoMannUpTitleLabel" { "ControlName" "Label" "fieldName" "NoMannUpTitleLabel" "font" "HudFontSmallBold" "labelText" "#TF_MvM_NoMannUpTitle" "textAlignment" "west" "xpos" "10" "ypos" "5" "zpos" "0" "wide" "200" "tall" "30" } "NoMannUpDescriptionLabel" { "ControlName" "Label" "fieldName" "NoMannUpDescriptionLabel" "font" "HudFontSmall" "labelText" "#TF_MvM_NoMannUpDescription" "textAlignment" "west" "wrap" "1" "xpos" "10" "ypos" "30" "zpos" "0" "wide" "280" "tall" "50" } "MannUpNowButton" { "ControlName" "CExButton" "fieldName" "MannUpNowButton" "xpos" "10" "ypos" "85" "zpos" "2" "wide" "120" "tall" "20" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_MvM_MannUpNow" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "mann_up_now" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } "MvMSelectChallengeGroupBox" { "ControlName" "EditablePanel" "fieldName" "MvMSelectChallengeGroupBox" "xpos" "0" "ypos" "10" "zpos" "-1" "wide" "400" "tall" "225" "ChallengeLabel" { "ControlName" "Label" "fieldName" "ChallengeLabel" "font" "FontBold20" "labelText" "%tour_name%" "textAlignment" "south-west" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "400" "tall" "26" "fgcolor_override" "TanLight" } "CompleteLabel" { "ControlName" "Label" "fieldName" "CompleteLabel" "font" "FontBold14" "labelText" "%complete_heading%" "textAlignment" "south-west" "xpos" "255" "ypos" "2" "zpos" "0" "wide" "100" "tall" "24" "fgcolor_override" "TanLight" } "TourLevelImage" { "ControlName" "ImagePanel" "fieldName" "TourLevelImage" "xpos" "323" "ypos" "-11" "zpos" "0" "wide" "80" "tall" "80" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "image" "../hud/mvm_tours" "scaleImage" "1" } "TourLevelLabel" { "ControlName" "Label" "fieldName" "TourLevelLabel" "font" "FontBold14" "labelText" "%tour_level%" "textAlignment" "south" "xpos" "0" "ypos" "-13" "zpos" "1" "wide" "70" "tall" "26" "fgcolor_override" "Black" "pin_to_sibling" "TourLevelImage" "pin_corner_to_sibling" "PIN_CENTER_TOP" "pin_to_sibling_corner" "PIN_CENTER_TOP" } "ChallengeListGroupBox" { "ControlName" "EditablePanel" "fieldName" "ChallengeListGroupBox" "xpos" "0" "ypos" "28" "zpos" "-1" "wide" "400" "tall" "197" "PaintBackgroundType" "2" "paintbackground" "1" "bgcolor_override" "0 0 0 200" "border" "QuickplayBorder" "GreyOutPanel" { "ControlName" "EditablePanel" "fieldName" "GreyOutPanel" "xpos" "0" "ypos" "0" "zpos" "200" "wide" "400" "tall" "225" "visible" "0" "bgcolor_override" "128 128 128 128" } "ChallengeList" { "ControlName" "SectionedListPanel" "fieldName" "ChallengeList" "font" "HudFontSmall" "xpos" "70" "ypos" "5" "zpos" "0" "wide" "330" "tall" "192" "linespacing" "12" } } } } ================================================ FILE: resource/ui/mvminworldcurrency.res ================================================ "resource/ui/mvminworldcurrency.res" { "CurrencyBG" { "ControlName" "ImagePanel" "fieldName" "CurrencyBG" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "fillcolor" "TanLight" } "CurrencyLabel" { "ControlName" "CExLabel" "fieldName" "CurrencyLabel" "font" "FontRegular10" "xpos" "5" "ypos" "0" "zpos" "3" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "west" "allcaps" "1" "fgcolor" "HudWhite" "labelText" "#TF_PVE_Missed" } "CurrencyGood" { "ControlName" "CExLabel" "fieldName" "CurrencyGood" "font" "FontBold20" "fgcolor" "CreditsGreen" "xpos" "0" "ypos" "0" "zpos" "4" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%currency%" } "CurrencyBad" { "ControlName" "CExLabel" "fieldName" "CurrencyBad" "font" "FontBold18" "fgcolor" "LowHealth" "xpos" "0" "ypos" "0" "zpos" "4" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%currency%" } "CurrencyBadShadow" { "ControlName" "CExLabel" "fieldName" "CurrencyBadShadow" "font" "FontBold18" "fgcolor" "Black" "xpos" "-2" "ypos" "-2" "zpos" "4" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "east" "labelText" "%currency%" "pin_to_sibling" "CurrencyBad" } } ================================================ FILE: resource/ui/mvmscoreboard.res ================================================ "resource/ui/mvmscoreboard.res" { "WaveStatusPanel" { "ControlName" "CWaveStatusPanel" "fieldName" "WaveStatusPanel" "xpos" "c-300" "ypos" "0" "wide" "600" "tall" "67" "verbose" "1" } "PopFileLabel" { "ControlName" "CExLabel" "fieldName" "PopFileLabel" "font" "FontRegular10" "labelText" "%popfile%" "textAlignment" "east" "textinsetx" "1" "xpos" "0" "ypos" "0" "wide" "547" "tall" "11" "pin_to_sibling" "PlayerListBG" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" } "PlayerListBackground" { "ControlName" "ScalableImagePanel" "fieldName" "PlayerListBackground" "visible" "0" "enabled" "0" } "PlayerListBG" { "ControlName" "EditablePanel" "fieldName" "PlayerListBG" "xpos" "c-275" "ypos" "90" "zpos" "-1" "wide" "550" "tall" "150" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } "MvMPlayerList" { "ControlName" "SectionedListPanel" "fieldName" "MvMPlayerList" "xpos" "0" "ypos" "0" "wide" "550" "wide_minmode" "0" "tall" "145" "autoresize" "3" "linespacing" "22" "textcolor" "TanLight" "pin_to_sibling" "PlayerListBG" } "CreditStatsContainer" { "ControlName" "EditablePanel" "fieldName" "CreditStatsContainer" "xpos" "c-275" "ypos" "245" "wide" "275" "tall" "132" "CreditStatsBackground" { "ControlName" "ScalableImagePanel" "fieldName" "CreditStatsBackground" "wide" "0" "visible" "0" "enabled" "0" } "CreditStatsBG" { "ControlName" "EditablePanel" "fieldName" "CreditStatsBG" "xpos" "0" "ypos" "0" "wide" "275" "tall" "132" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" } "CreditsLabel" { "ControlName" "CExLabel" "fieldName" "CreditsLabel" "font" "FontBold22" "labelText" "#TF_PVE_Currency" "textAlignment" "center" "xpos" "0" "ypos" "5" "wide" "275" "tall" "20" } "PreviousWaveCreditInfoPanel" { "ControlName" "CCreditDisplayPanel" "fieldName" "PreviousWaveCreditInfoPanel" "xpos" "17" "ypos" "30" "wide" "130" "tall" "60" } "PreviousWaveCreditSpendPanel" { "ControlName" "CCreditSpendPanel" "fieldName" "PreviousWaveCreditSpendPanel" "xpos" "17" "ypos" "72" "wide" "130" "tall" "60" } "TotalGameCreditSpendPanel" { "ControlName" "CCreditSpendPanel" "fieldName" "TotalGameCreditSpendPanel" "xpos" "153" "ypos" "72" "wide" "130" "tall" "60" } "TotalGameCreditInfoPanel" { "ControlName" "CCreditDisplayPanel" "fieldName" "TotalGameCreditInfoPanel" "xpos" "153" "ypos" "30" "wide" "130" "tall" "60" } "RespecStatusLabel" { "ControlName" "CExLabel" "fieldName" "RespecStatusLabel" "font" "HudFontSmall" "labelText" "%respecstatus%" "textAlignment" "north-east" "xpos" "115" "ypos" "8" "wide" "275" "tall" "20" } } } ================================================ FILE: resource/ui/mvmvictorymannupentry.res ================================================ "resource/ui/mvmvictorymannupentry.res" { "mannup_entry" { "ControlName" "CMvMVictoryMannUpEntry" "fieldName" "mannup_entry" "xpos" "c-320" "ypos" "90" "zpos" "5" "wide" "640" "tall" "320" "visible" "1" "items_columns" "2" "items_xspacing" "55" "items_yspacing" "50" "mouseinputenabled" "1" "modelpanels_kv" { "ControlName" "CItemModelPanel" "xpos" "0" "ypos" "0" "wide" "54" "tall" "42" "visible" "0" "bgcolor_override" "0 0 0 0" "noitem_textcolor" "117 107 94 255" "paintborder" "0" "AutoResize" "0" "skip_autoresize" "1" "PaintBackgroundType" "2" "model_xpos" "2" "model_ypos" "5" "model_wide" "50" "model_tall" "35" "text_ypos" "60" "text_center" "1" "name_only" "1" "inset_eq_x" "2" "inset_eq_y" "2" "use_item_sounds" "1" "itemmodelpanel" { "use_item_rendertarget" "0" "allow_rot" "0" } } "unopenedPanel_kvs" { "ControlName" "ImagePanel" "xpos" "-1000" "ypos" "0" "wide" "54" "tall" "52" "image" "../backpack/player/items/crafting/crate" "scaleimage" "1" "visible" "0" "proportionalToParent" "0" } "BottomLine" { "ControlName" "EditablePanel" "fieldName" "BottomLine" "xpos" "0" "ypos" "0" "wide" "427" "tall" "1" "visible" "0" "bgcolor_override" "TanLight" "proportionalToParent" "1" "pin_to_sibling" "PanelListPanel" "pin_corner_to_sibling" "4" "pin_to_sibling_corner" "6" } "SquadSurplusTicketBackground" { "ControlName" "EditablePanel" "fieldName" "SquadSurplusTicketBackground" "xpos" "-57" "ypos" "7" "wide" "50" "tall" "25" "bgcolor_override" "60 53 46 255" "PaintBackgroundType" "2" "proportionalToParent" "1" "pin_to_sibling" "PanelListPanel" "pin_corner_to_sibling" "0" "pin_to_sibling_corner" "2" "SquadSurplus" { "ControlName" "ImagePanel" "fieldName" "SquadSurplus" "xpos" "c-18" "ypos" "-4" "wide" "35" "tall" "35" "image" "../backpack/crafting/mvm_squad_surplus_ripped" "visible" "1" "enabled" "1" "scaleImage" "1" "proportionalToParent" "1" } } "MannUpTicketBackground" { "ControlName" "EditablePanel" "fieldName" "MannUpTicketBackground" "xpos" "-2" "ypos" "7" "zpos" "-1" "wide" "50" "tall" "25" "bgcolor_override" "60 53 46 255" "PaintBackgroundType" "2" "proportionalToParent" "1" "pin_to_sibling" "PanelListPanel" "pin_corner_to_sibling" "0" "pin_to_sibling_corner" "2" "CompletedCheckOn" { "ControlName" "ImagePanel" "fieldName" "CompletedCheckOn" "xpos" "c-17" "ypos" "-6" "wide" "35" "tall" "35" "image" "../backpack/crafting/mvm_ticket_ripped" "visible" "1" "enabled" "1" "scaleImage" "1" "proportionalToParent" "1" } } "PanelListPanel" { "ControlName" "CPanelListPanel" "fieldName" "PanelListPanel" "xpos" "200" "ypos" "50" "wide" "427" "tall" "225" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "PaintBackgroundType" "0" "bgcolor_override" "0 0 0 0" } "rowpanel_kvs" { "ControlName" "EditablePanel" "xpos" "0" "ypos" "0" "zpos" "200" "wide" "350" "tall" "45" "visible" "0" "skip_autoresize" "1" "proportionalToParent" "1" "ItemBackground1" { "ControlName" "EditablePanel" "xpos" "2" "ypos" "2" "zpos" "-5" "wide" "50" "tall" "40" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "60 53 46 255" "proportionalToParent" "1" "skip_autoresize" "1" } "ItemBackground2" { "ControlName" "EditablePanel" "xpos" "57" "ypos" "2" "zpos" "-5" "wide" "50" "tall" "40" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "60 53 46 255" "proportionalToParent" "1" "skip_autoresize" "1" } "ItemBackground3" { "ControlName" "EditablePanel" "xpos" "c-27" "ypos" "2" "zpos" "-5" "wide" "50" "tall" "40" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "60 53 46 255" "proportionalToParent" "1" "skip_autoresize" "1" } "ItemBackground4" { "ControlName" "EditablePanel" "xpos" "c28" "ypos" "2" "zpos" "-5" "wide" "50" "tall" "40" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "60 53 46 255" "proportionalToParent" "1" "skip_autoresize" "1" } "ItemBackground5" { "ControlName" "EditablePanel" "xpos" "r55" "ypos" "2" "zpos" "-5" "wide" "50" "tall" "40" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "60 53 46 255" "proportionalToParent" "1" "skip_autoresize" "1" } "ItemBackground6" { "ControlName" "EditablePanel" "xpos" "r0" "ypos" "2" "zpos" "-5" "wide" "50" "tall" "40" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "60 53 46 255" "proportionalToParent" "1" "skip_autoresize" "1" } } } "BehindItemParticlePanel" { "ControlName" "CTFParticlePanel" "fieldName" "BehindItemParticlePanel" "xpos" "0" "ypos" "0" "zpos" "125" "wide" "f0" "tall" "f0" "visible" "1" "paintbackground" "0" } "TourProgress" { "ControlName" "EditablePanel" "fieldName" "TourProgress" "xpos" "-56" "ypos" "2" "wide" "105" "tall" "25" "visible" "1" "proportionalToParent" "1" "pin_to_sibling" "playermodelpanel" "pin_corner_to_sibling" "0" "pin_to_sibling_corner" "2" "LevelLabel" { "ControlName" "CExLabel" "fieldName" "LevelLabel" "font" "HudFontSmallestBold" "labelText" "%level%" "textAlignment" "center" "xpos" "-1" "ypos" "0" "zpos" "3" "wide" "f0" "tall" "f0" "fgcolor" "TanLight" "proportionalToParent" "1" } "LevelLabelDropShadow" { "ControlName" "CExLabel" "fieldName" "LevelLabelDropShadow" "font" "HudFontSmallestBold" "labelText" "%level%" "textAlignment" "center" "xpos" "0" "ypos" "1" "zpos" "2" "wide" "f0" "tall" "f0" "fgcolor" "0 0 0 255" "proportionalToParent" "1" } "TourProgressLabel" { "ControlName" "CExLabel" "fieldName" "TourProgressLabel" "font" "HudFontSmallest" "labelText" "#TF_MVM_Victory_TourProgress" "textAlignment" "south-west" "xpos" "0" "ypos" "0" "wide" "200" "tall" "f0" "visible" "1" "fgcolor" "TanLight" } "LevelProgressBarBG" { "ControlName" "EditablePanel" "fieldName" "LevelProgressBarBG" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "visible" "1" "bgcolor_override" "60 53 46 255" "proportionalToParent" "1" "LevelProgressBarFGAnim" { "ControlName" "EditablePanel" "fieldName" "LevelProgressBarFGAnim" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "visible" "1" "bgcolor_override" "208 145 58 255" "proportionalToParent" "1" } "LevelProgressBarFGStatic" { "ControlName" "EditablePanel" "fieldName" "LevelProgressBarFGStatic" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "20" "tall" "f0" "visible" "1" "bgcolor_override" "TanDark" "proportionalToParent" "1" } } } "MissingVoucher" { "ControlName" "CExLabel" "fieldName" "MissingVoucher" "font" "HudFontSmallest" "labelText" "#TF_PVE_Server_SquadVoucherMissing" "textAlignment" "center" "xpos" "320" "ypos" "5" "wide" "200" "fgcolor" "TanLight" "centerwrap" "1" "visible" "0" } "LabelDivider" { "ControlName" "Panel" "fieldName" "LabelDivider" "xpos" "0" "ypos" "r1" "zpos" "20" "wide" "423" "tall" "1" "bgcolor_override" "142 132 121 255" "proportionalToParent" "1" "pin_to_sibling" "PanelListPanel" "pin_corner_to_sibling" "2" "pin_to_sibling_corner" "0" } "MannUpLabel" { "ControlName" "CExLabel" "fieldName" "MannUpLabel" "font" "HudFontSmallestBold" "labelText" "#TF_MVM_Victory_MannUpLoot" "textAlignment" "south-west" "xpos" "-2" "ypos" "0" "wide" "150" "tall" "15" "visible" "1" "fgcolor" "TanLight" "proportionalToParent" "1" "paintbackground" "0" "pin_to_sibling" "PanelListPanel" "pin_corner_to_sibling" "2" "pin_to_sibling_corner" "0" } "SquadSurplusLabel" { "ControlName" "CExLabel" "fieldName" "SquadSurplusLabel" "font" "HudFontSmallestBold" "labelText" "#TF_MVM_Victory_SquadSurplus" "textAlignment" "south-west" "xpos" "10" "ypos" "0" "wide" "150" "tall" "15" "visible" "1" "fgcolor" "TanLight" "proportionalToParent" "1" "paintbackground" "0" "pin_to_sibling" "PanelListPanel" "pin_corner_to_sibling" "6" "pin_to_sibling_corner" "4" } "TourOfDutyLabel" { "ControlName" "CExLabel" "fieldName" "TourOfDutyLabel" "font" "HudFontSmallestBold" "labelText" "#TF_MvM_TourLootTitle" "textAlignment" "south-west" "xpos" "18" "ypos" "0" "wide" "150" "tall" "15" "visible" "1" "fgcolor" "TanLight" "proportionalToParent" "1" "paintbackground" "0" "pin_to_sibling" "PanelListPanel" "pin_corner_to_sibling" "3" "pin_to_sibling_corner" "1" } "VeteranBonusLabel" { "ControlName" "CExLabel" "fieldName" "VeteranBonusLabel" "font" "HudFontSmallestBold" "labelText" "#TF_MVM_Victory_SquadSurplus" "textAlignment" "south-west" "xpos" "0" "ypos" "0" "wide" "80" "tall" "15" "visible" "0" "fgcolor" "TanLight" } "PlayerNameLabel" { "ControlName" "CExLabel" "fieldName" "PlayerNameLabel" "font" "HudFontMediumSmall" "labelText" "%name%" "textAlignment" "south" "xpos" "-10" "ypos" "-50" "wide" "200" "wide_minmode" "0" "tall" "32" "fgcolor" "TanLight" "proportionalToParent" "1" "pin_to_sibling" "playermodelpanel" "pin_corner_to_sibling" "2" "pin_to_sibling_corner" "0" } "playermodelpanel" { "ControlName" "CTFPlayerModelPanel" "fieldName" "playermodelpanel" "xpos" "0" "ypos" "0" "zpos" "128" "wide" "300" "tall" "280" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "render_texture" "0" "fov" "12" "allow_rot" "0" "mouseinputenabled" "0" "model" { "force_pos" "1" "angles_x" "0" "angles_y" "172" "angles_z" "0" "origin_x" "400" "origin_y" "0" "origin_z" "-50" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "0" "modelname" "" "vcd" "class_select.vcd" } "customclassdata" { "undefined" { } "Scout" { "fov" "25" "angles_x" "0" "angles_y" "220" "angles_z" "0" "origin_x" "300" "origin_y" "25" "origin_z" "-55" } "Sniper" { "fov" "25" "angles_x" "0" "angles_y" "172" "angles_z" "0" "origin_x" "275" "origin_y" "10" "origin_z" "-50" } "Soldier" { "fov" "25" "angles_x" "0" "angles_y" "170" "angles_z" "0" "origin_x" "300" "origin_y" "15" "origin_z" "-57" } "Demoman" { "fov" "25" "angles_x" "0" "angles_y" "200" "angles_z" "0" "origin_x" "300" "origin_y" "15" "origin_z" "-54" } "Medic" { "fov" "20" "angles_x" "-5" "angles_y" "178" "angles_z" "0" "origin_x" "340" "origin_y" "15" "origin_z" "-52" } "Heavy" { "fov" "20" "angles_x" "0" "angles_y" "200" "angles_z" "0" "origin_x" "360" "origin_y" "25" "origin_z" "-51" } "Pyro" { "fov" "20" "angles_x" "-5" "angles_y" "172" "angles_z" "0" "origin_x" "350" "origin_y" "15" "origin_z" "-52" } "Spy" { "fov" "20" "angles_x" "-5" "angles_y" "180" "angles_z" "0" "origin_x" "350" "origin_y" "10" "origin_z" "-53" } "Engineer" { "fov" "20" "angles_x" "-5" "angles_y" "168" "angles_z" "0" "origin_x" "330" "origin_y" "10" "origin_z" "-50" } } } } ================================================ FILE: resource/ui/mvmvictorymannuppanel.res ================================================ "resource/ui/mvmvictorymannuppanel.res" { // Mouse over panel "mouseoveritempanel" { "ControlName" "CItemModelPanel" "fieldName" "mouseoveritempanel" "xpos" "0" "ypos" "600" "zpos" "9999" "wide" "300" "tall" "300" "visible" "0" "bgcolor_override" "0 0 0 0" "noitem_textcolor" "117 107 94 255" "PaintBackgroundType" "2" "paintborder" "1" "text_ypos" "0" "text_center" "1" "model_hide" "1" "resize_to_text" "1" "padding_height" "15" "attriblabel" { "font" "ItemFontAttribLarge" "xpos" "0" "ypos" "30" "zpos" "2" "wide" "140" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%attriblist%" "textAlignment" "center" "fgcolor" "117 107 94 255" "centerwrap" "1" } } "DoneButton" { "ControlName" "CExImageButton" "fieldName" "DoneButton" "xpos" "c175" "ypos" "372" "zpos" "100" "wide" "106" "tall" "25" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#DoneButton" "font" "HudFontSmallBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "image_drawcolor" "235 226 202 255" "Command" "done" } "ParticlePanel" { "ControlName" "CTFParticlePanel" "fieldName" "ParticlePanel" "xpos" "0" "ypos" "0" "zpos" "200" "wide" "f0" "tall" "f0" "visible" "1" } "OutterBackground" { "ControlName" "Panel" "fieldName" "OutterBackground" "xpos" "0" "ypos" "90" "zpos" "-8" "wide" "f0" "tall" "320" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" "bgcolor_override" "42 39 37 255" } "HeaderLine" { "ControlName" "ImagePanel" "fieldName" "HeaderLine" "xpos" "0" "ypos" "-10" "zpos" "2" "wide" "f0" "tall" "10" "visible" "1" "enabled" "1" "image" "loadout_solid_line" "scaleImage" "1" "pin_to_sibling" "OutterBackground" "pin_corner_to_sibling" "2" "pin_to_sibling_corner" "0" } "FooterLine" { "ControlName" "ImagePanel" "fieldName" "FooterLine" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "f0" "tall" "10" "visible" "1" "enabled" "1" "image" "loadout_solid_line" "scaleImage" "1" "pin_to_sibling" "OutterBackground" "pin_corner_to_sibling" "0" "pin_to_sibling_corner" "2" } "TabContainer" { "ControlName" "EditablePanel" "fieldName" "TabContainer" "xpos" "c-118" "ypos" "55" "zpos" "100" "wide" "399" "tall" "40" "visible" "1" "PlayerTab1" { "ControlName" "CMvMVictoryMannUpPlayerTab" "fieldName" "PlayerTab1" "xpos" "0" "ypos" "0" "zpos" "-5" "wide" "63" "tall" "f0" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "42 41 39 255" "PaintBackgroundType" "2" "proportionalToParent" "1" } "PlayerTab2" { "ControlName" "CMvMVictoryMannUpPlayerTab" "fieldName" "PlayerTab2" "xpos" "68" "ypos" "0" "zpos" "-5" "wide" "62" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "77 72 68 255" "PaintBackgroundType" "2" "proportionalToParent" "1" } "PlayerTab3" { "ControlName" "CMvMVictoryMannUpPlayerTab" "fieldName" "PlayerTab3" "xpos" "135" "ypos" "0" "zpos" "-5" "wide" "62" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "77 72 68 255" "PaintBackgroundType" "2" "proportionalToParent" "1" } "PlayerTab4" { "ControlName" "CMvMVictoryMannUpPlayerTab" "fieldName" "PlayerTab4" "xpos" "202" "ypos" "0" "zpos" "-5" "wide" "62" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "77 72 68 255" "PaintBackgroundType" "2" "proportionalToParent" "1" } "PlayerTab5" { "ControlName" "CMvMVictoryMannUpPlayerTab" "fieldName" "PlayerTab5" "xpos" "269" "ypos" "0" "zpos" "-5" "wide" "62" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "77 72 68 255" "PaintBackgroundType" "2" "proportionalToParent" "1" } "PlayerTab6" { "ControlName" "CMvMVictoryMannUpPlayerTab" "fieldName" "PlayerTab6" "xpos" "336" "ypos" "0" "zpos" "-5" "wide" "62" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "77 72 68 255" "PaintBackgroundType" "2" "proportionalToParent" "1" } } "MainPanelContainer" { "ControlName" "EditablePanel" "fieldName" "MainPanelContainer" "xpos" "c-230" "ypos" "140" "zpos" "-10" "wide" "f0" "tall" "480" "visible" "1" "NoItemServerContainer" { "ControlName" "EditablePanel" "fieldName" "NoItemServerContainer" "xpos" "0" "ypos" "0" "wide" "530" "tall" "480" "visible" "1" "NoItemServerHeader" { "ControlName" "CExLabel" "fieldName" "NoItemServerHeader" "font" "HudFontMediumSmallBold" "labelText" "#TF_PVE_Server_GCDownHeader" "textAlignment" "center" "xpos" "0" "ypos" "100" "wide" "530" "fgcolor" "tanlight" } "NoItemServerMessage" { "ControlName" "CExLabel" "fieldName" "NoItemServerMessage" "font" "HudFontSmall" "labelText" "#TF_PVE_Server_GCDownMessage" "textAlignment" "center" "xpos" "0" "ypos" "120" "wide" "530" "tall" "40" "centerwrap" "1" "fgcolor" "tanlight" } } } } ================================================ FILE: resource/ui/mvmwavelosspanel.res ================================================ "resource/ui/mvmwavelosspanel.res" { "DarkMask" { "ControlName" "EditablePanel" "fieldName" "DarkMask" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "480" "visible" "1" "bgcolor_override" "HudBlack" } "PanelBackground" { "ControlName" "EditablePanel" "fieldName" "PanelBackground" "xpos" "c-275" "ypos" "100" "wide" "550" "tall" "350" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "DarkGrey" } "WaveFailHeader" { "ControlName" "CExLabel" "fieldName" "WaveFailHeader" "font" "FontBold20" "labelText" "%waveheader%" "textAlignment" "center" "xpos" "c-275" "ypos" "105" "wide" "550" "tall" "30" "fgcolor" "Orange" } "HeaderDivider" { "ControlName" "EditablePanel" "fieldName" "HeaderDivider" "xpos" "c-250" "ypos" "128" "wide" "500" "tall" "2" "visible" "0" "bgcolor_override" "20 20 20 100" } "SummaryHeader" { "ControlName" "CExLabel" "fieldName" "SummaryHeader" "font" "HudFontMediumSmallBold" "labelText" "%summaryheader%" "textAlignment" "center" "xpos" "c-275" "ypos" "128" "wide" "550" "tall" "30" "fgcolor" "TanLight" } "CollectionContainer" { "ControlName" "EditablePanel" "fieldName" "CollectionContainer" "xpos" "226" "ypos" "168" "wide" "300" "tall" "100" "visible" "1" "Header" { "ControlName" "CExLabel" "fieldName" "Header" "font" "HudFontSmallBold" "labelText" "#TF_PVE_Credit_Collection" "textAlignment" "center" "xpos" "5" "ypos" "0" "tall" "15" "wide" "140" "fgcolor" "TanLight" } "CollectedLabel" { "ControlName" "CExLabel" "fieldName" "CollectedLabel" "font" "HudFontSmallest" "labelText" "#TF_PVE_Collected" "textAlignment" "west" "xpos" "0" "ypos" "25" "tall" "15" "wide" "120" "fgcolor" "TanLight" } "CollectedCount" { "ControlName" "CExLabel" "fieldName" "CollectedCount" "font" "HudFontSmallestBold" "labelText" "%creditscollected%" "textAlignment" "east" "xpos" "120" "ypos" "25" "wide" "30" "fgcolor" "CreditsGreen" } "MissedLabel" { "ControlName" "CExLabel" "fieldName" "MissedLabel" "font" "HudFontSmallest" "labelText" "#TF_PVE_Missed" "textAlignment" "west" "xpos" "0" "ypos" "40" "tall" "15" "wide" "120" } "MissedCount" { "ControlName" "CExLabel" "fieldName" "MissedCount" "font" "HudFontSmallestBold" "labelText" "%creditsmissed%" "textAlignment" "east" "xpos" "120" "ypos" "40" "wide" "30" "fgcolor" "RedSolid" } "BonusLabel" { "ControlName" "CExLabel" "fieldName" "BonusLabel" "font" "HudFontSmallest" "labelText" "#TF_PVE_Bonus" "textAlignment" "west" "xpos" "0" "ypos" "55" "tall" "15" "wide" "120" } "BonusCount" { "ControlName" "CExLabel" "fieldName" "BonusCount" "font" "HudFontSmallestBold" "labelText" "%creditbonus%" "textAlignment" "east" "xpos" "120" "ypos" "55" "wide" "30" "fgcolor" "CreditsGreen" } } "UsageContainer" { "ControlName" "EditablePanel" "fieldName" "UsageContainer" "xpos" "444" "ypos" "168" "wide" "300" "tall" "105" "visible" "1" "Header" { "ControlName" "CExLabel" "fieldName" "Header" "font" "HudFontSmallBold" "labelText" "#TF_PVE_Credit_Use" "textAlignment" "center" "xpos" "10" "ypos" "0" "tall" "15" "wide" "195" "fgcolor" "TanLight" } "YouLabel" { "ControlName" "CExLabel" "fieldName" "YouLabel" "font" "FontStorePriceSmall" "labelText" "#TF_PVE_You" "textAlignment" "center" "xpos" "134" "ypos" "14" "wide" "35" } "TeamLabel" { "ControlName" "CExLabel" "fieldName" "TeamLabel" "font" "FontStorePriceSmall" "labelText" "#Winpanel_Team2" "textAlignment" "center" "xpos" "189" "ypos" "14" "wide" "35" } "BuybackLabel" { "ControlName" "CExLabel" "fieldName" "BuybackLabel" "font" "HudFontSmallest" "labelText" "#TF_PVE_Buybacks" "textAlignment" "west" "xpos" "0" "ypos" "25" "tall" "15" "wide" "120" } "BuybackCountYou" { "ControlName" "CExLabel" "fieldName" "BuybackCountYou" "font" "HudFontSmallestBold" "labelText" "%buybacksyou%" "textAlignment" "east" "xpos" "120" "ypos" "25" "wide" "35" } "BuybackCountTeam" { "ControlName" "CExLabel" "fieldName" "BuybackCountTeam" "font" "HudFontSmallestBold" "labelText" "%buybacksteam%" "textAlignment" "east" "xpos" "175" "ypos" "25" "wide" "35" } "BottleLabel" { "ControlName" "CExLabel" "fieldName" "BottleLabel" "font" "HudFontSmallest" "labelText" "#TF_PVE_Bottles" "textAlignment" "west" "xpos" "0" "ypos" "40" "tall" "15" "wide" "120" } "BottleCountYou" { "ControlName" "CExLabel" "fieldName" "BottleCountYou" "font" "HudFontSmallestBold" "labelText" "%bottlesyou%" "textAlignment" "east" "xpos" "120" "ypos" "40" "wide" "35" } "BottleCountTeam" { "ControlName" "CExLabel" "fieldName" "BottleCountTeam" "font" "HudFontSmallestBold" "labelText" "%bottlesteam%" "textAlignment" "east" "xpos" "175" "ypos" "40" "wide" "35" } "InactiveLabel" { "ControlName" "CExLabel" "fieldName" "InactiveLabel" "font" "HudFontSmallest" "labelText" "#TF_PVE_Inactive_Upgrades" "textAlignment" "west" "xpos" "0" "ypos" "55" "tall" "15" "wide" "120" } "InactiveCountYou" { "ControlName" "CExLabel" "fieldName" "InactiveCountYou" "font" "HudFontSmallestBold" "labelText" "%inactiveupgradesyou%" "textAlignment" "east" "xpos" "120" "ypos" "55" "wide" "35" "fgcolor" "RedSolid" } "InactiveCountTeam" { "ControlName" "CExLabel" "fieldName" "InactiveCountTeam" "font" "HudFontSmallestBold" "labelText" "%inactiveupgradesteam%" "textAlignment" "east" "xpos" "175" "ypos" "55" "wide" "35" "fgcolor" "RedSolid" } } "HintContainer" { "ControlName" "EditablePanel" "fieldName" "HintContainer" "xpos" "c-250" "ypos" "250" "wide" "500" "tall" "150" "visible" "1" "Background" { "ControlName" "ImagePanel" "fieldName" "Background" "xpos" "0" "ypos" "0" "wide" "500" "tall" "150" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "DarkerGrey" "src_corner_height" "22" "src_corner_width" "22" "draw_corner_width" "0" "draw_corner_height" "0" } "Header" { "ControlName" "CExLabel" "fieldName" "Header" "font" "HudFontSmallBold" "labelText" "#TF_PVE_Hint_Header" "textAlignment" "center" "xpos" "0" "ypos" "5" "tall" "15" "wide" "500" "fgcolor" "TanLight" } "CptCntnBody" { "ControlName" "ImagePanel" "fieldName" "CptCntnBody" "xpos" "5" "ypos" "70" "zpos" "2" "wide" "50" "tall" "50" "image" "" "visible" "0" "enabled" "1" "scaleImage" "1" } "CptCntnMisc" { "ControlName" "ImagePanel" "fieldName" "CptCntnMisc" "xpos" "5" "ypos" "45" "zpos" "3" "wide" "50" "tall" "50" "image" "" "visible" "0" "enabled" "1" "scaleImage" "1" } "CptCntnHat" { "ControlName" "ImagePanel" "fieldName" "CptCntnHat" "xpos" "5" "ypos" "20" "zpos" "1" "wide" "50" "tall" "50" "image" "" "visible" "0" "enabled" "1" "scaleImage" "1" } "HintImage1" { "ControlName" "ImagePanel" "fieldName" "HintImage1" "xpos" "5" "ypos" "20" "wide" "50" "tall" "100" "image" "class_sel_sm_engineer_inactive" "visible" "1" "enabled" "1" "scaleImage" "1" } "Hint1" { "ControlName" "CExLabel" "fieldName" "Hint1" "font" "HudFontSmallest" "labelText" "%hint1%" "textAlignment" "north-west" "xpos" "55" "ypos" "60" "wide" "185" "tall" "55" "fgcolor" "TanLight" "wrap" "1" } "HintImage2" { "ControlName" "ImagePanel" "fieldName" "HintImage2" "xpos" "255" "ypos" "20" "wide" "50" "tall" "100" "image" "class_sel_sm_engineer_inactive" "visible" "1" "enabled" "1" "scaleImage" "1" } "Hint2" { "ControlName" "CExLabel" "fieldName" "Hint2" "font" "HudFontSmallest" "labelText" "%hint2%" "textAlignment" "north-west" "xpos" "305" "ypos" "60" "wide" "185" "tall" "55" "fgcolor" "TanLight" "wrap" "1" } } "VoteButton" { "ControlName" "CExImageButton" "fieldName" "VoteButton" "xpos" "c-250" "ypos" "410" "zpos" "999" "wide" "150" "tall" "25" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PVE_Vote_MissionRestart" "font" "FontBold10" "defaultFgColor_override" "HUDRedTeam" "armedBgColor_override" "HUDRedTeam" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "image_drawcolor" "NeutralWhite" "Command" "vote_restart" } "ContinueButton" { "ControlName" "CExImageButton" "fieldName" "ContinueButton" "xpos" "477" "ypos" "410" "zpos" "1000" "wide" "200" "tall" "25" "autoResize" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#ConfirmButtonText" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "image_drawcolor" "NeutralWhite" "Command" "continue" } } ================================================ FILE: resource/ui/notifications/notify_passtime_howto.res ================================================ "resource/ui/notifications/notify_passtime_howto.res" { "Notification_Background" { "ControlName" "CImagePanel" "fieldName" "Notification_Background" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "0" "tall" "140" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/notification_black" "scaleImage" "1" } "Notification_Icon" { "ControlName" "CIconPanel" "fieldName" "Notification_Icon" "xpos" "-5" "ypos" "45" "wide" "30" "tall" "30" "visible" "1" "enabled" "1" "scaleImage" "1" "icon" "passtime_ball" } "Notification_Label" { "ControlName" "CExLabel" "fieldName" "Notification_Label" "font" "DefaultSmall" "xpos" "30" "ypos" "27" "wide" "0" "tall" "300" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_Passtime_HowToPlay" "textAlignment" "North-West" "dulltext" "0" "brighttext" "0" } } ================================================ FILE: resource/ui/objectivestatusescort.res ================================================ "resource/ui/objectivestatusescort.res" { "ObjectiveStatusEscort" { "ControlName" "EditablePanel" "fieldName" "ObjectiveStatusEscort" "xpos" "c-100" "ypos" "0" "zpos" "1" "wide" "210" "tall" "f0" "visible" "1" "enabled" "1" "progress_xpos" "79" "progress_wide" "270" } "LevelBar" { "ControlName" "ImagePanel" "fieldName" "LevelBar" "xpos" "0" "ypos" "r18" "zpos" "0" "wide" "200" "tall" "10" "visible" "1" "enabled" "1" "labelText" "" "image" "../hud/cart_track_neutral_opaque" "scaleImage" "1" "if_multiple_trains" { "ypos" "115" } "if_single_with_hills" { "ypos" "r18" } } "ProgressBar" { "ControlName" "CTFHudEscortProgressBar" "fieldName" "ProgressBar" "xpos" "0" "ypos" "0" "zpos" "4" "wide" "200" "tall" "10" "visible" "0" "enabled" "1" "scaleImage" "1" "if_multiple_trains" { "ypos" "115" "zpos" "6" "tall" "10" "visible" "1" } } "HomeCPIcon" { "ControlName" "ImagePanel" "fieldName" "HomeCPIcon" "xpos" "0" "ypos" "r20" "zpos" "1" "wide" "3" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../hud/cart_point_blue" "scaleImage" "1" "if_team_red" { "image" "../hud/cart_point_red" } "if_single_with_hills_blue" { "image" "../hud/cart_point_blue" } "if_single_with_hills_red" { "image" "../hud/cart_point_red" } "if_multiple_trains" { "xpos" "0" "zpos" "5" "wide" "3" "tall" "12" "image" "../hud/cart_track_neutral_opaque" } "if_multiple_trains_top" { "ypos" "114" } "if_multiple_trains_bottom" { "ypos" "114" } "if_multiple_trains_red" { "image" "../hud/cart_point_red" } "if_multiple_trains_blue" { "image" "../hud/cart_point_blue" } } "SimpleControlPointTemplate" { "ControlName" "ImagePanel" "fieldName" "SimpleControlPointTemplate" "xpos" "65" "ypos" "r20" "zpos" "1" "wide" "3" "tall" "13" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../hud/cart_point_neutral" "scaleImage" "1" "if_multiple_trains" { "xpos" "61" "ypos" "113" "zpos" "5" "wide" "3" "tall" "12" } } "EscortItemPanel" { "ControlName" "EditablePanel" "fieldName" "EscortItemPanel" "xpos" "-254" "ypos" "r18" "zpos" "2" "wide" "506" "tall" "10" "visible" "1" "enabled" "1" "if_multiple_trains" { "ypos" "48" "zpos" "8" "wide" "52" "tall" "170" } "RecedeTime" { "ControlName" "CExLabel" "fieldName" "RecedeTime" "font" "FontRegular10" "xpos" "240" "ypos" "0" "zpos" "2" "wide" "10" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%recede%" "textAlignment" "east" "dulltext" "0" "brighttext" "0" "if_multiple_trains" { "xpos" "15" } "if_multiple_trains_top" { "ypos" "68" } "if_multiple_trains_bottom" { "ypos" "68" } } "EscortItemImage" { "ControlName" "ImagePanel" "fieldName" "EscortItemImage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "254" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../hud/cart_neutral" "scaleImage" "1" "if_team_blue" { "image" "../hud/cart_blue" } "if_team_red" { "image" "../hud/cart_red" } "if_multiple_trains" { "xpos" "9999" } } "EscortItemImageBottom" { "ControlName" "ImagePanel" "fieldName" "EscortItemImageBottom" "xpos" "20" "ypos" "117" "zpos" "1" "wide" "40" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../hud/cart_neutral_bottom" "scaleImage" "1" "if_team_blue" { "image" "../hud/cart_blue_bottom" } "if_team_red" { "image" "../hud/cart_red_bottom" } "if_multiple_trains" { "xpos" "9999" } } "EscortItemImageAlert" { "ControlName" "ImagePanel" "fieldName" "EscortItemImageAlert" "xpos" "9999" "ypos" "38" "zpos" "0" "wide" "60" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../hud/cart_alert" "scaleImage" "1" "if_multiple_trains_bottom" { "xpos" "9999" } } "Speed_Backwards" { "ControlName" "ImagePanel" "fieldName" "Speed_Backwards" "xpos" "245" "ypos" "2" "zpos" "5" "wide" "7" "tall" "7" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../hud/cart_arrow_left" "scaleImage" "1" "if_multiple_trains" { "xpos" "15" } "if_multiple_trains_top" { "ypos" "68" } "if_multiple_trains_bottom" { "ypos" "68" } } "CapPlayerImage" { "ControlName" "ImagePanel" "fieldName" "CapPlayerImage" "xpos" "9999" } "CapNumPlayers" { "ControlName" "CExLabel" "fieldName" "CapNumPlayers" "font" "FontRegular10" "xpos" "235" "ypos" "0" "zpos" "5" "wide" "15" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "#ControlPointIconCappers" "textAlignment" "east" "dulltext" "0" "brighttext" "0" "if_multiple_trains" { "xpos" "10" } "if_multiple_trains_top" { "ypos" "67" } "if_multiple_trains_bottom" { "ypos" "67" } } "Blocked" { "ControlName" "ImagePanel" "fieldName" "Blocked" "xpos" "235" "ypos" "2" "zpos" "2" "wide" "7" "tall" "7" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "" "image" "../hud/cart_blocked" "scaleImage" "1" "if_multiple_trains" { "xpos" "15" } "if_multiple_trains_top" { "ypos" "68" } "if_multiple_trains_bottom" { "ypos" "68" } } "EscortTeardrop" { "ControlName" "EditablePanel" "fieldName" "EscortTeardrop" "xpos" "9999" } } // Hide the "swoop" effect when capturing payload points. "EscortHilightSwoop" { "ControlName" "CControlPointIconSwoop" "fieldName" "EscortHilightSwoop" "xpos" "9999" "alpha" "0" } } ================================================ FILE: resource/ui/objectivestatusmultipleescort.res ================================================ "resource/ui/objectivestatusmultipleescort.res" { "ObjectiveStatusMultipleEscort" { "ControlName" "EditablePanel" "fieldName" "ObjectiveStatusMultipleEscort" "xpos" "c-100" "ypos" "10" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" } "BlueEscortPanel" { "ControlName" "CTFHudEscort" "fieldName" "BlueEscortPanel" "xpos" "0" "ypos" "r145" "zpos" "220" "wide" "f0" "tall" "200" "visible" "1" "enabled" "1" "progress_xpos" "79" "progress_wide" "270" "if_blue_is_top" { "ypos" "r162" } } "RedEscortPanel" { "ControlName" "CTFHudEscort" "fieldName" "RedEscortPanel" "xpos" "0" "ypos" "r145" "zpos" "220" "wide" "f0" "tall" "200" "visible" "1" "enabled" "1" "progress_xpos" "79" "progress_wide" "270" "if_red_is_top" { "ypos" "r162" } } } ================================================ FILE: resource/ui/publishfiledialog.res ================================================ "PublishFileDialog.res" { "PublishFileDialog" { "ControlName" "CPublishFileDialog" "fieldName" "PublishFileDialog" "xpos" "c-300" "ypos" "c-200" "wide" "600" "tall" "400" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "border" "NoBorder" } "Background" { "ControlName" "EditablePanel" "fieldName" "Background" "xpos" "0" "ypos" "0" "zpos" "-100" "wide" "600" "tall" "400" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "0 0 0 255" } "WorkshopBG" { "ControlName" "ImagePanel" "fieldName" "WorkshopBG" "xpos" "0" "ypos" "0" "zpos" "-99" "wide" "600" "tall" "300" "visible" "1" "enabled" "1" "image" "workshop_blue_top" "scaleImage" "1" } "BackgroundBottom" { "ControlName" "EditablePanel" "fieldName" "BackgroundBottom" "xpos" "0" "ypos" "355" "wide" "600" "tall" "45" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "0 0 0 255" } "Title" { "ControlName" "Label" "fieldName" "Title" "xpos" "15" "ypos" "15" "wide" "250" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_Title" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold22" } "LabelPreview" { "ControlName" "Label" "fieldName" "LabelPreview" "xpos" "15" "ypos" "45" "wide" "250" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_Preview" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "PreviewImageBorder" { "ControlName" "EditablePanel" "fieldName" "PreviewImageBorder" "xpos" "15" "ypos" "65" "zpos" "-99" "wide" "150" "tall" "150" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "border" "SteamWorkshopBorder" "PreviewDescription" { "ControlName" "Label" "fieldName" "PreviewDescription" "xpos" "5" "ypos" "0" "wide" "140" "tall" "120" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_PreviewDesc" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "1" "font" "FontRegular12" } } "PreviewImage" { "ControlName" "CBitmapPanel" "fieldName" "PreviewImage" "xpos" "15" "ypos" "65" "wide" "150" "tall" "150" "visible" "1" } "ButtonPreviewBrowse" { "ControlName" "Button" "fieldName" "ButtonPreviewBrowse" "xpos" "15" "ypos" "220" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_Browse" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "PreviewBrowse" "Default" "1" "font" "FontBold12" "border_default" "WhiteBorder" } "LabelTitle" { "ControlName" "Label" "fieldName" "LabelTitle" "xpos" "175" "ypos" "45" "wide" "250" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_TitleLabel" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "FileTitle" { "ControlName" "TextEntry" "fieldName" "FileTitle" "xpos" "175" "ypos" "70" "wide" "250" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "1" "maxchars" "128" "NumericInputOnly" "0" "unicode" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "paintbackgroundtype" "2" "font" "FontRegular12" } "LabelDesc" { "ControlName" "Label" "fieldName" "LabelDesc" "xpos" "175" "ypos" "95" "wide" "275" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_DescLabel" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "FileDesc" { "ControlName" "TextEntry" "fieldName" "FileDesc" "xpos" "175" "ypos" "120" "wide" "250" "tall" "185" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "1" "maxchars" "8000" "NumericInputOnly" "0" "unicode" "1" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "paintbackgroundtype" "2" "font" "FontRegular12" } "LabelSourceFile" { "ControlName" "Label" "fieldName" "LabelSourceFile" "xpos" "185" "ypos" "310" "wide" "250" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_FileLabel" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "SourceFile" { "ControlName" "Label" "fieldName" "SourceFile" "xpos" "230" "ypos" "310" "wide" "275" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "labelText" "#TF_PublishFile_NoFileSelected" "textHidden" "0" "editable" "0" "maxchars" "256" "NumericInputOnly" "0" "unicode" "0" "font" "FontBold12" } "ButtonSourceCosmetics" { "ControlName" "Button" "fieldName" "ButtonSourceCosmetics" "xpos" "15" "ypos" "250" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_Cosmetics" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "MainFileCosmetics" "Default" "1" "font" "FontBold12" } "ButtonSourceOther" { "ControlName" "Button" "fieldName" "ButtonSourceOther" "xpos" "15" "ypos" "280" "wide" "73" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_Other" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "MainFileOther" "Default" "1" "font" "FontBold12" } "ButtonSourceMaps" { "ControlName" "Button" "fieldName" "ButtonSourceMaps" "xpos" "92" "ypos" "280" "wide" "73" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_Maps" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "MainFileMaps" "Default" "1" "font" "FontBold12" } "BrowseDescription" { "ControlName" "Label" "fieldName" "BrowseDescription" "xpos" "330" "ypos" "0" "wide" "270" "tall" "55" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_BrowseDesc" "textAlignment" "east" "dulltext" "0" "brighttext" "0" "wrap" "1" "font" "FontRegular10" "fgcolor_override" "TanLight" } "TagsTitle" { "ControlName" "Label" "fieldName" "TagsTitle" "xpos" "430" "ypos" "45" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_Tags" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "FontBold12" } "ClassUsagePanel" { "ControlName" "EditablePanel" "fieldName" "ClassUsagePanel" "xpos" "430" "ypos" "45" "wide" "160" "tall" "275" "visible" "1" "paintbackground" "1" "ClassCheckBox1" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox1" "labelText" "#TF_Class_Name_Scout" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "25" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox2" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox2" "labelText" "#TF_Class_Name_Sniper" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "45" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox3" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox3" "labelText" "#TF_Class_Name_Soldier" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "65" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox4" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox4" "labelText" "#TF_Class_Name_Demoman" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "85" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox5" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox5" "labelText" "#TF_Class_Name_Medic" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "105" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox6" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox6" "labelText" "#TF_Class_Name_HWGuy" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "125" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox7" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox7" "labelText" "#TF_Class_Name_Pyro" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "145" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox8" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox8" "labelText" "#TF_Class_Name_Spy" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "165" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox9" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox9" "labelText" "#TF_Class_Name_Engineer" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "185" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_Headgear" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_Headgear" "labelText" "#TF_SteamWorkshop_Tag_Headgear" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "25" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_Weapon" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_Weapon" "labelText" "#TF_SteamWorkshop_Tag_Weapon" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "45" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_Misc" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_Misc" "labelText" "#TF_SteamWorkshop_Tag_Misc" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "65" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_SoundDevice" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_SoundDevice" "labelText" "#TF_SteamWorkshop_Tag_SoundDevice" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "85" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_Halloween" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_Halloween" "labelText" "#TF_SteamWorkshop_Tag_Halloween" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "105" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_Smissmas" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_Smissmas" "labelText" "#TF_SteamWorkshop_Tag_Smissmas" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "125" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_Taunt" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_Taunt" "labelText" "#TF_SteamWorkshop_Tag_Taunt" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "145" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_UnusualEffect" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_UnusualEffect" "labelText" "#TF_SteamWorkshop_Tag_UnusualEffect" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "165" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_WarPaint" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_WarPaint" "labelText" "#TF_SteamWorkshop_Tag_WarPaint" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "185" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_Jungle" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_Jungle" "labelText" "#TF_SteamWorkshop_Tag_Jungle" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "205" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_Summer" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_Summer" "labelText" "#TF_SteamWorkshop_Tag_Summer" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "225" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "TagCheckbox_CommunityFix" { "ControlName" "CheckButton" "fieldName" "TagCheckbox_CommunityFix" "labelText" "#TF_SteamWorkshop_Tag_CommunityFix" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "75" "ypos" "245" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_CTF" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_CTF" "labelText" "#TF_SteamWorkshop_Tag_CTF" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "25" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_CP" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_CP" "labelText" "#TF_SteamWorkshop_Tag_CP" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "45" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_Escort" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_Escort" "labelText" "#TF_SteamWorkshop_Tag_Escort" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "65" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_EscortRace" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_EscortRace" "labelText" "#TF_SteamWorkshop_Tag_EscortRace" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "85" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_RobotDestruction" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_RobotDestruction" "labelText" "#TF_SteamWorkshop_Tag_RobotDestruction" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "105" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_Koth" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_Koth" "labelText" "#TF_SteamWorkshop_Tag_Koth" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "125" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_AttackDefense" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_AttackDefense" "labelText" "#TF_SteamWorkshop_Tag_AttackDefense" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "145" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_SD" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_SD" "labelText" "#TF_SteamWorkshop_Tag_SD" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "165" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_MVM" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_MVM" "labelText" "#TF_SteamWorkshop_Tag_MVM" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "185" "zpos" "1" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_PD" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_PD" "labelText" "#TF_SteamWorkshop_Tag_PD" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "0" "ypos" "205" "zpos" "1" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_Arena" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_Arena" "labelText" "#TF_SteamWorkshop_Tag_Arena" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "85" "ypos" "25" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_Powerup" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_Powerup" "labelText" "#TF_SteamWorkshop_Tag_Powerup" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "85" "ypos" "45" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_Medieval" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_Medieval" "labelText" "#TF_SteamWorkshop_Tag_Medieval" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "85" "ypos" "65" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_PassTime" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_PassTime" "labelText" "#TF_SteamWorkshop_Tag_PassTime" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "85" "ypos" "85" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_Specialty" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_Specialty" "labelText" "#TF_SteamWorkshop_Tag_Specialty" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "85" "ypos" "105" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckBox_Halloween" { "ControlName" "CheckButton" "fieldName" "MapsCheckBox_Halloween" "labelText" "#TF_SteamWorkshop_Tag_Halloween" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "85" "ypos" "125" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckbox_Smissmas" { "ControlName" "CheckButton" "fieldName" "MapsCheckbox_Smissmas" "labelText" "#TF_SteamWorkshop_Tag_Smissmas" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "85" "ypos" "145" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckbox_Night" { "ControlName" "CheckButton" "fieldName" "MapsCheckbox_Night" "labelText" "#TF_SteamWorkshop_Tag_Night" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "85" "ypos" "165" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } "MapsCheckbox_Jungle" { "ControlName" "CheckButton" "fieldName" "MapsCheckbox_Jungle" "labelText" "#TF_SteamWorkshop_Tag_Jungle" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "85" "ypos" "185" "zpos" "1" "wide" "80" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "smallcheckimage" "1" "disabledfgcolor2_override" "TextColor" } } "ButtonClose" { "ControlName" "Button" "fieldName" "ButtonClose" "xpos" "10" "ypos" "365" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "Close" "Default" "0" "font" "FontBold12" "border_default" "WhiteBorder" } "ButtonPublish" { "ControlName" "Button" "fieldName" "ButtonPublish" "xpos" "120" "ypos" "365" "wide" "150" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_PublishFile_Publish" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "Command" "Publish" "Default" "1" "font" "FontBold12" "border_default" "WhiteBorder" } } ================================================ FILE: resource/ui/pvpcomprankpanel.res ================================================ #base "pvprankpanel.res" "resource/ui/pvprankpanel.res" { "BGPanel" { "StatsContainer" { "visible" "1" "XPBar" { "CurrentXPLabel" { "ypos" "5" "wide" "100" "textAlignment" "center" } "NextLevelXPLabel" { "visible" "0" } "ProgressBarsContainer" { "visible" "0" } } } } } ================================================ FILE: resource/ui/pvprankpanel.res ================================================ "resource/ui/pvprankpanel.res" { "ModelContainer" { "ControlName" "EditablePanel" "fieldName" "ModelContainer" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "3" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "actionsignallevel" "2" "BelowModelParticlePanel" { "ControlName" "CTFParticlePanel" "fieldName" "BelowModelParticlePanel" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "f0" "tall" "f0" "visible" "1" "proportionaltoparent" "1" if_mini { "xpos" "cs-0.5-228" } "ParticleEffects" { "0" { "particle_xpos" "c0" "particle_ypos" "c0" "particle_scale" "3" "particleName" "rankup_base" "start_activated" "0" "loop" "0" } } "paintbackground" "0" } "RankModel" { "ControlName" "CBaseModelPanel" "fieldName" "RankModel" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "0" "wide" "120" "tall" "60" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fov" "80" "proportionaltoparent" "1" if_mini { "xpos" "cs-0.5-228" "ypos" "cs-0.5" "wide" "200" "tall" "200" } "paintbackground" "0" "render_texture" "0" "model" { "force_pos" "1" "modelname" "" "skin" "0" "angles_x" "0" "angles_y" "180" "angles_z" "0" "origin_x" "45" "origin_y" "0" "origin_z" "0" "spotlight" "1" if_mini { "origin_x" "70" } "animation" { "sequence" "idle" "default" "1" } } "lights" { "default" { "name" "directional" "color" "0.5 0.5 0.5" "direction" "0.60 0.65 0.2" } } } "AboveModelParticlePanel" { "ControlName" "CTFParticlePanel" "fieldName" "AboveModelParticlePanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "f0" "visible" "1" "proportionaltoparent" "1" "paintbackground" "0" if_mini { "xpos" "cs-0.5-228" } "ParticleEffects" { "0" { "particle_xpos" "c0" "particle_ypos" "c0" "particle_scale" "5" "particleName" "rankup_glitter" "start_activated" "0" "loop" "0" } "1" { "particle_xpos" "c0" "particle_ypos" "c0" "particle_scale" "4" "particleName" "badgepress_base" "start_activated" "0" "loop" "0" } "2" { "particle_xpos" "c-8" "particle_ypos" "c0" "particle_scale" "4" "particleName" "rankdown_base" "start_activated" "0" "loop" "0" } } "paintbackground" "1" } "MedalButton" { "ControlName" "Button" "fieldName" "MedalButton" "xpos" "cs-0.5" "ypos" "cs-0.5+2" "zpos" "100" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "command" "medal_clicked" "actionsignallevel" "2" "labeltext" "" "paintbackground" "0" "backgroundenabled" "0" } } "BGPanel" { "ControlName" "EditablePanel" "fieldName" "BGPanel" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "260" "tall" "92" "visible" "0" "PaintBackgroundType" "0" "border" "NoBorder" "bgcolor_override" "25 25 25 0" "proportionaltoparent" "1" if_mini { "xpos" "cs-0.5" "ypos" "cs-0.5" "tall" "35" "wide" "505" } "NameLabel" { "ControlName" "Label" "fieldName" "NameLabel" "xpos" "0" "ypos" "2" "wide" "170" "zpos" "100" "tall" "15" "visible" "1" "enabled" "1" "font" "FontRegular14" "font_minmode" "StreamerMode" "fgcolor_override" "TanLight" "textAlignment" "center" "labelText" "%name%" "proportionaltoparent" "1" if_mini { "visible" "0" } } "DescLine1" { "ControlName" "CAutoFittingLabel" "fieldName" "DescLine1" "xpos" "12" "ypos" "18" "wide" "146" "zpos" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "north" "labelText" "%desc1%" "proportionaltoparent" "1" "centerwrap" "1" if_mini { "xpos" "50" "ypos" "r35" } } "DescLine2" { "ControlName" "CAutoFittingLabel" "fieldName" "DescLine2" "xpos" "65" "ypos" "28" "wide" "195" "zpos" "100" "tall" "10" "visible" "1" "enabled" "1" "font" "FontRegular10" "fgcolor_override" "TanLight" "textAlignment" "north-west" "labelText" "%desc2%" "proportionaltoparent" "1" if_mini { "xpos" "67" "ypos" "4" } "fonts" { "0" "HudFontSmallestBold" "1" "StorePromotionsTitle" "2" "FontStorePrice" } "colors" { "1" "CreditsGreen" "2" "TanLight" } } "StatsContainer" { "ControlName" "EditablePanel" "fieldName" "StatsContainer" "xpos" "0" "ypos" "0" "wide" "260" "tall" "f0" "proportionaltoparent" "1" if_mini { "xpos" "rs1-10" "ypos" "0" "wide" "p0.85" } "XPBar" { "Controlname" "EditablePanel" "fieldName" "XPBar" "xpos" "0" "ypos" "rs1-35" "wide" "170" "tall" "35" "proportionaltoparent" "1" if_mini { "xpos" "cs-0.5" "ypos" "rs1-3" "wide" "p1" } "CurrentXPLabel" { "ControlName" "Label" "fieldName" "CurrentXPLabel" "xpos" "35" "ypos" "15" "zpos" "10" "wide" "50" "tall" "10" "visible" "1" "enabled" "1" "font" "FontRegular10" "fgcolor_override" "TanLight" "textAlignment" "west" "labelText" "%current_xp%" "proportionaltoparent" "1" if_mini { "xpos" "25" "ypos" "25" } } "NextLevelXPLabel" { "ControlName" "Label" "fieldName" "NextLevelXPLabel" "xpos" "85" "ypos" "15" "zpos" "0" "wide" "50" "tall" "10" "visible" "1" "enabled" "1" "font" "FontRegular10" "fgcolor_override" "TanLight" "textAlignment" "east" "labelText" "%next_level_xp%" "proportionaltoparent" "1" if_mini { "ypos" "25" } } "ProgressBarsContainer" { "Controlname" "EditablePanel" "fieldName" "ProgressBarsContainer" "xpos" "35" "ypos" "rs1-20" "wide" "100" "tall" "7" "proportionaltoparent" "1" if_mini { "xpos" "0" "ypos" "rs1-10" "wide" "p1" } "ProgressBar" { "ControlName" "ProgressBar" "fieldName" "ProgressBar" "xpos" "0" "ypos" "cs-0.5" "wide" "f0" "tall" "f-2" "zpos" "1" "proportionaltoparent" "1" "progress" "1" "fgcolor_override" "20 20 20 180" "bgcolor_override" "Transparent" } "ContinuousProgressBar" { "ControlName" "ContinuousProgressBar" "fieldName" "ContinuousProgressBar" "xpos" "cs-0.5" "ypos" "cs-0.5" "wide" "f2" "tall" "f2" "proportionaltoparent" "1" "progress" "0" "fgcolor_override" "CreditsGreen" } "Frame" { "Controlname" "EditablePanel" "fieldName" "Frame" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "zpos" "5" "visible" "0" "enabled" "0" "proportionaltoparent" "1" "border" "InnerShadowBorderThin" } } } "Stats" { "ControlName" "EditablePanel" "fieldName" "Stats" "xpos" "0" "ypos" "62" "wide" "f0" "tall" "p0.45" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "bgcolor_override" "Transparent" "if_mini" { "visible" "0" } "Frame" { "ControlName" "EditablePanel" "fieldName" "Frame" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "0" "tall" "0" "proportionaltoparent" "1" "border" "NoBorder" } // First column "GamesLabel" { "ControlName" "Label" "fieldName" "GamesLabel" "xpos" "10" "ypos" "5" "zpos" "0" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "north-west" "labelText" "%stat_games%" "proportionaltoparent" "1" } "KillsLabel" { "ControlName" "Label" "fieldName" "KillsLabel" "xpos" "c-20" "ypos" "5" "zpos" "0" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "north-west" "labelText" "%stat_kills%" "proportionaltoparent" "1" } "DeathsLabel" { "ControlName" "Label" "fieldName" "DeathsLabel" "xpos" "c-20" "ypos" "15" "zpos" "0" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "north-west" "labelText" "%stat_deaths%" "proportionaltoparent" "1" } // Second column "DamageLabel" { "ControlName" "Label" "fieldName" "DamageLabel" "xpos" "10" "ypos" "15" "zpos" "0" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "north-west" "labelText" "%stat_damage%" "proportionaltoparent" "1" } "HealingLabel" { "ControlName" "Label" "fieldName" "HealingLabel" "xpos" "rs1+20" "ypos" "5" "zpos" "0" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "north-west" "labelText" "%stat_healing%" "proportionaltoparent" "1" } "SupportLabel" { "ControlName" "Label" "fieldName" "SupportLabel" "xpos" "rs1+20" "ypos" "15" "zpos" "0" "wide" "100" "tall" "20" "visible" "1" "enabled" "1" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "north-west" "labelText" "%stat_support%" "proportionaltoparent" "1" } // Third column "ScoreLabel" { "ControlName" "Label" "fieldName" "ScoreLabel" "xpos" "rs1+20" "ypos" "15" "wide" "100" "tall" "20" "visible" "0" "enabled" "0" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "textAlignment" "north-west" "labelText" "%stat_score%" "proportionaltoparent" "1" } } } } } ================================================ FILE: resource/ui/replaybrowser/mainpanel.res ================================================ "resource/ui/replaybrowser/mainpanel.res" { "ReplayBrowser" { "ControlName" "EditablePanel" "fieldName" "ReplayBrowser" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "1" "PaintBackgroundType" "0" "bgcolor_override" "27 27 27 0" "infocus_bgcolor_override" "27 27 27 0" "outoffocus_bgcolor_override" "27 27 27 0" "title" "#MMenu_Tooltip_Replay" "title_font" "HudFontMedium" "titletextinsetX" "40" "titletextinsetY" "0" "titlebarfgcolor_override" "HudOffWhite" "titlebardisabledfgcolor_override" "HudOffWhite" "titlebarbgcolor_override" "DarkGrey" "clientinsetx_override" "0" "sheetinset_bottom" "40" } "BackgroundHeader" { "ControlName" "ImagePanel" "fieldName" "BackgroundHeader" "xpos" "0" "ypos" "0" "zpos" "-2" "wide" "f0" "tall" "120" "visible" "1" "enabled" "1" "image" "loadout_header" "tileImage" "1" } "BackgroundHeader2" { "ControlName" "ImagePanel" "fieldName" "BackgroundHeader2" "xpos" "0" "ypos" "0" "zpos" "-2" "wide" "f0" "tall" "120" "visible" "1" "enabled" "1" "fillcolor" "27 27 27 200" "tileImage" "1" } "BackgroundFooter" { "ControlName" "ImagePanel" "fieldName" "BackgroundFooter" "xpos" "0" "ypos" "430" "zpos" "0" "wide" "f0" "tall" "60" "visible" "1" "enabled" "1" "image" "loadout_header" "tileImage" "1" } "BackgroundFooter2" { "ControlName" "ImagePanel" "fieldName" "BackgroundFooter2" "xpos" "0" "ypos" "430" "zpos" "1" "wide" "f0" "tall" "60" "visible" "1" "enabled" "1" "fillcolor" "27 27 27 200" "tileImage" "1" } "FooterLine" { "ControlName" "ImagePanel" "fieldName" "FooterLine" "xpos" "9999" "wide" "0" } "Sheet" { "ControlName" "EditablePanel" "fieldName" "Sheet" "tabxindent" "80" "tabxdelta" "10" "tabwidth" "240" "tabheight" "25" "transition_time" "0" "yoffset" "15" "HeaderLine" { "ControlName" "ImagePanel" "fieldName" "HeaderLine" "xpos" "0" "ypos" "30" "zpos" "5" "wide" "f0" "tall" "10" "visible" "0" "enabled" "0" "image" "loadout_solid_line" "scaleImage" "1" } "tabskv" { "textinsetx" "40" "textAlignment" "center" "font" "FontBold18" "selectedcolor" "TanLight" "unselectedcolor" "TanDark" "defaultBgColor_override" "DarkGrey" "paintbackground" "1" "activeborder_override" "ButtonDepressedBorder" "normalborder_override" "ButtonDepressedBorder" "armedBgColor_override" "37 37 37 255" "selectedBgColor_override" "DarkGrey" } } "BackButton" { "ControlName" "CExButton" "fieldName" "BackButton" "xpos" "100" "ypos" "440" "zpos" "2" "wide" "150" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#FH_back" "font" "FontBold18" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "0" "Command" "back" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/revivedialog.res ================================================ "resource/ui/revivedialog.res" { "ConfirmDialog" { "ControlName" "Frame" "fieldName" "ConfirmDialog" "xpos" "c-110" "ypos" "285" "wide" "220" "tall" "70" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "2" "paintbackground" "1" "bgcolor_override" "TransparentLightBlack" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold14" "labelText" "#ConfirmTitle" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "220" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "ExplanationLabel" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel" "font" "ReplayBrowserSmallest" "labelText" "%text%" "textAlignment" "center" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "220" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" "fgcolor_override" "LightRed" } // sigsegv: added this "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "90" "ypos" "43" "zpos" "20" "wide" "70" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "Hide" "font" "FontBold10" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "Econ.Button.Border.Default" "border_armed" "Econ.Button.Border.Armed" "armedBgColor_override" "Econ.Button.ArmedBgColor" "armedFgColor_override" "Econ.Button.ArmedFgColor" "depressedBgColor_override" "Econ.Button.DepressedBgColor" "depressedFgColor_override" "Econ.Button.DepressedFgColor" } "ConfirmButton" { "ControlName" "CExButton" "fieldName" "ConfirmButton" "xpos" "10" "ypos" "43" "zpos" "20" "wide" "70" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#ConfirmButtonText" "font" "FontBold10" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "confirm" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "Econ.Button.Border.Default" "border_armed" "Econ.Button.Border.Armed" "armedBgColor_override" "Econ.Button.ArmedBgColor" "armedFgColor_override" "Econ.Button.ArmedFgColor" "depressedBgColor_override" "Econ.Button.DepressedBgColor" "depressedFgColor_override" "Econ.Button.DepressedFgColor" } "SpectatorGUIHealth" { "ControlName" "EditablePanel" "fieldName" "SpectatorGUIHealth" "xpos" "155" "ypos" "43" "zpos" "20" "wide" "50" "tall" "20" "visible" "1" "enabled" "1" "HealthBonusPosAdj" "10" "autoResize" "1" "HealthDeathWarning" "0.40" "TFFont" "HudFontSmallest" "HealthDeathWarningColor" "HUDDeathWarning" "TextColor" "HudOffWhite" } } } ================================================ FILE: resource/ui/roundinfo.res ================================================ "resource/ui/roundinfo.res" { "roundinfo" { "ControlName" "Frame" "fieldName" "roundinfo" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "480" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "Overlay" { "ControlName" "RoundInfoOverlay" "fieldName" "Overlay" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "4" "wide" "610" "tall" "330" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "Title" { "ControlName" "CExLabel" "fieldName" "Title" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "f0" "tall" "26" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#round_info_header" "textAlignment" "center" "font" "FontBold37" "fgcolor" "TanLight" } "Mapname" { "ControlName" "CExLabel" "fieldName" "Mapname" "xpos" "0" "ypos" "5" "zpos" "1" "wide" "f0" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%mapname%" "textAlignment" "center" "font" "FontRegular20" "fgcolor" "TanLight" "pin_to_sibling" "Title" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "RoundContinue" { "ControlName" "CExButton" "fieldName" "RoundContinue" "xpos" "r225" "ypos" "r50" "zpos" "6" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "#TF_Continue" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "continue" "default" "1" "font" "FontBold22" "paintbackground" "1" } "MapImage" { "ControlName" "ImagePanel" "fieldName" "MapImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "3" "wide" "610" "tall" "330" "visible" "1" "enabled" "1" "scaleImage" "1" } "ShadedBar" { "ControlName" "ImagePanel" "fieldName" "ShadedBar" "xpos" "0" "ypos" "r50" "zpos" "5" "wide" "f0" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" "image" "loadout_bottom_gradient" "tileImage" "1" "PaintBackgroundType" "0" } "teambutton0SC" { "ControlName" "CExButton" "fieldName" "teambutton0SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&E" "command" "continue" } } ================================================ FILE: resource/ui/scoreboard.res ================================================ #base "../../../../cfg/flawhud/hud_scoreboard_style.txt" #base "scoreboard_base.res" ================================================ FILE: resource/ui/scoreboard_base.res ================================================ "resource/ui/scoreboard.res" { "scores" { "ControlName" "CTFClientScoreBoardDialog" "fieldName" "scores" "xpos" "cs-0.5" "ypos" "31" "wide" "f0" "tall" "f0" "tabPosition" "0" "medal_width" "25" "medal_column_width" "25" "avatar_width" "28" "spacer" "5" "name_width" "140" "nemesis_width" "15" "class_width" "18" "score_width" "25" "ping_width" "20" "killstreak_width" "18" "killstreak_image_width" "15" "medal_width_minmode" "0" "medal_column_width_minmode" "0" } "BlueBG" { "ControlName" "EditablePanel" "fieldName" "BlueBG" "xpos" "c-291" "ypos" "83" "wide" "290" "tall" "35" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "if_mvm" { "visible" "0" } } "BlueTeamName" { "ControlName" "CExLabel" "fieldName" "BlueTeamName" "font" "FontBold22" "labelText" "%blueteamname%" "textAlignment" "west" "xpos" "-6" "ypos" "0" "wide" "250" "tall" "22" "fgcolor" "BlueTeam" "pin_to_sibling" "BlueBG" "if_mvm" { "visible" "0" } } "BlueTeamPlayerCount" { "ControlName" "CExLabel" "fieldName" "BlueTeamPlayerCount" "font" "FontRegular11" "labelText" "%blueteamplayercount%" "textAlignment" "west" "xpos" "0" "ypos" "0" "wide" "210" "tall" "12" "fgcolor" "BlueTeam" "pin_to_sibling" "BlueTeamName" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "if_mvm" { "visible" "0" } } "BlueTeamScore" { "ControlName" "CExLabel" "fieldName" "BlueTeamScore" "font" "FontBold37" "labelText" "%blueteamscore%" "textAlignment" "east" "xpos" "-10" "ypos" "0" "wide" "80" "tall" "35" "fgcolor" "BlueTeam" "pin_to_sibling" "BlueBG" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "font" "FontRegular10" "textAlignment" "west" "ypos" "-100" "zpos" "1" "wide" "34" "tall" "20" "fgcolor" "DisguiseMenuIconBlue" "pin_to_sibling" "StatsBG" } } "BlueLine" { "ControlName" "EditablePanel" "fieldName" "BlueLine" "xpos" "0" "ypos" "0" "wide" "3" "tall" "35" "bgcolor_override" "BlueTeam" "pin_to_sibling" "BlueBG" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "visible" "0" } } "RedBG" { "ControlName" "EditablePanel" "fieldName" "RedBG" "xpos" "2" "ypos" "0" "wide" "290" "tall" "35" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "pin_to_sibling" "BlueBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "visible" "0" } } "RedTeamName" { "ControlName" "CExLabel" "fieldName" "RedTeamName" "font" "FontBold22" "labelText" "%redteamname%" "textAlignment" "east" "xpos" "-6" "ypos" "0" "wide" "250" "tall" "22" "fgcolor" "RedTeam" "pin_to_sibling" "RedBG" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "visible" "0" } } "RedTeamPlayerCount" { "ControlName" "CExLabel" "fieldName" "RedTeamPlayerCount" "font" "FontRegular11" "labelText" "%redteamplayercount%" "textAlignment" "east" "xpos" "0" "ypos" "0" "wide" "210" "tall" "12" "fgcolor" "RedTeam" "pin_to_sibling" "RedTeamName" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_BOTTOMRIGHT" "if_mvm" { "visible" "0" } } "RedLine" { "ControlName" "EditablePanel" "fieldName" "RedLine" "xpos" "0" "ypos" "0" "wide" "3" "tall" "35" "bgcolor_override" "RedTeam" "pin_to_sibling" "RedBG" "if_mvm" { "visible" "0" } } "RedTeamScore" { "ControlName" "CExLabel" "fieldName" "RedTeamScore" "font" "FontBold37" "labelText" "%redteamscore%" "textAlignment" "west" "xpos" "-10" "ypos" "0" "wide" "80" "tall" "35" "fgcolor" "RedTeam" "pin_to_sibling" "RedBG" "if_mvm" { "visible" "0" } } "BluePlayerBG" { "ControlName" "EditablePanel" "fieldName" "BluePlayerBG" "xpos" "0" "ypos" "2" "wide" "290" "wide_minmode" "0" "tall" "210" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "pin_to_sibling" "ServerBackground" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "if_mvm" { "visible" "0" } } "BluePlayerList" { "ControlName" "SectionedListPanel" "fieldName" "BluePlayerList" "xpos" "c-290" "ypos" "c-106" "zpos" "1" "wide" "288" "tall" "206" "wide_minmode" "0" "tabPosition" "0" "autoresize" "3" "linespacing" "16" "fgcolor" "TeamBlue" "if_mvm" { "visible" "0" } } "RedPlayerBG" { "ControlName" "EditablePanel" "fieldName" "RedPlayerBG" "xpos" "0" "ypos" "2" "wide" "290" "wide_minmode" "0" "tall" "210" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "pin_to_sibling" "ServerTimeBackground" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "if_mvm" { "visible" "0" } } "RedPlayerList" { "ControlName" "SectionedListPanel" "fieldName" "RedPlayerList" "xpos" "c+2" "ypos" "c-106" "zpos" "1" "wide" "288" "tall" "206" "wide_minmode" "0" "tabPosition" "0" "autoresize" "3" "linespacing" "16" "textcolor" "HUDRedTeamSolid" "if_mvm" { "visible" "0" } } "ServerBackground" { "ControlName" "EditablePanel" "fieldName" "ServerBackground" "xpos" "0" "ypos" "2" "wide" "290" "tall" "11" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "pin_to_sibling" "BlueBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "if_mvm" { "xpos" "c-275" //MVM StatsBG anchor "ypos" "64" "wide" "550" "pin_to_sibling" "" "visible" "0" } } "ServerLabel" { "ControlName" "CExLabel" "fieldName" "ServerLabel" "font" "FontRegular11" "labelText" "%server%" "textAlignment" "west" "xpos" "-5" "ypos" "0" "wide" "280" "wide_minmode" "0" "tall" "11" "pin_to_sibling" "ServerBackground" "if_mvm" { "font" "FontRegular10" "xpos" "c-271" "ypos" "79" "pin_to_sibling" "" } } "ServerTimeBackground" { "ControlName" "EditablePanel" "fieldName" "ServerTimeBackground" "xpos" "0" "ypos" "2" "wide" "290" "tall" "11" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "pin_to_sibling" "RedBG" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_BOTTOMRIGHT" "if_mvm" { "visible" "0" } } "ServerTimeLabel" { "ControlName" "CExLabel" "fieldName" "ServerTimeLabel" "labelText" "%servertimeleft%" "font" "FontRegular11" "textAlignment" "east" "xpos" "-5" "ypos" "0" "wide" "290" "tall" "11" "pin_to_sibling" "ServerTimeBackground" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "visible" "0" } } "Spectators" { "ControlName" "CExLabel" "fieldName" "Spectators" "font" "FontRegular11" "labelText" "%spectators%" "textAlignment" "north-west" "wrap" "1" "xpos" "-2" "ypos" "1" "zpos" "-1" "wide" "370" "wide_minmode" "0" "tall" "22" "pin_to_sibling" "StatsBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "if_mvm" { "xpos" "276" "wide" "546" } } "StatsBG" { "ControlName" "EditablePanel" "fieldName" "StatsBG" "xpos" "0" "ypos" "2" "wide" "582" "tall" "50" "bgcolor_override" "HudBlack" "PaintBackgroundType" "2" "pin_to_sibling" "BluePlayerBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "pin_to_sibling_minmode" "ServerBackground" "if_mvm" { "ypos" "-181" "wide" "270" "tall" "132" "pin_to_sibling" "ServerBackground" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } "SpectatorsInQueue" //(arena) does not work, even on stock hud. Only shows 1 player at a time. { "ControlName" "CExLabel" "fieldName" "SpectatorsInQueue" "font" "FontRegular11" "labelText" "%waitingtoplay%" "textAlignment" "north-west" "xpos" "-2" "ypos" "-72" "zpos" "-1" "wide" "577" "wide_minmode" "0" "tall" "20" "pin_to_sibling" "StatsBG" "if_mvm" { "visible" "0" } } "ClassImage" { "ControlName" "ImagePanel" "fieldName" "ClassImage" "xpos" "25" "ypos" "r75" "wide" "75" "tall" "75" "image" "../hud/class_scoutred" "scaleImage" "1" } "classmodelpanel" { "ControlName" "CTFPlayerModelPanel" "fieldName" "classmodelpanel" "xpos" "0" "ypos" "r200" "zpos" "-1" "wide" "150" "tall" "200" "fov" "23" "allow_rot" "1" "render_texture" "0" "model" { "force_pos" "1" "angles_x" "0" "angles_y" "175" "angles_z" "0" "origin_x" "200" "origin_y" "0" "origin_z" "-80" "frame_origin_x" "0" "frame_origin_y" "0" "frame_origin_z" "0" "spotlight" "1" "modelname" "" } } "PlayerNameBG" { "ControlName" "EditablePanel" "fieldName" "PlayerNameBG" "wide" "0" "visible" "0" "enabled" "0" } "PlayerNameLabel" { "ControlName" "CExLabel" "fieldName" "PlayerNameLabel" "wide" "0" "visible" "0" "enabled" "0" } "ServerLabelNew" { "ControlName" "CExLabel" "fieldName" "ServerLabelNew" "wide" "0" "visible" "0" "enabled" "0" } "MapName" { "ControlName" "CExLabel" "fieldName" "MapName" "font" "FontRegular11" "labelText" "%mapname%" "textAlignment" "north-east" "xpos" "-2" "ypos" "1" "zpos" "-1" "wide" "210" "wide_minmode" "0" "tall" "15" "allcaps" "1" "pin_to_sibling" "StatsBG" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_BOTTOMRIGHT" "if_mvm" { "xpos" "c-278" "ypos" "64" "wide" "550" "textAlignment" "east" "pin_to_sibling" "" } } "HorizontalLine" { "ControlName" "ImagePanel" "fieldName" "HorizontalLine" "wide" "0" "visible" "0" "enabled" "0" } "PlayerScoreLabel" { "ControlName" "CExLabel" "fieldName" "PlayerScoreLabel" "wide" "0" "visible" "0" "enabled" "0" } "LocalPlayerDuelStatsPanel" { "ControlName" "EditablePanel" "fieldName" "LocalPlayerDuelStatsPanel" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "585" "tall" "50" "pin_to_sibling" "StatsBG" "if_mvm" { "visible" "0" } "DuelingLabel" { "ControlName" "CExLabel" "fieldName" "DuelingLabel" "font" "ScoreboardSmall" "labelText" "#TF_ScoreBoard_Dueling" "textAlignment" "center" "xpos" "250" "ypos" "2" "zpos" "3" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "DuelingIcon" { "ControlName" "ImagePanel" "fieldName" "DuelingIcon" "xpos" "284" "ypos" "15" "zpos" "2" "wide" "32" "tall" "32" "visible" "1" "enabled" "1" "image" "../backpack/player/items/crafting/icon_dueling" "scaleImage" "1" } "LocalPlayerData" { "ControlName" "EditablePanel" "fieldName" "LocalPlayerData" "xpos" "75" "ypos" "0" "wide" "200" "tall" "53" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "AvatarBGPanel" { "ControlName" "EditablePanel" "fieldName" "AvatarBGPanel" "xpos" "157" "ypos" "7" "zpos" "-1" "wide" "36" "tall" "36" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "TextColor" } "AvatarImage" { "ControlName" "CAvatarImagePanel" "fieldName" "AvatarImage" "xpos" "159" "ypos" "9" "zpos" "0" "wide" "32" "tall" "32" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "AvatarTextLabel" { "ControlName" "CExLabel" "fieldName" "AvatarTextLabel" "fgcolor" "TanLight" "xpos" "50" "ypos" "7" "zpos" "2" "wide" "100" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "labelText" "%playername%" "textAlignment" "east" "font" "FontRegular11" } "Score" { "ControlName" "CExLabel" "fieldName" "Score" "labelText" "%score%" "textAlignment" "east" "xpos" "50" "ypos" "20" "zpos" "3" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "HudFontMediumSmallBold" } } "OpponentData" { "ControlName" "EditablePanel" "fieldName" "OpponentData" "xpos" "325" "ypos" "0" "wide" "200" "tall" "53" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "AvatarBGPanel" { "ControlName" "EditablePanel" "fieldName" "AvatarBGPanel" "xpos" "7" "ypos" "7" "zpos" "-1" "wide" "36" "tall" "36" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "TextColor" } "AvatarImage" { "ControlName" "CAvatarImagePanel" "fieldName" "AvatarImage" "xpos" "9" "ypos" "9" "zpos" "0" "wide" "32" "tall" "32" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } "AvatarTextLabel" { "ControlName" "CExLabel" "fieldName" "AvatarTextLabel" "fgcolor" "TanLight" "xpos" "50" "ypos" "7" "zpos" "2" "wide" "100" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "labelText" "%playername%" "textAlignment" "west" "font" "FontRegular11" } "Score" { "ControlName" "CExLabel" "fieldName" "Score" "labelText" "%score%" "textAlignment" "west" "xpos" "50" "ypos" "20" "zpos" "3" "wide" "200" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "font" "HudFontMediumSmallBold" } } } "LocalPlayerStatsPanel" { "ControlName" "EditablePanel" "fieldName" "LocalPlayerStatsPanel" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "582" "tall" "50" "pin_to_sibling" "StatsBG" "if_mvm" { "wide" "270" "tall" "132" } "KillsLabel" { "ControlName" "CExLabel" "fieldName" "KillsLabel" "font" "FontBold37" "labelText" ":" "textAlignment" "center" "textinsetx" "10" "xpos" "76" "ypos" "0" "wide" "15" "tall" "50" "pin_to_sibling" "StatsBG" "if_mvm" { "xpos" "128" "ypos" "1" } } "Kills2" { "ControlName" "CExLabel" "fieldName" "Kills2" "font" "FontBold37" "labelText" "%kills%" "textAlignment" "east" "xpos" "0" "ypos" "0" "wide" "100" "tall" "50" "pin_to_sibling" "KillsLabel" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "DeathsLabel" { "ControlName" "CExLabel" "fieldName" "DeathsLabel" "visible" "0" "enabled" "0" } "Deaths2" { "ControlName" "CExLabel" "fieldName" "Deaths2" "font" "FontBold37" "labelText" "%deaths%" "textAlignment" "west" "xpos" "0" "ypos" "0" "wide" "80" "tall" "50" "pin_to_sibling" "KillsLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "GameType" { "ControlName" "CExLabel" "fieldName" "GameType" "visible" "0" "enabled" "0" } "AssistsLabel" { "ControlName" "CExLabel" "fieldName" "AssistsLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_AssistsLabel" "textAlignment" "east" "xpos" "150" "ypos" "3" "wide" "60" "tall" "20" "pin_to_sibling" "StatsBG" "if_mvm" { "font" "FontRegular10" "xpos" "6" "ypos" "50" } } "Assists2" { "ControlName" "CExLabel" "fieldName" "Assists2" "font" "FontRegular11" "labelText" "%assists%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "AssistsLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "font" "FontRegular10" } } "DestructionLabel" { "ControlName" "CExLabel" "fieldName" "DestructionLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_DestructionLabel" "textAlignment" "east" "xpos" "0" "ypos" "-12" "wide" "60" "tall" "20" "pin_to_sibling" "AssistsLabel" "if_mvm" { "font" "FontRegular10" "xpos" "0" "ypos" "-50" "pin_to_sibling" "HeadshotsLabel" } } "Destruction2" { "ControlName" "CExLabel" "fieldName" "Destruction2" "font" "FontRegular11" "labelText" "%destruction%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "DestructionLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "font" "FontRegular10" } } "CapturesLabel" { "ControlName" "CExLabel" "fieldName" "CapturesLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_CapturesLabel" "textAlignment" "east" "xpos" "0" "ypos" "-12" "wide" "60" "tall" "20" "pin_to_sibling" "DestructionLabel" "if_mvm" { "visible" "0" } } "Captures2" { "ControlName" "CExLabel" "fieldName" "Captures2" "font" "FontRegular11" "labelText" "%captures%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "CapturesLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "visible" "0" } } "DominationLabel" { "ControlName" "CExLabel" "fieldName" "DominationLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_DominationLabel" "textAlignment" "east" "xpos" "-85" "ypos" "0" "wide" "60" "tall" "20" "pin_to_sibling" "AssistsLabel" "if_mvm" { "visible" "0" } } "Domination2" { "ControlName" "CExLabel" "fieldName" "Domination2" "font" "FontRegular11" "labelText" "%dominations%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "DominationLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "visible" "0" } } "RevengeLabel" { "ControlName" "CExLabel" "fieldName" "RevengeLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_RevengeLabel" "textAlignment" "east" "xpos" "0" "ypos" "-12" "wide" "60" "tall" "20" "pin_to_sibling" "DominationLabel" "if_mvm" { "visible" "0" } } "Revenge2" { "ControlName" "CExLabel" "fieldName" "Revenge2" "font" "FontRegular11" "labelText" "%Revenge%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "RevengeLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "visible" "0" } } "DefensesLabel" { "ControlName" "CExLabel" "fieldName" "DefensesLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_DefensesLabel" "textAlignment" "east" "xpos" "0" "ypos" "-12" "wide" "60" "tall" "20" "pin_to_sibling" "RevengeLabel" "if_mvm" { "font" "FontRegular10" "ypos" "-25" "pin_to_sibling" "AssistsLabel" } } "Defenses2" { "ControlName" "CExLabel" "fieldName" "Defenses2" "font" "FontRegular11" "labelText" "%defenses%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "DefensesLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "font" "FontRegular10" } } "HealingLabel" { "ControlName" "CExLabel" "fieldName" "HealingLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_HealingLabel" "textAlignment" "east" "xpos" "-80" "ypos" "0" "wide" "50" "tall" "20" "pin_to_sibling" "DominationLabel" "if_mvm" { "visible" "0" } } "Healing2" { "ControlName" "CExLabel" "fieldName" "Healing2" "font" "FontRegular11" "labelText" "%healing%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "35" "tall" "20" "pin_to_sibling" "HealingLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "visible" "0" } } "InvulnLabel" { "ControlName" "CExLabel" "fieldName" "InvulnLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_InvulnLabel" "textAlignment" "east" "xpos" "0" "ypos" "-12" "wide" "50" "tall" "20" "pin_to_sibling" "HealingLabel" "if_mvm" { "font" "FontRegular10" "ypos" "25" "pin_to_sibling" "BonusLabel" } } "Invuln2" { "ControlName" "CExLabel" "fieldName" "Invuln2" "font" "FontRegular11" "labelText" "%invulns%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "InvulnLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "font" "FontRegular10" "xpos" "0" "ypos" "25" "pin_to_sibling" "Bonus2" "pin_to_sibling_corner" "PIN_TOPLEFT" } } "BonusLabel" { "ControlName" "CExLabel" "fieldName" "BonusLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_BonusLabel" "textAlignment" "east" "xpos" "0" "ypos" "-12" "wide" "50" "tall" "20" "pin_to_sibling" "InvulnLabel" "if_mvm" { "font" "FontRegular10" "xpos" "53" "ypos" "0" "pin_to_sibling" "Bonus2" } } "Bonus2" { "ControlName" "CExLabel" "fieldName" "Bonus2" "font" "FontRegular11" "labelText" "%bonus%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "BonusLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "xpos" "226" "ypos" "75" "font" "FontRegular10" "pin_to_sibling" "" } } "HeadshotsLabel" { "ControlName" "CExLabel" "fieldName" "HeadshotsLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_HeadshotsLabel" "textAlignment" "east" "xpos" "-75" "ypos" "0" "wide" "60" "tall" "20" "pin_to_sibling" "HealingLabel" "if_mvm" { "font" "FontRegular10" "xpos" "-86" "pin_to_sibling" "AssistsLabel" } } "Headshots2" { "ControlName" "CExLabel" "fieldName" "Headshots2" "font" "FontRegular11" "labelText" "%headshots%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "HeadshotsLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "font" "FontRegular10" } } "BackstabsLabel" { "ControlName" "CExLabel" "fieldName" "BackstabsLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_BackstabsLabel" "textAlignment" "east" "xpos" "0" "ypos" "-12" "wide" "60" "tall" "20" "pin_to_sibling" "HeadshotsLabel" "if_mvm" { "font" "FontRegular10" "ypos" "-25" "pin_to_sibling" "HeadshotsLabel" } } "Backstabs2" { "ControlName" "CExLabel" "fieldName" "Backstabs2" "font" "FontRegular11" "labelText" "%backstabs%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "BackstabsLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "font" "FontRegular10" } } "TeleportsLabel" { "ControlName" "CExLabel" "fieldName" "TeleportsLabel" "font" "FontRegular11" "labelText" "#TF_ScoreBoard_TeleportsLabel" "textAlignment" "east" "xpos" "0" "ypos" "-12" "wide" "60" "tall" "20" "pin_to_sibling" "BackstabsLabel" "if_mvm" { "font" "FontRegular10" "ypos" "-50" "pin_to_sibling" "AssistsLabel" } } "Teleports2" { "ControlName" "CExLabel" "fieldName" "Teleports2" "font" "FontRegular11" "labelText" "%teleports%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "TeleportsLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "font" "FontRegular10" } } "SupportLabel" { "ControlName" "CExLabel" "fieldName" "SupportLabel" "font" "FontRegular11" "labelText" "#TF_Scoreboard_Support" "textAlignment" "east" "xpos" "-80" "ypos" "0" "wide" "60" "tall" "20" "pin_to_sibling" "HeadshotsLabel" "if_mvm" { "visible" "0" } } "Support2" { "ControlName" "CExLabel" "fieldName" "Support2" "font" "FontRegular11" "labelText" "%support%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "30" "tall" "20" "pin_to_sibling" "SupportLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "visible" "0" } } "DamageLabel" { "ControlName" "CExLabel" "fieldName" "DamageLabel" "font" "FontRegular11" "labelText" "#TF_Scoreboard_Damage" "textAlignment" "east" "xpos" "0" "ypos" "-12" "wide" "60" "tall" "20" "pin_to_sibling" "SupportLabel" "if_mvm" { "visible" "0" } } "Damage2" { "ControlName" "CExLabel" "fieldName" "Damage2" "font" "FontRegular11" "labelText" "%damage%" "textAlignment" "west" "xpos" "3" "ypos" "0" "wide" "50" "tall" "20" "pin_to_sibling" "DamageLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "if_mvm" { "visible" "0" } } "MvmLossLabel" { "ControlName" "CExLabel" "fieldName" "MvmLossLabel" "font" "FontRegular10" "labelText" "#TF_Competitive_MatchHistory_Loss" "textAlignment" "east" "xpos" "0" "ypos" "-25" "wide" "50" "tall" "20" "TextInsetX" "3" "visible" "0" "fgcolor" "DisguiseMenuIconBlue" "pin_to_sibling" "BonusLabel" "if_mvm" { "visible" "1" } } "MvmLossLabelColon" { "ControlName" "CExLabel" "fieldName" "MvmLossLabelColon" "font" "FontRegular10" "labelText" ":" "textAlignment" "east" "xpos" "0" "ypos" "0" "wide" "50" "tall" "20" "visible" "0" "fgcolor" "DisguiseMenuIconBlue" "pin_to_sibling" "MvmLossLabel" "if_mvm" { "visible" "1" } } } "MvMScoreboard" { "ControlName" "CTFHudMannVsMachineScoreboard" "fieldName" "MvMScoreboard" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "visible" "0" "verbose" "1" "if_mvm" { "visible" "1" } } "DrawingBoardLeft" { "ControlName" "EditablePanel" "xpos" "0" "ypos" "-70" "zpos" "-1" "wide" "f0" "tall" "f0" "pin_to_sibling" "classmodelpanel" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" "Draw" { "ControlName" "CDrawingPanel" "wide" "f0" "tall" "f0" "linecolor" "TanLight" } "if_mvm" { "zpos" "998" } } "DrawingBoardRight" { "ControlName" "EditablePanel" "xpos" "-20" "ypos" "0" "zpos" "-1" "wide" "f0" "tall" "f0" "pin_to_sibling" "classmodelpanel" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_BOTTOMRIGHT" "Draw" { "ControlName" "CDrawingPanel" "wide" "f0" "tall" "f0" "linecolor" "TanLight" } "if_mvm" { "zpos" "999" } } } ================================================ FILE: resource/ui/selbyenhud.res ================================================ #base "hudobjectiveplayerdestruction.res" "resource/ui/selbyenhud.res" { "CarriedContainer" { "CarriedImage" { "image" "replay/thumbnails/selbyen_pickup" } } "ScoreContainer" { "ProgressBarContainer" { "FlagImageBlue" { "image" "replay/thumbnails/selbyen_pickup" "zpos" "100" } "FlagImageRed" { "image" "replay/thumbnails/selbyen_pickup" "zpos" "100" } } } } ================================================ FILE: resource/ui/spectator.res ================================================ #base "hudinspectpanel.res" "resource/ui/spectator.res" { "Spectator" { "ControlName" "Frame" "fieldName" "Spectator" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "specgui" { } "topbar" { "ControlName" "Panel" "fieldName" "topbar" "xpos" "0" "ypos" "0" "tall" "0" "wide" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" } "BottomBar" { "ControlName" "Frame" "fieldName" "BottomBar" "xpos" "9999" "ypos" "9999" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" } "bottombarblank" { "ControlName" "Panel" "fieldName" "bottombarblank" "xpos" "9999" "ypos" "r55" "tall" "0" "wide" "f0" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" } "ReinforcementsLabel" { "ControlName" "CExLabel" "fieldName" "ReinforcementsLabel" "xpos" "0" "ypos" "83" "wide" "f0" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#game_respawntime_in_secs" "textAlignment" "center" "font" "FontRegular15" if_mvm { "ypos" "90" } } "BuyBackLabel" { "ControlName" "CExLabel" "fieldName" "BuyBackLabel" "xpos" "0" "ypos" "110" "wide" "f0" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "#TF_PVE_Buyback" "textAlignment" "center" "font" "FontRegular15" if_mvm { "visible" "1" } } "MapLabel" { "ControlName" "CExLabel" "fieldName" "MapLabel" "xpos" "9999" } "ClassOrTeamLabel" { "ControlName" "CExLabel" "fieldName" "ClassOrTeamLabel" "xpos" "9999" } "SwitchCamModeKeyLabel" { "ControlName" "CExLabel" "fieldName" "SwitchCamModeKeyLabel" "xpos" "9999" } "SwitchCamModeLabel" { "ControlName" "CExLabel" "fieldName" "SwitchCamModeLabel" "xpos" "9999" } "CycleTargetFwdKeyLabel" { "ControlName" "CExLabel" "fieldName" "CycleTargetFwdKeyLabel" "xpos" "9999" } "CycleTargetFwdLabel" { "ControlName" "CExLabel" "fieldName" "CycleTargetFwdLabel" "xpos" "9999" } "CycleTargetRevKeyLabel" { "ControlName" "CExLabel" "fieldName" "CycleTargetRevKeyLabel" "xpos" "9999" } "CycleTargetRevLabel" { "ControlName" "CExLabel" "fieldName" "CycleTargetRevLabel" "xpos" "9999" } "TipLabel" { "ControlName" "CExLabel" "fieldName" "TipLabel" "xpos" "9999" } "spectator_extras" { "ControlName" "EditablePanel" "fieldName" "spectator_extras" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } } ================================================ FILE: resource/ui/spectator_sc.res ================================================ #base "spectator.res" ================================================ FILE: resource/ui/spectatorcoach.res ================================================ "resource/ui/spectatorcoach.res" { "Spectator" { "ControlName" "Frame" "fieldName" "Spectator" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "specgui" { } "topbar" { "ControlName" "Panel" "fieldName" "topbar" "xpos" "0" "ypos" "0" "tall" "70" "wide" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "border" "TFThinLineBorder" } "AvatarBGPanel" { "ControlName" "EditablePanel" "fieldName" "AvatarBGPanel" "xpos" "5" "ypos" "5" "zpos" "-1" "wide" "42" "tall" "42" "visible" "1" "bgcolor_override" "117 107 94 255" "PaintBackgroundType" "2" } "AvatarImage" { "ControlName" "CAvatarImagePanel" "fieldName" "AvatarImage" "xpos" "10" "ypos" "10" "zpos" "0" "wide" "32" "tall" "32" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "52 48 45 255" } "HealthPositioning" { "ControlName" "EditablePanel" "fieldName" "HealthPositioning" "xpos" "5" "ypos" "50" "zpos" "1" "wide" "250" "tall" "120" } "CoachingLabel" { "ControlName" "CExLabel" "fieldName" "CoachingLabel" "font" "HudFontSmall" "xpos" "57" "ypos" "5" "wide" "240" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%student_name%" "textAlignment" "west" } "MapLabel" { "ControlName" "CExLabel" "fieldName" "MapLabel" "font" "HudFontSmall" "xpos" "57" "ypos" "20" "wide" "240" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" } "DistanceLabel" { "ControlName" "CExLabel" "fieldName" "DistanceLabel" "font" "HudFontSmall" "xpos" "57" "ypos" "35" "wide" "240" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%student_distance%" "textAlignment" "west" } "DirectionsLabel" { "ControlName" "CExLabel" "fieldName" "DirectionsLabel" "xpos" "r200" [$WIN32] "ypos" "0" [$WIN32] "wide" "200" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" [$WIN32] "enabled" "1" "labelText" "#TF_Coach_StudentCommands" "textAlignment" "west" "font" "SpectatorKeyHints" } "SwitchCamModeKeyLabel" { "ControlName" "CExLabel" "fieldName" "SwitchCamModeKeyLabel" "xpos" "r200" [$WIN32] "ypos" "10" [$WIN32] "wide" "60" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" [$WIN32] "enabled" "1" "labelText" "" "textAlignment" "east" "font" "SpectatorKeyHints" } "SwitchCamModeLabel" { "ControlName" "CExLabel" "fieldName" "SwitchCamModeLabel" "xpos" "r125" [$WIN32] "ypos" "10" [$WIN32] "wide" "125" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" [$WIN32] "enabled" "1" "labelText" "#TF_Coach_ControlView" "textAlignment" "west" "font" "SpectatorKeyHints" } "CycleTargetFwdKeyLabel" { "ControlName" "CExLabel" "fieldName" "CycleTargetFwdKeyLabel" "xpos" "r200" [$WIN32] "ypos" "20" [$WIN32] "wide" "60" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "east" "font" "SpectatorKeyHints" } "CycleTargetFwdLabel" { "ControlName" "CExLabel" "fieldName" "CycleTargetFwdLabel" "xpos" "r125" [$WIN32] "ypos" "20" [$WIN32] "wide" "125" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" [$WIN32] "enabled" "1" "labelText" "#TF_Coach_AttackDesc" "textAlignment" "west" "font" "SpectatorKeyHints" } "CycleTargetRevKeyLabel" { "ControlName" "CExLabel" "fieldName" "CycleTargetRevKeyLabel" "xpos" "r200" [$WIN32] "ypos" "30" [$WIN32] "wide" "60" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" [$WIN32] "enabled" "1" "labelText" "" "textAlignment" "east" "font" "SpectatorKeyHints" } "CycleTargetRevLabel" { "ControlName" "CExLabel" "fieldName" "CycleTargetRevLabel" "xpos" "r125" [$WIN32] "ypos" "30" [$WIN32] "wide" "125" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" [$WIN32] "enabled" "1" "labelText" "#TF_Coach_DefendDesc" "textAlignment" "west" "font" "SpectatorKeyHints" } "Slot1KeyLabel" { "ControlName" "CExLabel" "fieldName" "Slot1KeyLabel" "xpos" "r200" [$WIN32] "ypos" "40" [$WIN32] "wide" "60" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" [$WIN32] "enabled" "1" "labelText" "%coach_command_1%" "textAlignment" "east" "font" "SpectatorKeyHints" } "Slot1Label" { "ControlName" "CExLabel" "fieldName" "Slot1Label" "xpos" "r125" [$WIN32] "ypos" "40" [$WIN32] "wide" "125" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" [$WIN32] "enabled" "1" "labelText" "#TF_Coach_Slot1Desc" "textAlignment" "west" "font" "SpectatorKeyHints" } "Slot2KeyLabel" { "ControlName" "CExLabel" "fieldName" "Slot2KeyLabel" "xpos" "r200" [$WIN32] "ypos" "50" [$WIN32] "wide" "60" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" [$WIN32] "enabled" "1" "labelText" "%coach_command_2%" "textAlignment" "east" "font" "SpectatorKeyHints" } "Slot2Label" { "ControlName" "CExLabel" "fieldName" "Slot2Label" "xpos" "r125" [$WIN32] "ypos" "50" [$WIN32] "wide" "125" [$WIN32] "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" [$WIN32] "enabled" "1" "labelText" "#TF_Coach_Slot2Desc" "textAlignment" "west" "font" "SpectatorKeyHints" } } ================================================ FILE: resource/ui/spectatorguihealth.res ================================================ "resource/ui/spectatorguihealth.res" { "PlayerStatusHealthImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthImage" "xpos" "9999" "wide" "0" "tall" "0" } "PlayerStatusHealthImageBG" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthImageBG" "xpos" "9999" "wide" "0" "tall" "0" } "BuildingStatusHealthImageBG" { "ControlName" "ImagePanel" "fieldName" "BuildingStatusHealthImageBG" "xpos" "9999" "wide" "0" "tall" "0" } "PlayerStatusHealthBonusImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthBonusImage" "xpos" "9999" "wide" "0" "tall" "0" } "TargetHealthValue" { "ControlName" "CExLabel" "fieldName" "TargetHealthValue" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "20" "visible" "1" "enabled" "1" "labelText" "%Health%" "textAlignment" "center" "font" "FontBold20" "fgcolor" "TanLight" } "TargetHealthShadow" { "ControlName" "CExLabel" "fieldName" "TargetHealthShadow" "xpos" "-1" "ypos" "-1" "zpos" "5" "wide" "70" "tall" "20" "visible" "1" "enabled" "1" "labelText" "%Health%" "textAlignment" "center" "font" "FontBold20" "fgcolor" "Black" "pin_to_sibling" "TargetHealthValue" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "PlayerStatusPlayerLevel" { "ControlName" "CExLabel" "fieldName" "PlayerStatusPlayerLevel" "xpos" "9999" "wide" "0" "tall" "0" } } ================================================ FILE: resource/ui/spectatortournament.res ================================================ #base "hudinspectpanel.res" "resource/ui/spectatortournament.res" { "specgui" { "ControlName" "Frame" "fieldName" "specgui" "wide" "f0" "tall" "480" "zpos" "100" "autoResize" "0" "pinCorner" "0" "enabled" "1" "team1_player_base_offset_x" "0" "team1_player_base_y" "320" "team1_player_delta_x" "0" "team1_player_delta_y" "18" "team2_player_base_offset_x" "0" "team2_player_base_y" "270" "team2_player_delta_x" "0" "team2_player_delta_y" "-18" "playerpanels_kv" { "visible" "0" "wide" "130" "tall" "18" "zpos" "1" "color_ready" "0 255 0 220" "color_notready" "0 0 0 220" "HealthIconCover" { "ControlName" "ImagePanel" "fieldName" "HealthIconCover" "xpos" "103" "ypos" "0" "zpos" "-1" "wide" "30" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "0 0 0 200" } "PanelBottom" { "ControlName" "ImagePanel" "fieldName" "PanelBottom" "xpos" "0" "ypos" "16" "zpos" "-1" "wide" "150" "tall" "2" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "0 0 0 150" } "playername" { "ControlName" "CExLabel" "fieldName" "playername" "font" "FontRegular11" "font_minmode" "StreamerMode" "xpos" "22" "ypos" "0" "zpos" "5" "wide" "80" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "1" "labelText" "%playername%" "textAlignment" "west" "fgcolor" "TanLight" } "playernameshadow" { "ControlName" "CExLabel" "fieldName" "playernameshadow" "font" "FontRegular11" "font_minmode" "StreamerMode" "xpos" "0" "ypos" "-1" "zpos" "5" "wide" "80" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "1" "labelText" "%playername%" "textAlignment" "west" "fgcolor" "Black" "pin_to_sibling" "playername" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "classimage" { "ControlName" "CTFClassImage" "fieldName" "classimage" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "16" "tall" "16" "visible" "1" "enabled" "1" "image" "../hud/class_scoutred" "scaleImage" "1" } "classimagebg" { "ControlName" "Panel" "fieldName" "classimagebg" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "16" "tall" "16" "visible" "1" "enabled" "1" "bgcolor_override" "0 0 0 200" "PaintBackgroundType" "0" } "HealthIcon" { "ControlName" "EditablePanel" "fieldName" "HealthIcon" "xpos" "2" "ypos" "0" "zpos" "3" "wide" "f0" "tall" "f0" "bgcolor_override" "Transparent" "proportionaltoparent" "1" "HealthBonusPosAdj" "10" "HealthDeathWarning" "0.35" "HealthDeathWarningColor" "HUDDeathWarning" } "ReadyBG" { "ControlName" "ScalableImagePanel" "fieldName" "ReadyBG" "xpos" "30" "ypos" "6" "zpos" "-1" "wide" "16" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "image" "../HUD/tournament_panel_brown" "src_corner_height" "22" // pixels inside the image "src_corner_width" "22" "draw_corner_width" "3" // screen size of the corners ( and sides ), proportional "draw_corner_height" "3" } "ReadyImage" { "ControlName" "ImagePanel" "fieldName" "ReadyImage" "xpos" "32" "ypos" "8" "zpos" "0" "wide" "12" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "image" "hud/checkmark" "scaleImage" "1" } "respawntime" { "ControlName" "CExLabel" "fieldName" "respawntime" "font" "FontRegular10" "xpos" "0" "ypos" "0" "zpos" "6" "wide" "17" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "1" "labelText" "%respawntime%" "textAlignment" "center" "fgcolor" "TanLight" } "respawntimeshadow" { "ControlName" "CExLabel" "fieldName" "respawntimeshadow" "font" "FontRegular10" "xpos" "0" "ypos" "-1" "zpos" "6" "wide" "17" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "1" "labelText" "%respawntime%" "textAlignment" "center" "fgcolor" "Black" "pin_to_sibling" "respawntime" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "respawntimecover" { "ControlName" "CExLabel" "fieldName" "respawntimecover" "font" "FontRegular10" "xpos" "121" "ypos" "0" "zpos" "5" "wide" "24" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "labelText" "%respawntime%" "textAlignment" "east" "fgcolor" "0 0 0 0" } "chargeamount" { "ControlName" "CExLabel" "fieldName" "chargeamount" "font" "FontBold9" "xpos" "0" "ypos" "4" "zpos" "6" "wide" "20" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "1" "labelText" "%chargeamount%" "textAlignment" "west" } "chargeamountshadow" { "ControlName" "CExLabel" "fieldName" "chargeamountshadow" "font" "FontBold9" "xpos" "0" "ypos" "-1" "zpos" "6" "wide" "20" "tall" "17" "autoResize" "0" "pinCorner" "0" "visible" "1" "labelText" "%chargeamount%" "textAlignment" "west" "fgcolor_override" "Black" "pin_to_sibling" "chargeamount" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "specindex" { "ControlName" "CExLabel" "visible" "0" } } } "topbar" { "ControlName" "Panel" "fieldName" "topbar" "visible" "0" "tall" "0" } "BottomBar" { "ControlName" "Frame" "fieldName" "BottomBar" "visible" "0" "ypos" "100" "tall" "0" } "bottombarblank" { "ControlName" "Panel" "fieldName" "bottombarblank" "visible" "0" "xpos" "9999" "ypos" "r55" } "ReinforcementsLabel" { "ControlName" "CExLabel" "fieldName" "ReinforcementsLabel" "xpos" "0" "ypos" "50" "wide" "f0" "tall" "18" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#game_respawntime_in_secs" "textAlignment" "center" "font" "FontRegular15" if_mvm { "ypos" "90" } } "BuyBackLabel" { "ControlName" "CExLabel" "fieldName" "BuyBackLabel" "xpos" "0" "ypos" "110" "wide" "f0" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "#TF_PVE_Buyback" "textAlignment" "center" "font" "FontRegular15" "wrap" "1" "centerwrap" "1" if_mvm { "visible" "1" } } "MapLabel" { "ControlName" "CExLabel" "fieldName" "MapLabel" "visible" "0" } "ClassOrTeamLabel" { "ControlName" "CExLabel" "fieldName" "ClassOrTeamLabel" "visible" "0" } "CycleTargetFwdKeyLabel" { "ControlName" "CExLabel" "fieldName" "CycleTargetFwdKeyLabel" "visible" "0" } "CycleTargetRevKeyLabel" { "ControlName" "CExLabel" "fieldName" "CycleTargetRevKeyLabel" "visible" "0" } } ================================================ FILE: resource/ui/spectatortournamentguihealth.res ================================================ "resource/ui/spectatortournamentguihealth.res" { "PlayerStatusHealthImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "wide" "20" "tall" "20" "visible" "0" "enabled" "1" "scaleImage" "1" "proportionaltoparent" "1" } "PlayerStatusHealthImageBG" { "visible" "0" "xpos" "r0" "ypos" "r0" } "PlayerStatusHealthBonusImage" { "ControlName" "ImagePanel" "fieldName" "PlayerStatusHealthBonusImage" "xpos" "cs-0.5" "ypos" "cs-0.5" "zpos" "2" "wide" "208" "tall" "234" "visible" "0" "enabled" "1" "alpha" "0" "scaleImage" "1" "proportionaltoparent" "1" "image" "" } "SpecHealthValue" { "ControlName" "CExLabel" "fieldName" "SpecHealthValue" "xpos" "0" "ypos" "0" "zpos" "7" "wide" "30" "tall" "f0" "visible" "1" "enabled" "1" "font" "FontBold12" "labelText" "%Health%" "textAlignment" "center" "fgcolor" "TanLight" "proportionaltoparent" "1" "pin_to_sibling" "BottomBorder" "pin_corner_to_sibling" "PIN_BOTTOMRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "SpecHealthShadow" { "ControlName" "CExLabel" "fieldName" "SpecHealthShadow" "xpos" "-1" "ypos" "-1" "zpos" "6" "wide" "30" "tall" "f0" "font" "FontBold12" "labelText" "%Health%" "textAlignment" "center" "textinsetx" "2" "visible" "1" "fgcolor" "Black" "proportionaltoparent" "1" "pin_to_sibling" "SpecHealthValue" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "BottomBorder" { "ControlName" "EditablePanel" "FieldName" "BottomBorder" "xpos" "0" "ypos" "r0" "zpos" "6" "wide" "f0" "tall" "0" "visible" "1" "bgcolor_override" "Black" "proportionaltoparent" "1" } } ================================================ FILE: resource/ui/stampdonationadd.res ================================================ "resource/ui/stampdonationadd.res" { "ConfirmDialog" { "ControlName" "Frame" "fieldName" "ConfirmDialog" "xpos" "c-150" "ypos" "90" "wide" "450" "tall" "260" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" "paintbackground" "1" "paintborder" "1" "border" "WhiteBorder" "bgcolor_override" "DarkerGrey" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold18" "labelText" "#ConfirmTitle" "textAlignment" "north" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "450" "tall" "30" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "ExplanationLabel" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel" "font" "HudFontSmallestBold" "labelText" "%text%" "textAlignment" "north-west" "xpos" "35" "ypos" "153" "zpos" "1" "wide" "340" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "LightRed" } "ExplanationLabel2" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel2" "font" "HudFontSmallest" "labelText" "#Store_ConfirmStampDonationAddText2" "textAlignment" "north-west" "xpos" "35" "ypos" "52" "zpos" "1" "wide" "330" "tall" "170" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "LightRed" } "ItemImagePanel" { "ControlName" "ImagePanel" "fieldName" "ItemImagePanel" "xpos" "282" "ypos" "20" "wide" "150" "tall" "150" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "scaleImage" "1" } "ItemImagePanel2" { "ControlName" "ImagePanel" "fieldName" "ItemImagePanel2" "xpos" "255" "ypos" "95" "wide" "140" "tall" "140" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "scaleImage" "1" } "Nope" { "ControlName" "CExButton" "fieldName" "Nope" "xpos" "40" "ypos" "210" "zpos" "20" "wide" "175" "tall" "25" "autoResize" "0" "pinCorner" "0" "enabled" "1" "tabPosition" "0" "labelText" "#Store_Nope" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "nope" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ConfirmButton" { "ControlName" "CExButton" "fieldName" "ConfirmButton" "xpos" "235" "ypos" "100" "zpos" "20" "wide" "175" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Store_AddToCart" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "add_stamp_to_cart" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/vote_success.wav" } "PriceLabel" { "ControlName" "CExLabel" "fieldName" "PriceLabel" "font" "FontBold20" "labelText" "%price%" "textAlignment" "north-east" "xpos" "345" "ypos" "145" "zpos" "25" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" "fgcolor_override" "121 195 58 255" } } ================================================ FILE: resource/ui/statsummary.res ================================================ "resource/ui/statsummary.res" { "TFStatsSummary" { "ControlName" "EditablePanel" "fieldName" "TFStatsSummary" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "bgcolor_override" "DarkGrey" } "MainBackground" { "ControlName" "ImagePanel" "fieldName" "MainBackground" "xpos" "0" "ypos" "0" "wide" "0" "tall" "0" "visible" "0" "enabled" "0" "image" "" "scaleImage" "1" } "Background" { "ControlName" "ImagePanel" "fieldName" "Background" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "0" "tall" "480" "visible" "1" "enabled" "1" "image" "../console/background_upward" "scaleImage" "1" } "MapInfo" { "ControlName" "EditablePanel" "fieldName" "MapInfo" "xpos" "9999" } "OnYourWayLabel" { "ControlName" "CExLabel" "fieldName" "OnYourWayLabel" "font" "FontBold14" "labelText" "#LoadingMap" "textAlignment" "west" "xpos" "10" "ypos" "28" "zpos" "50" "wide" "f0" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "MapLabel" { "ControlName" "CExLabel" "fieldName" "MapLabel" "font" "FontBold37" "labelText" "%maplabel%" "textAlignment" "west" "xpos" "10" "ypos" "40" "zpos" "50" "wide" "f0" "tall" "35" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "MapType" { "ControlName" "CExLabel" "fieldName" "MapType" "font" "FontBold14" "labelText" "%maptype%" "textAlignment" "west" "xpos" "10" "ypos" "75" "zpos" "50" "wide" "f0" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "StatData" { "ControlName" "EditablePanel" "fieldName" "StatData" "xpos" "0" "ypos" "95" "zpos" "1" "wide" "f0" "tall" "300" "visible" "1" "enabled" "1" "NonInteractiveHeaders" { "ControlName" "EditablePanel" "fieldName" "NonInteractiveHeaders" "xpos" "0" "ypos" "78" "zpos" "2" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "BarChartLabelA" { "ControlName" "Label" "fieldName" "BarChartLabelA" "font" "ScoreboardSmall" "labelText" "#StatSummary_StatTitle_MostPoints" "textAlignment" "east" "xpos" "c-282" "ypos" "0" "zpos" "5" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "BarChartLabelB" { "ControlName" "Label" "fieldName" "BarChartLabelB" "font" "ScoreboardSmall" "labelText" "#StatSummary_StatTitle_TotalPlaytime" "textAlignment" "west" "xpos" "c-127" "ypos" "0" "zpos" "5" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "OverallRecordLabel" { "ControlName" "Label" "fieldName" "OverallRecordLabel" "font" "ScoreboardSmall" "labelText" "#StatSummary_Label_AsAnyClass" "textAlignment" "west" "xpos" "c+124" "ypos" "0" "zpos" "5" "wide" "200" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } } "InteractiveHeaders" { "ControlName" "EditablePanel" "fieldName" "InteractiveHeaders" "xpos" "0" "ypos" "78" "zpos" "2" "wide" "f0" "tall" "14" "visible" "1" "enabled" "1" "BarChartComboA" { "ControlName" "ComboBox" "fieldName" "BarChartComboA" "xpos" "c-285" "ypos" "0" "zpos" "10" "wide" "154" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "bgcolor_override" "DarkGrey" } "BarChartComboB" { "ControlName" "ComboBox" "fieldName" "BarChartComboB" "xpos" "c-127" "ypos" "0" "zpos" "10" "wide" "154" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "bgcolor_override" "DarkGrey" } "ClassCombo" { "ControlName" "ComboBox" "fieldName" "ClassCombo" "xpos" "c+124" "ypos" "0" "zpos" "10" "wide" "100" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "bgcolor_override" "DarkGrey" } } "AveragesBG" { "ControlName" "EditablePanel" "fieldName" "AveragesBG" "xpos" "c-295" "ypos" "35" "wide" "406" "tall" "230" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "bgcolor_override" "TransparentLightBlack" "PaintBackgroundType" "2" } "AveragesLabel" { "ControlName" "Label" "fieldName" "AveragesLabel" "font" "FontBold20" "labelText" "#StatSummary_Label_PerformanceReport" "textAlignment" "center" "xpos" "c-295" "ypos" "35" "wide" "406" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ClassBarBG1A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG1A" "xpos" "c-285" "ypos" "96" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG1B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG1B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG1A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar1A" { "ControlName" "ImagePanel" "fieldName" "ClassBar1A" "xpos" "c-282" "ypos" "98" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuScout" "PaintBackgroundType" "0" } "ClassBar1B" { "ControlName" "ImagePanel" "fieldName" "ClassBar1B" "xpos" "c-127" "ypos" "98" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuScout" "PaintBackgroundType" "0" } "ClassBarLabel1A" { "ControlName" "Label" "fieldName" "ClassBarLabel1A" "font" "ScoreboardSmall" "labelText" "%classbarlabel1A%" "textAlignment" "west" "xpos" "c-282" "ypos" "98" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel1B" { "ControlName" "Label" "fieldName" "ClassBarLabel1B" "font" "ScoreboardSmall" "labelText" "%classbarlabel1B%" "textAlignment" "west" "xpos" "c-127" "ypos" "98" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel1" { "ControlName" "Label" "fieldName" "ClassLabel1" "font" "HudFontSmallest" "labelText" "%class1%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG1B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG2A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG2A" "xpos" "c-285" "ypos" "114" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG2B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG2B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG2A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar2A" { "ControlName" "ImagePanel" "fieldName" "ClassBar2A" "xpos" "c-282" "ypos" "116" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSoldier" "PaintBackgroundType" "0" } "ClassBar2B" { "ControlName" "ImagePanel" "fieldName" "ClassBar2B" "xpos" "c-127" "ypos" "116" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSoldier" "PaintBackgroundType" "0" } "ClassBarLabel2A" { "ControlName" "Label" "fieldName" "ClassBarLabel2A" "font" "ScoreboardSmall" "labelText" "%classbarlabel2A%" "textAlignment" "west" "xpos" "c-282" "ypos" "116" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel2B" { "ControlName" "Label" "fieldName" "ClassBarLabel2B" "font" "ScoreboardSmall" "labelText" "%classbarlabel2B%" "textAlignment" "west" "xpos" "c-127" "ypos" "116" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel2" { "ControlName" "Label" "fieldName" "ClassLabel2" "font" "HudFontSmallest" "labelText" "%class2%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG2B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG3A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG3A" "xpos" "c-285" "ypos" "132" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG3B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG3B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG3A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar3A" { "ControlName" "ImagePanel" "fieldName" "ClassBar3A" "xpos" "c-282" "ypos" "134" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuPyro" "PaintBackgroundType" "0" } "ClassBar3B" { "ControlName" "ImagePanel" "fieldName" "ClassBar3B" "xpos" "c-127" "ypos" "134" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuPyro" "PaintBackgroundType" "0" } "ClassBarLabel3A" { "ControlName" "Label" "fieldName" "ClassBarLabel3A" "font" "ScoreboardSmall" "labelText" "%classbarlabel3A%" "textAlignment" "west" "xpos" "c-282" "ypos" "134" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel3B" { "ControlName" "Label" "fieldName" "ClassBarLabel3B" "font" "ScoreboardSmall" "labelText" "%classbarlabel3B%" "textAlignment" "west" "xpos" "c-127" "ypos" "134" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel3" { "ControlName" "Label" "fieldName" "ClassLabel3" "font" "HudFontSmallest" "labelText" "%class3%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG3B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG4A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG4A" "xpos" "c-285" "ypos" "150" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG4B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG4B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG4A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar4A" { "ControlName" "ImagePanel" "fieldName" "ClassBar4A" "xpos" "c-282" "ypos" "152" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuDemoman" "PaintBackgroundType" "0" } "ClassBar4B" { "ControlName" "ImagePanel" "fieldName" "ClassBar4B" "xpos" "c-127" "ypos" "152" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuDemoman" "PaintBackgroundType" "0" } "ClassBarLabel4A" { "ControlName" "Label" "fieldName" "ClassBarLabel4A" "font" "ScoreboardSmall" "labelText" "%classbarlabel4A%" "textAlignment" "west" "xpos" "c-282" "ypos" "152" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel4B" { "ControlName" "Label" "fieldName" "ClassBarLabel4B" "font" "ScoreboardSmall" "labelText" "%classbarlabel4B%" "textAlignment" "west" "xpos" "c-127" "ypos" "152" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel4" { "ControlName" "Label" "fieldName" "ClassLabel4" "font" "HudFontSmallest" "labelText" "%class4%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG4B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG5A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG5A" "xpos" "c-285" "ypos" "168" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG5B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG5B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG5A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar5A" { "ControlName" "ImagePanel" "fieldName" "ClassBar5A" "xpos" "c-282" "ypos" "170" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuHeavy" "PaintBackgroundType" "0" } "ClassBar5B" { "ControlName" "ImagePanel" "fieldName" "ClassBar5B" "xpos" "c-127" "ypos" "170" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuHeavy" "PaintBackgroundType" "0" } "ClassBarLabel5A" { "ControlName" "Label" "fieldName" "ClassBarLabel5A" "font" "ScoreboardSmall" "labelText" "%classbarlabel5A%" "textAlignment" "west" "xpos" "c-282" "ypos" "170" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel5B" { "ControlName" "Label" "fieldName" "ClassBarLabel5B" "font" "ScoreboardSmall" "labelText" "%classbarlabel5B%" "textAlignment" "west" "xpos" "c-127" "ypos" "170" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel5" { "ControlName" "Label" "fieldName" "ClassLabel5" "font" "HudFontSmallest" "labelText" "%class5%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG5B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG6A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG6A" "xpos" "c-285" "ypos" "186" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG6B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG6B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG6A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar6A" { "ControlName" "ImagePanel" "fieldName" "ClassBar6A" "xpos" "c-282" "ypos" "188" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuEngineer" "PaintBackgroundType" "0" } "ClassBar6B" { "ControlName" "ImagePanel" "fieldName" "ClassBar6B" "xpos" "c-127" "ypos" "188" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuEngineer" "PaintBackgroundType" "0" } "ClassBarLabel6A" { "ControlName" "Label" "fieldName" "ClassBarLabel6A" "font" "ScoreboardSmall" "labelText" "%classbarlabel6A%" "textAlignment" "west" "xpos" "c-282" "ypos" "188" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel6B" { "ControlName" "Label" "fieldName" "ClassBarLabel6B" "font" "ScoreboardSmall" "labelText" "%classbarlabel6B%" "textAlignment" "west" "xpos" "c-127" "ypos" "188" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel6" { "ControlName" "Label" "fieldName" "ClassLabel6" "font" "HudFontSmallest" "labelText" "%class6%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG6B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG7A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG7A" "xpos" "c-285" "ypos" "204" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG7B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG7B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG7A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar7A" { "ControlName" "ImagePanel" "fieldName" "ClassBar7A" "xpos" "c-282" "ypos" "206" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuMedic" "PaintBackgroundType" "0" } "ClassBar7B" { "ControlName" "ImagePanel" "fieldName" "ClassBar7B" "xpos" "c-127" "ypos" "206" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuMedic" "PaintBackgroundType" "0" } "ClassBarLabel7A" { "ControlName" "Label" "fieldName" "ClassBarLabel7A" "font" "ScoreboardSmall" "labelText" "%classbarlabel7A%" "textAlignment" "west" "xpos" "c-282" "ypos" "206" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel7B" { "ControlName" "Label" "fieldName" "ClassBarLabel7B" "font" "ScoreboardSmall" "labelText" "%classbarlabel7B%" "textAlignment" "west" "xpos" "c-127" "ypos" "206" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel7" { "ControlName" "Label" "fieldName" "ClassLabel7" "font" "HudFontSmallest" "labelText" "%class7%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG7B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG8A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG8A" "xpos" "c-285" "ypos" "222" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG8B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG8B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG8A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar8A" { "ControlName" "ImagePanel" "fieldName" "ClassBar8A" "xpos" "c-282" "ypos" "224" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSniper" "PaintBackgroundType" "0" } "ClassBar8B" { "ControlName" "ImagePanel" "fieldName" "ClassBar8B" "xpos" "c-127" "ypos" "224" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSniper" "PaintBackgroundType" "0" } "ClassBarLabel8A" { "ControlName" "Label" "fieldName" "ClassBarLabel8A" "font" "ScoreboardSmall" "labelText" "%classbarlabel8A%" "textAlignment" "west" "xpos" "c-282" "ypos" "224" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel8B" { "ControlName" "Label" "fieldName" "ClassBarLabel8B" "font" "ScoreboardSmall" "labelText" "%classbarlabel8B%" "textAlignment" "west" "xpos" "c-127" "ypos" "224" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel8" { "ControlName" "Label" "fieldName" "ClassLabel8" "font" "HudFontSmallest" "labelText" "%class8%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG8B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG9A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG9A" "xpos" "c-285" "ypos" "240" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG9B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG9B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG9A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar9A" { "ControlName" "ImagePanel" "fieldName" "ClassBar9A" "xpos" "c-282" "ypos" "242" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSpy" "PaintBackgroundType" "0" } "ClassBar9B" { "ControlName" "ImagePanel" "fieldName" "ClassBar9B" "xpos" "c-127" "ypos" "242" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSpy" "PaintBackgroundType" "0" } "ClassBarLabel9A" { "ControlName" "Label" "fieldName" "ClassBarLabel9A" "font" "ScoreboardSmall" "labelText" "%classbarlabel9A%" "textAlignment" "west" "xpos" "c-282" "ypos" "242" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel9B" { "ControlName" "Label" "fieldName" "ClassBarLabel9B" "font" "ScoreboardSmall" "labelText" "%classbarlabel9B%" "textAlignment" "west" "xpos" "c-127" "ypos" "242" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel9" { "ControlName" "Label" "fieldName" "ClassLabel9" "font" "HudFontSmallest" "labelText" "%class9%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG9B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "RecordsBG" { "ControlName" "EditablePanel" "fieldName" "RecordsBG" "xpos" "5" "ypos" "0" "wide" "185" "tall" "230" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "bgcolor_override" "TransparentLightBlack" "PaintBackgroundType" "2" "pin_to_sibling" "AveragesBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "RecordsLabel1" { "ControlName" "Label" "fieldName" "RecordsLabel1" "font" "FontBold16" "labelText" "#StatSummary_Label_BestMoments" "textAlignment" "center" "xpos" "0" "ypos" "0" "wide" "185" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" "pin_to_sibling" "RecordsBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "RecordsSubBG1" { "ControlName" "ImagePanel" "fieldName" "RecordsSubBG1" "xpos" "c+124" "ypos" "96" "zpos" "2" "wide" "170" "tall" "167" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "RecordsLabel" { "ControlName" "Label" "fieldName" "RecordsLabel" "font" "ScoreboardMedium" "labelText" "#StatSummary_Records" "textAlignment" "west" "xpos" "c-265" "ypos" "222" "zpos" "5" "wide" "220" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" } "OverallRecord1Label" { "ControlName" "Label" "fieldName" "OverallRecord1Label" "font" "ScoreboardSmall" "labelText" "%classrecord1label%" "textAlignment" "west" "xpos" "-4" "ypos" "-2" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "RecordsSubBG1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "OverallRecord1Value" { "ControlName" "Label" "fieldName" "OverallRecord1Value" "font" "ScoreboardSmall" "labelText" "%classrecord1value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord1Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord2Label" { "ControlName" "Label" "fieldName" "OverallRecord2Label" "font" "ScoreboardSmall" "labelText" "%classrecord2label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord1Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord2Value" { "ControlName" "Label" "fieldName" "OverallRecord2Value" "font" "ScoreboardSmall" "labelText" "%classrecord2value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord2Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord3Label" { "ControlName" "Label" "fieldName" "OverallRecord3Label" "font" "ScoreboardSmall" "labelText" "%classrecord3label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord2Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord3Value" { "ControlName" "Label" "fieldName" "OverallRecord3Value" "font" "ScoreboardSmall" "labelText" "%classrecord3value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord3Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord4Label" { "ControlName" "Label" "fieldName" "OverallRecord4Label" "font" "ScoreboardSmall" "labelText" "%classrecord4label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord3Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord4Value" { "ControlName" "Label" "fieldName" "OverallRecord4Value" "font" "ScoreboardSmall" "labelText" "%classrecord4value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord4Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord5Label" { "ControlName" "Label" "fieldName" "OverallRecord5Label" "font" "ScoreboardSmall" "labelText" "%classrecord5label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord4Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord5Value" { "ControlName" "Label" "fieldName" "OverallRecord5Value" "font" "ScoreboardSmall" "labelText" "%classrecord5value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord5Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord6Label" { "ControlName" "Label" "fieldName" "OverallRecord6Label" "font" "ScoreboardSmall" "labelText" "%classrecord6label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord5Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord6Value" { "ControlName" "Label" "fieldName" "OverallRecord6Value" "font" "ScoreboardSmall" "labelText" "%classrecord6value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord6Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord7Label" { "ControlName" "Label" "fieldName" "OverallRecord7Label" "font" "ScoreboardSmall" "labelText" "%classrecord7label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord6Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord7Value" { "ControlName" "Label" "fieldName" "OverallRecord7Value" "font" "ScoreboardSmall" "labelText" "%classrecord7value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord7Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord8Label" { "ControlName" "Label" "fieldName" "OverallRecord8Label" "font" "ScoreboardSmall" "labelText" "%classrecord8label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord7Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord8Value" { "ControlName" "Label" "fieldName" "OverallRecord8Value" "font" "ScoreboardSmall" "labelText" "%classrecord8value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord8Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord9Label" { "ControlName" "Label" "fieldName" "OverallRecord9Label" "font" "ScoreboardSmall" "labelText" "%classrecord9label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord8Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord9Value" { "ControlName" "Label" "fieldName" "OverallRecord9Value" "font" "ScoreboardSmall" "labelText" "%classrecord9value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord9Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord10Label" { "ControlName" "Label" "fieldName" "OverallRecord10Label" "font" "ScoreboardSmall" "labelText" "%classrecord10label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord9Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord10Value" { "ControlName" "Label" "fieldName" "OverallRecord10Value" "font" "ScoreboardSmall" "labelText" "%classrecord10value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord10Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord11Label" { "ControlName" "Label" "fieldName" "OverallRecord11Label" "font" "ScoreboardSmall" "labelText" "%classrecord11label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord10Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord11Value" { "ControlName" "Label" "fieldName" "OverallRecord11Value" "font" "ScoreboardSmall" "labelText" "%classrecord11value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord11Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord12Label" { "ControlName" "Label" "fieldName" "OverallRecord12Label" "font" "ScoreboardSmall" "labelText" "%classrecord12label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord11Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord12Value" { "ControlName" "Label" "fieldName" "OverallRecord12Value" "font" "ScoreboardSmall" "labelText" "%classrecord12value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord12Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord13Label" { "ControlName" "Label" "fieldName" "OverallRecord13Label" "font" "ScoreboardSmall" "labelText" "%classrecord13label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord12Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord13Value" { "ControlName" "Label" "fieldName" "OverallRecord13Value" "font" "ScoreboardSmall" "labelText" "%classrecord13value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord13Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord14Label" { "ControlName" "Label" "fieldName" "OverallRecord14Label" "font" "ScoreboardSmall" "labelText" "%classrecord14label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord13Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord14Value" { "ControlName" "Label" "fieldName" "OverallRecord14Value" "font" "ScoreboardSmall" "labelText" "%classrecord14value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord14Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord15Label" { "ControlName" "Label" "fieldName" "OverallRecord15Label" "font" "ScoreboardSmall" "labelText" "%classrecord15label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord14Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord15Value" { "ControlName" "Label" "fieldName" "OverallRecord15Value" "font" "ScoreboardSmall" "labelText" "%classrecord15value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord15Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } "TipImage" { "ControlName" "CTFImagePanel" "fieldName" "TipImage" "xpos" "c-285" "ypos" "9999" "zpos" "12" "wide" "28" "tall" "28" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" } "TipText" { "ControlName" "Label" "fieldName" "TipText" "font" "ScoreboardSmall" "labelText" "%tiptext%" "textAlignment" "west" "xpos" "c-245" "ypos" "9999" "zpos" "12" "wide" "300" "tall" "48" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "NextTipButton" { "ControlName" "Button" "fieldName" "NextTipButton" "xpos" "9999" } "ResetStatsButton" { "ControlName" "Button" "fieldName" "ResetStatsButton" "xpos" "9999" } "CloseButton" { "ControlName" "Button" "fieldName" "CloseButton" "xpos" "9999" } } ================================================ FILE: resource/ui/statsummary_embedded.res ================================================ #base "../support.res" "resource/ui/statsummary_embedded.res" { "TFStatsSummary" { "ControlName" "EditablePanel" "fieldName" "TFStatsSummary" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "visible" "0" "enabled" "1" "bgcolor_override" "DarkGrey" } "MainBackground" { "ControlName" "ImagePanel" "fieldName" "MainBackground" "xpos" "9999" } "OnYourWayLabel" { "ControlName" "CExLabel" "fieldName" "OnYourWayLabel" "xpos" "9999" } "MapLabel" { "ControlName" "CExLabel" "fieldName" "MapLabel" "xpos" "9999" } "MapType" { "ControlName" "CExLabel" "fieldName" "MapType" "xpos" "9999" } "StatData" { "ControlName" "EditablePanel" "fieldName" "StatData" "xpos" "0" "ypos" "-10" "zpos" "1" "wide" "f0" "tall" "300" "visible" "1" "enabled" "1" "NonInteractiveHeaders" { "ControlName" "EditablePanel" "fieldName" "NonInteractiveHeaders" "xpos" "0" "ypos" "78" "zpos" "2" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "BarChartLabelA" { "ControlName" "Label" "fieldName" "BarChartLabelA" "font" "ScoreboardSmall" "labelText" "#StatSummary_StatTitle_MostPoints" "textAlignment" "east" "xpos" "c-282" "ypos" "0" "zpos" "5" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "BarChartLabelB" { "ControlName" "Label" "fieldName" "BarChartLabelB" "font" "ScoreboardSmall" "labelText" "#StatSummary_StatTitle_TotalPlaytime" "textAlignment" "west" "xpos" "c-127" "ypos" "0" "zpos" "5" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "OverallRecordLabel" { "ControlName" "Label" "fieldName" "OverallRecordLabel" "font" "ScoreboardSmall" "labelText" "#StatSummary_Label_AsAnyClass" "textAlignment" "west" "xpos" "c+124" "ypos" "0" "zpos" "5" "wide" "200" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } } "InteractiveHeaders" { "ControlName" "EditablePanel" "fieldName" "InteractiveHeaders" "xpos" "0" "ypos" "78" "zpos" "2" "wide" "f0" "tall" "14" "visible" "1" "enabled" "1" "BarChartComboA" { "ControlName" "ComboBox" "fieldName" "BarChartComboA" "xpos" "c-285" "ypos" "0" "zpos" "10" "wide" "154" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "bgcolor_override" "DarkGrey" } "BarChartComboB" { "ControlName" "ComboBox" "fieldName" "BarChartComboB" "xpos" "c-127" "ypos" "0" "zpos" "10" "wide" "154" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "bgcolor_override" "DarkGrey" } "ClassCombo" { "ControlName" "ComboBox" "fieldName" "ClassCombo" "xpos" "c+124" "ypos" "0" "zpos" "10" "wide" "100" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "bgcolor_override" "DarkGrey" } } "AveragesBG" { "ControlName" "EditablePanel" "fieldName" "AveragesBG" "xpos" "c-295" "ypos" "35" "wide" "406" "tall" "230" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "bgcolor_override" "TransparentLightBlack" "PaintBackgroundType" "2" } "AveragesLabel" { "ControlName" "Label" "fieldName" "AveragesLabel" "font" "FontBold20" "labelText" "#StatSummary_Label_PerformanceReport" "textAlignment" "center" "xpos" "c-295" "ypos" "35" "wide" "406" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" } "ClassBarBG1A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG1A" "xpos" "c-285" "ypos" "96" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG1B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG1B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG1A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar1A" { "ControlName" "ImagePanel" "fieldName" "ClassBar1A" "xpos" "c-282" "ypos" "98" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuScout" "PaintBackgroundType" "0" } "ClassBar1B" { "ControlName" "ImagePanel" "fieldName" "ClassBar1B" "xpos" "c-127" "ypos" "98" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuScout" "PaintBackgroundType" "0" } "ClassBarLabel1A" { "ControlName" "Label" "fieldName" "ClassBarLabel1A" "font" "ScoreboardSmall" "labelText" "%classbarlabel1A%" "textAlignment" "west" "xpos" "c-282" "ypos" "98" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel1B" { "ControlName" "Label" "fieldName" "ClassBarLabel1B" "font" "ScoreboardSmall" "labelText" "%classbarlabel1B%" "textAlignment" "west" "xpos" "c-127" "ypos" "98" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel1" { "ControlName" "Label" "fieldName" "ClassLabel1" "font" "HudFontSmallest" "labelText" "%class1%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG1B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG2A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG2A" "xpos" "c-285" "ypos" "114" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG2B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG2B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG2A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar2A" { "ControlName" "ImagePanel" "fieldName" "ClassBar2A" "xpos" "c-282" "ypos" "116" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSoldier" "PaintBackgroundType" "0" } "ClassBar2B" { "ControlName" "ImagePanel" "fieldName" "ClassBar2B" "xpos" "c-127" "ypos" "116" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSoldier" "PaintBackgroundType" "0" } "ClassBarLabel2A" { "ControlName" "Label" "fieldName" "ClassBarLabel2A" "font" "ScoreboardSmall" "labelText" "%classbarlabel2A%" "textAlignment" "west" "xpos" "c-282" "ypos" "116" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel2B" { "ControlName" "Label" "fieldName" "ClassBarLabel2B" "font" "ScoreboardSmall" "labelText" "%classbarlabel2B%" "textAlignment" "west" "xpos" "c-127" "ypos" "116" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel2" { "ControlName" "Label" "fieldName" "ClassLabel2" "font" "HudFontSmallest" "labelText" "%class2%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG2B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG3A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG3A" "xpos" "c-285" "ypos" "132" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG3B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG3B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG3A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar3A" { "ControlName" "ImagePanel" "fieldName" "ClassBar3A" "xpos" "c-282" "ypos" "134" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuPyro" "PaintBackgroundType" "0" } "ClassBar3B" { "ControlName" "ImagePanel" "fieldName" "ClassBar3B" "xpos" "c-127" "ypos" "134" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuPyro" "PaintBackgroundType" "0" } "ClassBarLabel3A" { "ControlName" "Label" "fieldName" "ClassBarLabel3A" "font" "ScoreboardSmall" "labelText" "%classbarlabel3A%" "textAlignment" "west" "xpos" "c-282" "ypos" "134" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel3B" { "ControlName" "Label" "fieldName" "ClassBarLabel3B" "font" "ScoreboardSmall" "labelText" "%classbarlabel3B%" "textAlignment" "west" "xpos" "c-127" "ypos" "134" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel3" { "ControlName" "Label" "fieldName" "ClassLabel3" "font" "HudFontSmallest" "labelText" "%class3%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG3B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG4A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG4A" "xpos" "c-285" "ypos" "150" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG4B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG4B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG4A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar4A" { "ControlName" "ImagePanel" "fieldName" "ClassBar4A" "xpos" "c-282" "ypos" "152" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuDemoman" "PaintBackgroundType" "0" } "ClassBar4B" { "ControlName" "ImagePanel" "fieldName" "ClassBar4B" "xpos" "c-127" "ypos" "152" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuDemoman" "PaintBackgroundType" "0" } "ClassBarLabel4A" { "ControlName" "Label" "fieldName" "ClassBarLabel4A" "font" "ScoreboardSmall" "labelText" "%classbarlabel4A%" "textAlignment" "west" "xpos" "c-282" "ypos" "152" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel4B" { "ControlName" "Label" "fieldName" "ClassBarLabel4B" "font" "ScoreboardSmall" "labelText" "%classbarlabel4B%" "textAlignment" "west" "xpos" "c-127" "ypos" "152" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel4" { "ControlName" "Label" "fieldName" "ClassLabel4" "font" "HudFontSmallest" "labelText" "%class4%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG4B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG5A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG5A" "xpos" "c-285" "ypos" "168" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG5B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG5B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG5A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar5A" { "ControlName" "ImagePanel" "fieldName" "ClassBar5A" "xpos" "c-282" "ypos" "170" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuHeavy" "PaintBackgroundType" "0" } "ClassBar5B" { "ControlName" "ImagePanel" "fieldName" "ClassBar5B" "xpos" "c-127" "ypos" "170" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuHeavy" "PaintBackgroundType" "0" } "ClassBarLabel5A" { "ControlName" "Label" "fieldName" "ClassBarLabel5A" "font" "ScoreboardSmall" "labelText" "%classbarlabel5A%" "textAlignment" "west" "xpos" "c-282" "ypos" "170" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel5B" { "ControlName" "Label" "fieldName" "ClassBarLabel5B" "font" "ScoreboardSmall" "labelText" "%classbarlabel5B%" "textAlignment" "west" "xpos" "c-127" "ypos" "170" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel5" { "ControlName" "Label" "fieldName" "ClassLabel5" "font" "HudFontSmallest" "labelText" "%class5%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG5B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG6A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG6A" "xpos" "c-285" "ypos" "186" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG6B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG6B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG6A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar6A" { "ControlName" "ImagePanel" "fieldName" "ClassBar6A" "xpos" "c-282" "ypos" "188" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuEngineer" "PaintBackgroundType" "0" } "ClassBar6B" { "ControlName" "ImagePanel" "fieldName" "ClassBar6B" "xpos" "c-127" "ypos" "188" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuEngineer" "PaintBackgroundType" "0" } "ClassBarLabel6A" { "ControlName" "Label" "fieldName" "ClassBarLabel6A" "font" "ScoreboardSmall" "labelText" "%classbarlabel6A%" "textAlignment" "west" "xpos" "c-282" "ypos" "188" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel6B" { "ControlName" "Label" "fieldName" "ClassBarLabel6B" "font" "ScoreboardSmall" "labelText" "%classbarlabel6B%" "textAlignment" "west" "xpos" "c-127" "ypos" "188" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel6" { "ControlName" "Label" "fieldName" "ClassLabel6" "font" "HudFontSmallest" "labelText" "%class6%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG6B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG7A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG7A" "xpos" "c-285" "ypos" "204" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG7B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG7B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG7A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar7A" { "ControlName" "ImagePanel" "fieldName" "ClassBar7A" "xpos" "c-282" "ypos" "206" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuMedic" "PaintBackgroundType" "0" } "ClassBar7B" { "ControlName" "ImagePanel" "fieldName" "ClassBar7B" "xpos" "c-127" "ypos" "206" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuMedic" "PaintBackgroundType" "0" } "ClassBarLabel7A" { "ControlName" "Label" "fieldName" "ClassBarLabel7A" "font" "ScoreboardSmall" "labelText" "%classbarlabel7A%" "textAlignment" "west" "xpos" "c-282" "ypos" "206" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel7B" { "ControlName" "Label" "fieldName" "ClassBarLabel7B" "font" "ScoreboardSmall" "labelText" "%classbarlabel7B%" "textAlignment" "west" "xpos" "c-127" "ypos" "206" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel7" { "ControlName" "Label" "fieldName" "ClassLabel7" "font" "HudFontSmallest" "labelText" "%class7%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG7B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG8A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG8A" "xpos" "c-285" "ypos" "222" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG8B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG8B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG8A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar8A" { "ControlName" "ImagePanel" "fieldName" "ClassBar8A" "xpos" "c-282" "ypos" "224" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSniper" "PaintBackgroundType" "0" } "ClassBar8B" { "ControlName" "ImagePanel" "fieldName" "ClassBar8B" "xpos" "c-127" "ypos" "224" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSniper" "PaintBackgroundType" "0" } "ClassBarLabel8A" { "ControlName" "Label" "fieldName" "ClassBarLabel8A" "font" "ScoreboardSmall" "labelText" "%classbarlabel8A%" "textAlignment" "west" "xpos" "c-282" "ypos" "224" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel8B" { "ControlName" "Label" "fieldName" "ClassBarLabel8B" "font" "ScoreboardSmall" "labelText" "%classbarlabel8B%" "textAlignment" "west" "xpos" "c-127" "ypos" "224" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel8" { "ControlName" "Label" "fieldName" "ClassLabel8" "font" "HudFontSmallest" "labelText" "%class8%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG8B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "ClassBarBG9A" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG9A" "xpos" "c-285" "ypos" "240" "zpos" "2" "wide" "312" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "ClassBarBG9B" { "ControlName" "ImagePanel" "fieldName" "ClassBarBG9B" "xpos" "5" "ypos" "0" "zpos" "2" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" "pin_to_sibling" "ClassBarBG9A" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ClassBar9A" { "ControlName" "ImagePanel" "fieldName" "ClassBar9A" "xpos" "c-282" "ypos" "242" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSpy" "PaintBackgroundType" "0" } "ClassBar9B" { "ControlName" "ImagePanel" "fieldName" "ClassBar9B" "xpos" "c-127" "ypos" "242" "zpos" "3" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "MenuSpy" "PaintBackgroundType" "0" } "ClassBarLabel9A" { "ControlName" "Label" "fieldName" "ClassBarLabel9A" "font" "ScoreboardSmall" "labelText" "%classbarlabel9A%" "textAlignment" "west" "xpos" "c-282" "ypos" "242" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassBarLabel9B" { "ControlName" "Label" "fieldName" "ClassBarLabel9B" "font" "ScoreboardSmall" "labelText" "%classbarlabel9B%" "textAlignment" "west" "xpos" "c-127" "ypos" "242" "zpos" "6" "wide" "150" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassLabel9" { "ControlName" "Label" "fieldName" "ClassLabel9" "font" "HudFontSmallest" "labelText" "%class9%" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "5" "wide" "70" "tall" "16" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "ClassBarBG9B" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "RecordsBG" { "ControlName" "EditablePanel" "fieldName" "RecordsBG" "xpos" "5" "ypos" "0" "wide" "185" "tall" "230" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "bgcolor_override" "TransparentLightBlack" "PaintBackgroundType" "2" "pin_to_sibling" "AveragesBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "RecordsLabel1" { "ControlName" "Label" "fieldName" "RecordsLabel1" "font" "FontBold16" "labelText" "#StatSummary_Label_BestMoments" "textAlignment" "center" "xpos" "0" "ypos" "0" "wide" "185" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" "pin_to_sibling" "RecordsBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "RecordsSubBG1" { "ControlName" "ImagePanel" "fieldName" "RecordsSubBG1" "xpos" "c+124" "ypos" "96" "zpos" "2" "wide" "170" "tall" "167" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fillcolor" "DarkGrey" "PaintBackgroundType" "0" } "RecordsLabel" { "ControlName" "Label" "fieldName" "RecordsLabel" "font" "ScoreboardMedium" "labelText" "#StatSummary_Records" "textAlignment" "west" "xpos" "c-265" "ypos" "222" "zpos" "5" "wide" "220" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" } "OverallRecord1Label" { "ControlName" "Label" "fieldName" "OverallRecord1Label" "font" "ScoreboardSmall" "labelText" "%classrecord1label%" "textAlignment" "west" "xpos" "-4" "ypos" "-2" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "RecordsSubBG1" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "OverallRecord1Value" { "ControlName" "Label" "fieldName" "OverallRecord1Value" "font" "ScoreboardSmall" "labelText" "%classrecord1value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord1Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord2Label" { "ControlName" "Label" "fieldName" "OverallRecord2Label" "font" "ScoreboardSmall" "labelText" "%classrecord2label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord1Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord2Value" { "ControlName" "Label" "fieldName" "OverallRecord2Value" "font" "ScoreboardSmall" "labelText" "%classrecord2value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord2Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord3Label" { "ControlName" "Label" "fieldName" "OverallRecord3Label" "font" "ScoreboardSmall" "labelText" "%classrecord3label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord2Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord3Value" { "ControlName" "Label" "fieldName" "OverallRecord3Value" "font" "ScoreboardSmall" "labelText" "%classrecord3value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord3Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord4Label" { "ControlName" "Label" "fieldName" "OverallRecord4Label" "font" "ScoreboardSmall" "labelText" "%classrecord4label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord3Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord4Value" { "ControlName" "Label" "fieldName" "OverallRecord4Value" "font" "ScoreboardSmall" "labelText" "%classrecord4value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord4Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord5Label" { "ControlName" "Label" "fieldName" "OverallRecord5Label" "font" "ScoreboardSmall" "labelText" "%classrecord5label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord4Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord5Value" { "ControlName" "Label" "fieldName" "OverallRecord5Value" "font" "ScoreboardSmall" "labelText" "%classrecord5value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord5Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord6Label" { "ControlName" "Label" "fieldName" "OverallRecord6Label" "font" "ScoreboardSmall" "labelText" "%classrecord6label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord5Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord6Value" { "ControlName" "Label" "fieldName" "OverallRecord6Value" "font" "ScoreboardSmall" "labelText" "%classrecord6value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord6Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord7Label" { "ControlName" "Label" "fieldName" "OverallRecord7Label" "font" "ScoreboardSmall" "labelText" "%classrecord7label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord6Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord7Value" { "ControlName" "Label" "fieldName" "OverallRecord7Value" "font" "ScoreboardSmall" "labelText" "%classrecord7value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord7Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord8Label" { "ControlName" "Label" "fieldName" "OverallRecord8Label" "font" "ScoreboardSmall" "labelText" "%classrecord8label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord7Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord8Value" { "ControlName" "Label" "fieldName" "OverallRecord8Value" "font" "ScoreboardSmall" "labelText" "%classrecord8value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord8Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord9Label" { "ControlName" "Label" "fieldName" "OverallRecord9Label" "font" "ScoreboardSmall" "labelText" "%classrecord9label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord8Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord9Value" { "ControlName" "Label" "fieldName" "OverallRecord9Value" "font" "ScoreboardSmall" "labelText" "%classrecord9value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord9Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord10Label" { "ControlName" "Label" "fieldName" "OverallRecord10Label" "font" "ScoreboardSmall" "labelText" "%classrecord10label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord9Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord10Value" { "ControlName" "Label" "fieldName" "OverallRecord10Value" "font" "ScoreboardSmall" "labelText" "%classrecord10value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord10Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord11Label" { "ControlName" "Label" "fieldName" "OverallRecord11Label" "font" "ScoreboardSmall" "labelText" "%classrecord11label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord10Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord11Value" { "ControlName" "Label" "fieldName" "OverallRecord11Value" "font" "ScoreboardSmall" "labelText" "%classrecord11value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord11Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord12Label" { "ControlName" "Label" "fieldName" "OverallRecord12Label" "font" "ScoreboardSmall" "labelText" "%classrecord12label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord11Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord12Value" { "ControlName" "Label" "fieldName" "OverallRecord12Value" "font" "ScoreboardSmall" "labelText" "%classrecord12value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord12Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord13Label" { "ControlName" "Label" "fieldName" "OverallRecord13Label" "font" "ScoreboardSmall" "labelText" "%classrecord13label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord12Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord13Value" { "ControlName" "Label" "fieldName" "OverallRecord13Value" "font" "ScoreboardSmall" "labelText" "%classrecord13value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord13Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord14Label" { "ControlName" "Label" "fieldName" "OverallRecord14Label" "font" "ScoreboardSmall" "labelText" "%classrecord14label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord13Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord14Value" { "ControlName" "Label" "fieldName" "OverallRecord14Value" "font" "ScoreboardSmall" "labelText" "%classrecord14value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord14Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "OverallRecord15Label" { "ControlName" "Label" "fieldName" "OverallRecord15Label" "font" "ScoreboardSmall" "labelText" "%classrecord15label%" "textAlignment" "west" "xpos" "0" "ypos" "1" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord14Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OverallRecord15Value" { "ControlName" "Label" "fieldName" "OverallRecord15Value" "font" "ScoreboardSmall" "labelText" "%classrecord15value%" "textAlignment" "west" "xpos" "1" "ypos" "0" "zpos" "5" "wide" "83" "tall" "10" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "OverallRecord15Label" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } } "ResetStatsButton" { "ControlName" "Button" "fieldName" "ResetStatsButton" "xpos" "c+228" "ypos" "65" "zpos" "6" "wide" "65" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_ResetStats" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "resetstatsbutton" "font" "StorePromotionsTitle" "defaultBgColor_override" "DarkGrey" "armedBgColor_override" "HUDRedTeamSolid" "armedFgColor_override" "HudWhite" } "TipImage" { "ControlName" "CTFImagePanel" "fieldName" "TipImage" "xpos" "c-285" "ypos" "9999" "zpos" "12" "wide" "28" "tall" "28" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" } "TipText" { "ControlName" "Label" "fieldName" "TipText" "font" "ScoreboardSmall" "labelText" "%tiptext%" "textAlignment" "west" "xpos" "c-245" "ypos" "9999" "zpos" "12" "wide" "300" "tall" "48" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "NextTipButton" { "ControlName" "Button" "fieldName" "NextTipButton" "xpos" "c57" "ypos" "9999" "zpos" "6" "wide" "90" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_NextTip" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nexttip" "font" "HudFontSmallest" "defaultBgColor_override" "DarkGrey" } "CloseButton" { "ControlName" "Button" "fieldName" "CloseButton" "xpos" "9999" } } ================================================ FILE: resource/ui/steamfriendpanel.res ================================================ "resource/ui/steamfriendpanel.res" { "avatar" { "fieldName" "avatar" "xpos" "0" "ypos" "0" "wide" "25" "tall" "25" "proportionaltoparent" "1" "mouseinputenabled" "0" "scaleImage" "1" } "InteractButton" { "fieldName" "InteractButton" "xpos" "0" "ypos" "0" "zpos" "-1" "wide" "f0" "tall" "f0" "proportionaltoparent" "1" "command" "open_menu" "labeltext" "" "textalignment" "center" "stay_armed_on_click" "1" "roundedcorners" "0" "paintbackground" "1" "defaultBgColor_override" "0 0 0 0" "armedBgColor_override" "255 255 255 10" "border_default" "NoBorder" "border_armed" "NoBorder" } "NameLabel" { "ControlName" "Label" "fieldName" "NameLabel" "xpos" "28" "ypos" "2" "zpos" "100" "wide" "97" "tall" "12" "textAlignment" "west" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "wrap" "0" "labelText" "%name%" "proportionaltoparent" "1" "font" "FontRegular10" "mouseinputenabled" "0" } "StatusLabel" { "fieldName" "StatusLabel" "xpos" "28" "ypos" "12" "zpos" "100" "wide" "97" "tall" "12" "textAlignment" "west" "visible" "1" "enabled" "1" "proportionaltoparent" "1" "wrap" "0" "labelText" "%status%" "proportionaltoparent" "1" "font" "FontRegular8" "fgcolor_override" "TanLight" "mouseinputenabled" "0" } } ================================================ FILE: resource/ui/steamworkshopdialog.res ================================================ "resource/steamworkshopdialog.res" { "SteamWorkshopDialog" { "ControlName" "CSteamWorkshopDialog" "fieldName" "SteamWorkshopDialog" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "HudBlack" } "Container" { "ControlName" "EditablePanel" "fieldName" "Container" "xpos" "c-300" "ypos" "c-200" "wide" "600" "tall" "400" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "PaintBackgroundType" "0" "paintbackground" "1" "border" "SteamWorkshopBorder" "Background" { "ControlName" "EditablePanel" "fieldName" "Background" "xpos" "0" "ypos" "0" "wide" "600" "tall" "400" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "0 0 0 255" } "WorkshopBranding" { "ControlName" "ImagePanel" "fieldName" "WorkshopBranding" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "600" "tall" "300" "visible" "1" "enabled" "1" "image" "workshop_branding" "scaleImage" "1" } "BackgroundBottom" { "ControlName" "EditablePanel" "fieldName" "BackgroundBottom" "xpos" "0" "ypos" "355" "wide" "600" "tall" "45" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "0 0 0 255" } "NoItemsContainer" { "ControlName" "EditablePanel" "fieldName" "NoItemsContainer" "xpos" "25" "ypos" "60" "wide" "550" "tall" "245" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "PaintBackgroundType" "0" "paintbackground" "1" "border" "NoBorder" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "labelText" "#TF_SteamWorkshop_Title" "textAlignment" "center" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "550" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "DescLabel" { "ControlName" "CExLabel" "fieldName" "DescLabel" "font" "HudFontSmall" "labelText" "#TF_SteamWorkshop_Desc" "textAlignment" "north" "xpos" "20" "ypos" "50" "zpos" "1" "wide" "515" "tall" "200" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "TanLight" } "LearnMoreButton" { "ControlName" "CExButton" "fieldName" "LearnMoreButton" "xpos" "175" "ypos" "165" "zpos" "20" "wide" "200" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_SteamWorkshop_LearnHow" "font" "FontBold12" "textAlignment" "center" "Command" "learn_more" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "NoBorder" "border_armed" "NoBorder" } } "ItemsContainer" { "ControlName" "EditablePanel" "fieldName" "ItemsContainer" "xpos" "25" "ypos" "60" "zpos" "1" "wide" "550" "tall" "245" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "PaintBackgroundType" "0" "paintbackground" "1" "paintborder" "0" "border" "NoBorder" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontMediumBold" "labelText" "#TF_SteamWorkshop_YourItems" "textAlignment" "west" "xpos" "15" "ypos" "15" "zpos" "1" "wide" "550" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "SteamWorkshopItem0" { "ControlName" "CSteamWorkshopItemPanel" "fieldName" "SteamWorkshopItem0" "xpos" "15" "ypos" "30" "wide" "125" "tall" "200" "pinCorner" "0" "visible" "1" } "SteamWorkshopItem1" { "ControlName" "CSteamWorkshopItemPanel" "fieldName" "SteamWorkshopItem1" "xpos" "147" "ypos" "30" "wide" "125" "tall" "200" "pinCorner" "0" "visible" "1" } "SteamWorkshopItem2" { "ControlName" "CSteamWorkshopItemPanel" "fieldName" "SteamWorkshopItem2" "xpos" "279" "ypos" "30" "wide" "125" "tall" "200" "pinCorner" "0" "visible" "1" } "SteamWorkshopItem3" { "ControlName" "CSteamWorkshopItemPanel" "fieldName" "SteamWorkshopItem3" "xpos" "411" "ypos" "30" "wide" "125" "tall" "200" "pinCorner" "0" "visible" "1" } "SkipToStartButton" { "ControlName" "CExButton" "fieldName" "SkipToStartButton" "xpos" "411" "ypos" "215" "zpos" "5" "wide" "15" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "|<" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "skiptostart" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PrevPageSkipButton" { "ControlName" "CExButton" "fieldName" "PrevPageSkipButton" "xpos" "426" "ypos" "215" "zpos" "5" "wide" "15" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "<<" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "prevpageskip" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PrevPageButton" { "ControlName" "CExButton" "fieldName" "PrevPageButton" "xpos" "441" "ypos" "215" "zpos" "5" "wide" "15" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&A" "font" "SmallerIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "prevpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CurPageLabel" { "ControlName" "CExLabel" "fieldName" "CurPageLabel" "font" "FontBold14" "labelText" "%page%" "textAlignment" "center" "xpos" "456" "ypos" "215" "zpos" "5" "wide" "34" "tall" "25" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" } "NextPageButton" { "ControlName" "CExButton" "fieldName" "NextPageButton" "xpos" "490" "ypos" "215" "zpos" "5" "wide" "15" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "&D" "font" "SmallerIcons" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "NextPageSkipButton" { "ControlName" "CExButton" "fieldName" "NextPageSkipButton" "xpos" "505" "ypos" "215" "zpos" "5" "wide" "15" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" ">>" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "nextpageskip" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "SkipToEndButton" { "ControlName" "CExButton" "fieldName" "SkipToEndButton" "xpos" "520" "ypos" "215" "zpos" "5" "wide" "15" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" ">|" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "skiptoend" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ViewPublishedButton" { "ControlName" "CExButton" "fieldName" "ViewPublishedButton" "xpos" "435" "ypos" "15" "zpos" "20" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_SteamWorkshop_ViewPublished" "font" "FontBold12" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "view_files" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "NoBorder" } "EditButton" { "ControlName" "CExImageButton" "fieldName" "EditButton" "xpos" "15" "ypos" "215" "wide" "125" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "textinsetx" "25" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "labelText" "#TF_SteamWorkshop_Edit" "command" "edit" "border_default" "NoBorder" "image_drawcolor" "TanLight" "image_disabledcolor" "Black" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "5" "ypos" "5" "zpos" "1" "wide" "13" "tall" "13" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "glyph_workshop_edit" } } "ViewButton" { "ControlName" "CExImageButton" "fieldName" "ViewButton" "xpos" "147" "ypos" "215" "wide" "125" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "textinsetx" "25" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "labelText" "#TF_SteamWorkshop_View" "command" "view" "border_default" "NoBorder" "image_drawcolor" "TanLight" "image_disabledcolor" "Black" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "5" "ypos" "5" "zpos" "1" "wide" "13" "tall" "13" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "glyph_workshop_view" } } "DeleteButton" { "ControlName" "CExImageButton" "fieldName" "DeleteButton" "xpos" "279" "ypos" "215" "wide" "125" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "textinsetx" "25" "use_proportional_insets" "1" "font" "FontBold12" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "labelText" "#TF_SteamWorkshop_Delete" "command" "delete_item" "border_default" "NoBorder" "image_drawcolor" "TanLight" "image_disabledcolor" "Black" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "5" "ypos" "5" "zpos" "1" "wide" "13" "tall" "13" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "glyph_workshop_delete" } } } "BrowseButton" { "ControlName" "CExButton" "fieldName" "BrowseButton" "xpos" "375" "ypos" "25" "zpos" "20" "wide" "200" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_SteamWorkshop_BrowseTheWorkshop" "font" "FontBold12" "textAlignment" "center" "Command" "browse" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "NoBorder" } "LoadTestMapButton" { "ControlName" "CExButton" "fieldName" "LoadTestMapButton" "xpos" "40" "ypos" "310" "zpos" "20" "wide" "125" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_SteamWorkshop_Test" "font" "FontRegular11" "textAlignment" "center" "Command" "itemtest" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "NoBorder" } "PublishButton" { "ControlName" "CExButton" "fieldName" "PublishButton" "xpos" "172" "ypos" "310" "zpos" "20" "wide" "125" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_SteamWorkshop_Publish" "font" "FontRegular11" "textAlignment" "center" "Command" "publish" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "NoBorder" } "LearnMore2Button" { "ControlName" "CExButton" "fieldName" "LearnMore2Button" "xpos" "304" "ypos" "310" "zpos" "20" "wide" "125" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#TF_SteamWorkshop_Instructions" "font" "FontRegular11" "textAlignment" "center" "Command" "learn_more" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "NoBorder" } "ViewLegalAgreementButton" { "ControlName" "CExButton" "fieldName" "ViewLegalAgreementButton" "xpos" "436" "ypos" "310" "zpos" "20" "wide" "125" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_SteamWorkshop_Legal" "font" "FontRegular11" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "view_legal_agreement" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "NoBorder" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "9" "ypos" "365" "zpos" "20" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Close" "font" "FontBold12" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "border_default" "NoBorder" } } } ================================================ FILE: resource/ui/steamworkshopitem.res ================================================ "resource/steamworkshopitem.res" { "SteamWorkshopItem" { "ControlName" "CSteamWorkshopItemPanel" "fieldName" "SteamWorkshopItem" "xpos" "0" "ypos" "0" "wide" "125" "tall" "200" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "0 0 0 240" } "HighlightPanel" { "ControlName" "EditablePanel" "fieldName" "HighlightPanel" "xpos" "0" "ypos" "25" "wide" "125" "tall" "125" "visible" "1" "mouseinputenabled" "0" "bgcolor_override" "178 82 22 255" } "PreviewImage" { "ControlName" "CBitmapPanel" "fieldName" "PreviewImage" "xpos" "2" "ypos" "27" "zpos" "1" "wide" "121" "tall" "121" "visible" "1" "mouseinputenabled" "0" } "LabelTitle" { "ControlName" "Label" "fieldName" "LabelTitle" "xpos" "0" "ypos" "155" "wide" "125" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%title%" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "wrap" "0" "font" "HudFontSmallest" "fgcolor_override" "TanLight" "mouseinputenabled" "0" } } ================================================ FILE: resource/ui/tankprogressbar.res ================================================ "resource/ui/tankprogressbar.res" { "TankProgressBar" { "ControlName" "CTankProgressBar" "fieldName" "TankProgressBar" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "190" "tall" "18" "visible" "0" "enabled" "1" } "TankImage" { "ControlName" "CTFImagePanel" "fieldName" "TankImage" "xpos" "5" "ypos" "0" "zpos" "3" "wide" "18" "tall" "18" "visible" "1" "enabled" "1" "image" "../hud/leaderboard_class_tank" "scaleImage" "1" } "ProgressBar" { "ControlName" "ScalableImagePanel" "fieldName" "ProgressBar" "xpos" "30" "ypos" "7" "zpos" "2" "wide" "153" "tall" "5" "visible" "1" "enabled" "1" "image" "" "src_corner_height" "22" // pixels inside the image "src_corner_width" "22" "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional "draw_corner_height" "5" } "ProgressBarBG" { "ControlName" "ScalableImagePanel" "fieldName" "ProgressBarBG" "xpos" "29" "ypos" "3" "zpos" "1" "wide" "155" "tall" "12" "visible" "0" "enabled" "0" "image" "../HUD/tournament_panel_tan" "src_corner_height" "22" // pixels inside the image "src_corner_width" "22" "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional "draw_corner_height" "5" } "ProgressBarBG2" { "ControlName" "ImagePanel" "fieldName" "ProgressBarBG2" "xpos" "30" "ypos" "7" "zpos" "2" "wide" "153" "tall" "5" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "HudBlack" } } ================================================ FILE: resource/ui/tankstatuspanel.res ================================================ "resource/ui/tankstatuspanel.res" { "Background" { "ControlName" "ScalableImagePanel" "fieldName" "Background" "xpos" "-9999" "ypos" "-9999" } } ================================================ FILE: resource/ui/targetid.res ================================================ "resource/ui/targetid.res" { "TargetBG" { "ControlName" "ImagePanel" "fieldName" "TargetBG" "xpos" "0" "ypos" "33" "zpos" "0" "wide" "640" "tall" "f0" "visible" "1" "enabled" "1" "fillcolor" "HudBlack" } "TargetIDBG" { "ControlName" "CTFImagePanel" "fieldName" "TargetIDBG" "xpos" "0" "ypos" "48" "zpos" "1" "wide" "f0" "tall" "35" "visible" "1" "enabled" "1" "image" "../hud/color_panel_brown" "scaleImage" "1" "teambg_1" "../hud/color_panel_brown" "teambg_2" "../hud/color_panel_red" "teambg_3" "../hud/color_panel_blu" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "0" "draw_corner_height" "0" } "TargetIDBG_Spec_Blue" { "ControlName" "ImagePanel" "fieldName" "TargetIDBG_Spec_Blue" "xpos" "0" "ypos" "48" "zpos" "1" "wide" "f0" "tall" "35" "visible" "0" "enabled" "1" "fillcolor" "HUDBlueTeamSolid" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "0" "draw_corner_height" "0" } "TargetIDBG_Spec_Red" { "ControlName" "ImagePanel" "fieldName" "TargetIDBG_Spec_Red" "xpos" "0" "ypos" "48" "zpos" "1" "wide" "f0" "tall" "36" "visible" "0" "enabled" "1" "fillcolor" "HUDRedTeamSolid" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "0" "draw_corner_height" "0" } "TargetNameLabel" { "ControlName" "Label" "fieldName" "TargetNameLabel" "font" "FontRegular12" "font_minmode" "StreamerMode" "xpos" "-20" "ypos" "35" "zpos" "1" "wide" "640" "tall" "13" "visible" "1" "enabled" "1" "labelText" "%targetname%" "textAlignment" "west" } "TargetNameLabelShadow" { "ControlName" "Label" "fieldName" "TargetNameLabelShadow" "font" "FontRegular12" "font_minmode" "StreamerMode" "xpos" "-1" "ypos" "-1" "zpos" "1" "wide" "640" "tall" "13" "visible" "1" "enabled" "1" "labelText" "%targetname%" "textAlignment" "west" "fgcolor_override" "Black" "pin_to_sibling" "TargetNameLabel" } "TargetDataLabel" { "ControlName" "Label" "fieldName" "TargetDataLabel" "font" "FontRegular12" "xpos" "40" "ypos" "20" "zpos" "1" "wide" "640" "tall" "13" "visible" "1" "enabled" "1" "labelText" "%targetdata%" "textAlignment" "west" } "SpectatorGUIHealth" { "ControlName" "EditablePanel" "fieldName" "SpectatorGUIHealth" "xpos" "-10" "ypos" "31" "zpos" "1" "wide" "60" "tall" "20" "visible" "0" "enabled" "0" "HealthBonusPosAdj" "10" "HealthDeathWarning" "0.49" "TFFont" "HudFontSmall" "HealthDeathWarningColor" "HUDDeathWarning" "TextColor" "HudOffWhite" } "AmmoIcon" { "ControlName" "ImagePanel" "fieldName" "AmmoIcon" "xpos" "70" "ypos" "22" "zpos" "12" "wide" "8" "tall" "8" "visible" "0" "enabled" "1" "image" "../hud/leaderboard_class_heavy" "scaleImage" "1" } "KillStreakAnchor" { "ControlName" "EditablePanel" "fieldName" "KillStreakAnchor" "xpos" "-5" "ypos" "23" "wide" "8" "tall" "8" "visible" "1" "enabled" "1" } "KillStreakIcon" { "ControlName" "ImagePanel" "fieldName" "KillStreakIcon" "xpos" "0" "ypos" "1" "zpos" "12" "wide" "8" "tall" "8" "visible" "0" "enabled" "1" "image" "../hud/leaderboard_streak" "scaleImage" "1" "pin_to_sibling" "KillStreakAnchor" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "MoveableSubPanel" { "ControlName" "EditablePanel" "fieldName" "MoveableSubPanel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "32" "tall" "36" "visible" "1" "enabled" "1" "MoveableIconBG" { "ControlName" "CIconPanel" "fieldName" "MoveableIconBG" "xpos" "9999" "ypos" "9999" "zpos" "0" "wide" "10" "tall" "36" "visible" "0" "enabled" "0" "icon" "obj_status_alert_background_tall_nocolor" "iconColor" "HudBlack" "scaleImage" "1" } "MoveableIcon" { "ControlName" "CIconPanel" "fieldName" "MoveableIcon" "xpos" "5" "ypos" "7" "zpos" "11" "wide" "0" "tall" "14" "visible" "1" "enabled" "1" "icon" "obj_status_sentrygun_1" "drawcolor" "TanLight" "scaleImage" "1" } "MoveableSymbolIcon" { "ControlName" "ImagePanel" "fieldName" "MoveableSymbolIcon" "xpos" "16" "ypos" "0" "zpos" "12" "wide" "16" "tall" "8" "visible" "1" "enabled" "1" "image" "../hud/eng_sel_item_movable" "drawcolor" "TanLight" "scaleImage" "1" } "MoveableKeyLabel" { "ControlName" "Label" "fieldName" "MoveableKeyLabel" "font" "FontRegular10" "xpos" "10" "ypos" "45" "zpos" "1" "wide" "30" "tall" "24" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "North" "dulltext" "0" "brighttext" "0" } } "AvatarImage" { "ControlName" "CAvatarImagePanel" "fieldName" "AvatarImage" "xpos" "0" "ypos" "33" "zpos" "99" "wide" "17" "tall" "17" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HudTimerProgressInActive" } } ================================================ FILE: resource/ui/teammenu.res ================================================ "resource/ui/teammenu.res" { "team" { "ControlName" "CTeamMenu" "fieldName" "team" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "fgcolor" "255 0 0 255" } "SysMenu" { "ControlName" "Menu" "fieldName" "SysMenu" "xpos" "0" "ypos" "0" "wide" "64" "tall" "24" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" } "MapInfo" { "ControlName" "HTML" "fieldName" "MapInfo" "xpos" "100" "ypos" "34" "wide" "450" "tall" "365" "autoResize" "3" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" } "SelectTeamLabel" { "ControlName" "Label" "fieldName" "SelectTeamLabel" "xpos" "0" "ypos" "c-60" "zpos" "0" "wide" "f0" "tall" "30" "labelText" "#TF_SelectATeam" "textAlignment" "center" "font" "FontBold37" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "BlueBorder" { "ControlName" "EditablePanel" "fieldName" "BlueBorder" "xpos" "c-200" "ypos" "c30" "zpos" "2" "wide" "200" "tall" "3" "visible" "1" "enabled" "1" "bgcolor_override" "HUDBlueTeamDark" "proportionaltoparent" "1" } "RedBorder" { "ControlName" "EditablePanel" "fieldName" "RedBorder" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "200" "tall" "3" "visible" "1" "enabled" "1" "bgcolor_override" "HUDRedTeamDark" "proportionaltoparent" "1" "pin_to_sibling" "BlueBorder" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "teambutton0" { "ControlName" "CTFTeamButton" "fieldName" "teambutton0" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "200" "tall" "50" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "3" "labelText" "#TF_BlueTeam_Name" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "jointeam blue" "team" "3" // Blue Team "font" "FontBold37" "pin_to_sibling" "BlueBorder" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "defaultBgColor_override" "HUDBlueTeamSolid" "armedBgColor_override" "HUDBlueTeamDark" "depressedBgColor_override" "HUDBlueTeamSolid" "selectedBgColor_override" "HUDBlueTeamDark" "defaultFgColor_override" "TanLight" "armedFgColor_override" "BlueTeam" "depressedFgColor_override" "BlueTeam" "selectedFgColor_override" "BlueTeam" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "teambutton1" { "ControlName" "CTFTeamButton" "fieldName" "teambutton1" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "200" "tall" "50" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "3" "labelText" "#TF_RedTeam_Name" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "jointeam red" "team" "4" // Red Team "font" "FontBold37" "pin_to_sibling" "RedBorder" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" "defaultBgColor_override" "HUDRedTeamSolid" "armedBgColor_override" "HUDRedTeamDark" "depressedBgColor_override" "HUDRedTeamSolid" "selectedBgColor_override" "HUDRedTeamDark" "defaultFgColor_override" "TanLight" "armedFgColor_override" "RedTeam" "depressedFgColor_override" "RedTeam" "selectedFgColor_override" "RedTeam" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "teambutton2" { "ControlName" "CTFTeamButton" "fieldName" "teambutton2" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "1" "labelText" "#TF_Random" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "paintborder" "0" "command" "jointeam auto" "font" "FontRegular20" "pin_to_sibling" "BlueBorder" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanDark" "selectedFgColor_override" "TanLight" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "teambutton3" { "ControlName" "CTFTeamButton" "fieldName" "teambutton3" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "tabPosition" "2" "labelText" "#TF_Spectate" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "paintborder" "0" "command" "jointeam spectate" "font" "FontRegular20" "pin_to_sibling" "RedBorder" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanDark" "selectedFgColor_override" "TanLight" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MenuBG" { "ControlName" "ImagePanel" "fieldName" "MenuBG" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "fillcolor" "255 255 255 7" } "BlueCount" { "ControlName" "CExLabel" "fieldName" "BlueCount" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "25" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%bluecount%" "textAlignment" "west" "dulltext" "0" "brighttext" "1" "mouseinputenabled" "0" "textinsetx" "10" "font" "FontRegular20" "fgcolor" "TanLight" "pin_to_sibling" "teambutton0" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "RedCount" { "ControlName" "CExLabel" "fieldName" "RedCount" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "25" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%redcount%" "textAlignment" "east" "dulltext" "0" "brighttext" "1" "mouseinputenabled" "0" "textinsetx" "10" "font" "FontRegular20" "fgcolor" "TanLight" "pin_to_sibling" "teambutton1" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TeamsFullLabel" { "ControlName" "CExLabel" "fieldName" "TeamsFullLabel" "xpos" "c-50" "ypos" "c150" "zpos" "6" "wide" "105" "tall" "35" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "#TF_Teams_Full" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontRegular12" "fgcolor" "TanLight" "centerwrap" "1" } "TeamsFullLabelShadow" { "ControlName" "CExLabel" "fieldName" "TeamsFullLabelShadow" "xpos" "-1" "ypos" "-1" "zpos" "6" "wide" "105" "tall" "35" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "labelText" "#TF_Teams_Full" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "FontRegular12" "fgcolor" "Black" "centerwrap" "1" "pin_to_sibling" "TeamsFullLabel" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "wide" "0" } "teambutton0SC" { "ControlName" "CExButton" "fieldName" "teambutton0SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&3" "command" "jointeam blue" "team" "3" } "teambutton1SC" { "ControlName" "CExButton" "fieldName" "teambutton1SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&4" "command" "jointeam red" "team" "4" } "teambutton2SC" { "ControlName" "CExButton" "fieldName" "teambutton2SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&1" "command" "jointeam auto" } "teambutton3SC" { "ControlName" "CExButton" "fieldName" "teambutton3SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&2" "command" "jointeam spectate" } } ================================================ FILE: resource/ui/teammenu_sc.res ================================================ #base "teammenu.res" "resource/ui/teammenu.res" { "JoinBluHintIcon" { "ControlName" "CSCHintIcon" "fieldName" "JoinBluHintIcon" "xpos" "0" "ypos" "2" "wide" "40" "tall" "40" "zpos" "5" "autoResize" "0" "visible" "0" "enabled" "1" "pinCorner" "0" "actionSet" "InGameHUDControls" "actionName" "menu_select" "pin_to_sibling" "BlueBorder" "pin_corner_to_sibling" "PIN_BOTTOMLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "JoinRedHintIcon" { "ControlName" "CSCHintIcon" "fieldName" "JoinRedHintIcon" "xpos" "0" "ypos" "2" "wide" "40" "tall" "40" "zpos" "5" "autoResize" "0" "visible" "0" "enabled" "1" "pinCorner" "0" "actionSet" "InGameHUDControls" "actionName" "menu_select" "pin_to_sibling" "RedBorder" "pin_corner_to_sibling" "PIN_BOTTOMRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "JoinAutoHintIcon" { "ControlName" "CSCHintIcon" "fieldName" "JoinAutoHintIcon" "xpos" "-2" "ypos" "2" "wide" "30" "tall" "30" "zpos" "5" "autoResize" "0" "visible" "0" "enabled" "1" "pinCorner" "0" "actionSet" "InGameHUDControls" "actionName" "menu_select" "pin_to_sibling" "BlueBorder" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "JoinSpectatorsHintIcon" { "ControlName" "CSCHintIcon" "fieldName" "JoinSpectatorsHintIcon" "xpos" "-2" "ypos" "2" "wide" "30" "tall" "30" "zpos" "5" "autoResize" "0" "visible" "0" "enabled" "1" "pinCorner" "0" "actionSet" "InGameHUDControls" "actionName" "menu_select" "pin_to_sibling" "RedBorder" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_BOTTOMRIGHT" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "30" "ypos" "r50" "zpos" "2" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "#TF_Cancel_NoKey" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "cancelmenu" "font" "FontBold22" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanDark" "selectedFgColor_override" "TanLight" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CancelHintIcon" { "ControlName" "CSCHintIcon" "fieldName" "CancelHintIcon" "xpos" "-5" "ypos" "0" "zpos" "7" "wide" "25" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "0" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "actionSet" "InGameHUDControls" "actionName" "menu_cancel" "pin_to_sibling" "CancelButton" } } ================================================ FILE: resource/ui/teamscorepanel.res ================================================ ///////////////////////////////////////////////// // Contributed by https://github.com/Wiethoofd // ///////////////////////////////////////////////// "resource/ui/teamscorepanel.res" { "TeamScorePanel" { "ControlName" "EditablePanel" "fieldName" "TeamScorePanel" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "f0" "tall" "100" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" } "TeamNameBluBG" { "ControlName" "ImagePanel" "fieldName" "TeamNameBluBG" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "380" "tall" "25" "visible" "1" "enabled" "1" "fillcolor" "HudBlack" } "TeamNameRedBG" { "ControlName" "ImagePanel" "fieldName" "TeamNameRedBG" "xpos" "c40" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "25" "visible" "1" "enabled" "1" "fillcolor" "HudBlack" } "TeamNameBlu" { "ControlName" "Label" "fieldName" "TeamNameBlu" "xpos" "0" "ypos" "-3" "zpos" "1" "wide" "100" "tall" "18" "font" "FontBold22" "labelText" "%blueteamname%" "textinsetx" "20" "textAlignment" "east" "visible" "1" "auto_wide_tocontents" "1" "fgcolor_override" "HUDBlueTeamSolid" "pin_to_sibling" "TeamScoreBluBG" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "TeamNameBluShadow" { "ControlName" "Label" "fieldName" "TeamNameBluShadow" "xpos" "-2" "ypos" "-2" "wide" "100" "tall" "18" "font" "FontBold22" "labelText" "%blueteamname%" "textinsetx" "20" "textAlignment" "east" "visible" "1" "fgcolor_override" "Black" "auto_wide_tocontents" "1" "pin_to_sibling" "TeamNameBlu" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "TeamScoreBluBG" { "ControlName" "ImagePanel" "fieldName" "TeamScoreBluBG" "xpos" "-40" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "fillcolor" "HUDBlueTeamSolid" "pin_to_sibling" "CenterAnchor" "pin_corner_to_sibling" "PIN_TOPRIGHT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TeamScoreBlu" { "ControlName" "Label" "fieldName" "TeamScoreBlu" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "25" "tall" "25" "font" "FontBold22" "labelText" "%blueteamscore%" "textAlignment" "center" "visible" "1" "pin_to_sibling" "TeamScoreBluBG" "pin_corner_to_sibling" "PIN_CENTER_TOP" "pin_to_sibling_corner" "PIN_CENTER_TOP" } "TeamScoreBluShadow" { "ControlName" "Label" "fieldName" "TeamScoreBluShadow" "xpos" "-2" "ypos" "-2" "wide" "25" "tall" "25" "font" "FontBold22" "labelText" "%blueteamscore%" "textAlignment" "center" "visible" "1" "fgcolor_override" "Black" "pin_to_sibling" "TeamScoreBlu" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "CenterAnchor" { "ControlName" "EditablePanel" "fieldName" "CenterAnchor" "xpos" "c0" "ypos" "0" "wide" "0" "tall" "0" "visible" "1" } "TeamScoreRed" { "ControlName" "Label" "fieldName" "TeamScoreRed" "xpos" "0" "ypos" "0" "zpos" "2" "wide" "35" "tall" "25" "font" "FontBold22" "labelText" "%redteamscore%" "textAlignment" "center" "visible" "1" "pin_to_sibling" "TeamScoreRedBG" "pin_corner_to_sibling" "PIN_CENTER_TOP" "pin_to_sibling_corner" "PIN_CENTER_TOP" } "TeamScoreRedShadow" { "ControlName" "Label" "fieldName" "TeamScoreRedShadow" "xpos" "-2" "ypos" "-2" "zpos" "1" "wide" "35" "tall" "25" "font" "FontBold22" "labelText" "%redteamscore%" "textAlignment" "center" "visible" "1" "fgcolor_override" "Black" "pin_to_sibling" "TeamScoreRed" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "TeamNameRed" { "ControlName" "Label" "fieldName" "TeamNameRed" "xpos" "0" "ypos" "-3" "zpos" "1" "wide" "100" "tall" "18" "font" "FontBold22" "labelText" "%redteamname%" "textinsetx" "20" "textAlignment" "west" "visible" "1" "fgcolor_override" "HUDRedTeamSolid" "auto_wide_tocontents" "1" "pin_to_sibling" "TeamScoreRedBG" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "TeamNameRedShadow" { "ControlName" "Label" "fieldName" "TeamNameRedShadow" "xpos" "-2" "ypos" "-2" "wide" "100" "tall" "18" "font" "FontBold22" "labelText" "%redteamname%" "textinsetx" "20" "textAlignment" "west" "visible" "1" "auto_wide_tocontents" "1" "fgcolor_override" "Black" "pin_to_sibling" "TeamNameRed" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } "TeamScoreRedBG" { "ControlName" "ImagePanel" "fieldName" "TeamScoreRedBG" "xpos" "-40" "ypos" "0" "zpos" "0" "wide" "25" "tall" "25" "fillcolor" "HUDRedTeamSolid" "pin_to_sibling" "CenterAnchor" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPLEFT" } } ================================================ FILE: resource/ui/testitemdialog.res ================================================ "resource/ui/testitemdialog.res" { "TestItemDialog" { "fieldName" "TestItemDialog" "visible" "1" "enabled" "1" "xpos" "c-275" "ypos" "80" "zpos" "999" "wide" "550" "tall" "300" "bgcolor_override" "DarkerGrey" "paintbackgroundtype" "2" "settitlebarvisible" "" "border" "WhiteBorder" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontMediumBold" "labelText" "%testtitle%" "textAlignment" "north" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "550" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "SelectModelLabel" { "ControlName" "CExLabel" "fieldName" "SelectModelLabel" "font" "HudFontSmallest" "labelText" "#IT_YourModel" "textAlignment" "west" "xpos" "15" "ypos" "70" "zpos" "1" "wide" "95" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ModelLabel" { "ControlName" "CExLabel" "fieldName" "ModelLabel" "font" "ItemFontAttribSmall" "labelText" "%testmodel%" "textAlignment" "west" "xpos" "110" "ypos" "70" "zpos" "1" "wide" "200" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "200 80 60 255" } "SelectModelButton" { "ControlName" "CExButton" "fieldName" "SelectModelButton" "xpos" "290" "ypos" "70" "zpos" "2" "wide" "120" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_SelectModel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "select_model" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ExistingItemToTestPanel" { "ControlName" "EditablePanel" "fieldName" "ExistingItemToTestPanel" "xpos" "10" "ypos" "90" "wide" "400" "tall" "50" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "DarkerGrey" "ItemReplacedLabel" { "ControlName" "CExLabel" "fieldName" "ItemReplacedLabel" "font" "HudFontSmallest" "labelText" "#IT_ExistingItem" "textAlignment" "west" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "95" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "ExistingItemComboBox" { "ControlName" "ComboBox" "fieldName" "ExistingItemComboBox" "Font" "HudFontSmallest" "xpos" "100" "ypos" "0" "zpos" "1" "wide" "200" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "fgcolor_override" "117 107 94 255" "bgcolor_override" "251 235 202 0" "disabledFgColor_override" "117 107 94 0" "disabledBgColor_override" "251 235 202 0" "selectionColor_override" "0 0 0 0" "selectionTextColor_override" "117 107 94 255" "defaultSelectionBG2Color_override" "251 235 202 255" } } "ItemReplacedPanel" { "ControlName" "EditablePanel" "fieldName" "ItemReplacedPanel" "xpos" "10" "ypos" "140" "wide" "400" "tall" "50" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "DarkerGrey" "ItemReplacedLabel" { "ControlName" "CExLabel" "fieldName" "ItemReplacedLabel" "font" "HudFontSmallest" "labelText" "#IT_ItemReplaces" "textAlignment" "west" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "95" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ItemReplacedComboBox" { "ControlName" "ComboBox" "fieldName" "ItemReplacedComboBox" "Font" "HudFontSmallest" "xpos" "95" "ypos" "0" "zpos" "1" "wide" "200" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "fgcolor_override" "117 107 94 255" "bgcolor_override" "251 235 202 0" "disabledFgColor_override" "117 107 94 0" "disabledBgColor_override" "251 235 202 0" "selectionColor_override" "0 0 0 0" "selectionTextColor_override" "117 107 94 255" "defaultSelectionBG2Color_override" "251 235 202 255" } "NoItemsToReplaceLabel" { "ControlName" "CExLabel" "fieldName" "NoItemsToReplaceLabel" "font" "HudFontSmallest" "labelText" "#IT_ItemReplaced_Invalid" "textAlignment" "west" "xpos" "95" "ypos" "0" "zpos" "1" "wide" "200" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "1" "fgcolor_override" "200 80 60 255" } } "BodygroupPanel" { "ControlName" "EditablePanel" "fieldName" "BodygroupPanel" "xpos" "10" "ypos" "100" "wide" "550" "tall" "50" "visible" "1" "PaintBackgroundType" "2" "HideBodygroupLabel" { "ControlName" "CExLabel" "fieldName" "HideBodygroupLabel" "font" "HudFontSmallest" "labelText" "#IT_Bodygroups" "textAlignment" "west" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "95" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "HideBodygroupExplanationLabel" { "ControlName" "CExLabel" "fieldName" "HideBodygroupExplanationLabel" "font" "ItemFontAttribSmallest" "labelText" "#IT_Explanation_Bodygroups" "textAlignment" "west" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "95" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor" "117 107 94 255" } "HideBodygroupCheckBox0" { "ControlName" "CheckButton" "fieldName" "HideBodygroupCheckBox0" "labelText" "#IT_Bodygroup_Hat" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "95" "ypos" "0" "zpos" "1" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" } "HideBodygroupCheckBox1" { "ControlName" "CheckButton" "fieldName" "HideBodygroupCheckBox1" "labelText" "#IT_Bodygroup_Headphone" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "95" "ypos" "25" "zpos" "1" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" } "HideBodygroupCheckBox2" { "ControlName" "CheckButton" "fieldName" "HideBodygroupCheckBox2" "labelText" "#IT_Bodygroup_Medals" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "190" "ypos" "0" "zpos" "1" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" } "HideBodygroupCheckBox3" { "ControlName" "CheckButton" "fieldName" "HideBodygroupCheckBox3" "labelText" "#IT_Bodygroup_Grenades" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "190" "ypos" "25" "zpos" "1" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" } "HideBodygroupCheckBox4" { "ControlName" "CheckButton" "fieldName" "HideBodygroupCheckBox4" "labelText" "#IT_Bodygroup_Bullets" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "290" "ypos" "0" "zpos" "1" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" } "HideBodygroupCheckBox5" { "ControlName" "CheckButton" "fieldName" "HideBodygroupCheckBox5" "labelText" "#IT_Bodygroup_Arrows" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "290" "ypos" "25" "zpos" "1" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" } "HideBodygroupCheckBox6" { "ControlName" "CheckButton" "fieldName" "HideBodygroupCheckBox6" "labelText" "#IT_Bodygroup_RightArm" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "385" "ypos" "0" "zpos" "1" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" } "HideBodygroupCheckBox7" { "ControlName" "CheckButton" "fieldName" "HideBodygroupCheckBox7" "labelText" "#IT_Bodygroup_Shoes_Socks" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "385" "ypos" "25" "zpos" "1" "wide" "150" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "117 107 94 255" } } "CustomizationsPanel" { "ControlName" "EditablePanel" "fieldName" "CustomizationsPanel" "xpos" "10" "ypos" "200" "wide" "530" "tall" "50" "visible" "1" "PaintBackgroundType" "2" "PaintColorLabel" { "ControlName" "CExLabel" "fieldName" "PaintColorLabel" "font" "HudFontSmallest" "labelText" "#IT_PaintTitle" "textAlignment" "west" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "95" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "PaintColorComboBox" { "ControlName" "ComboBox" "fieldName" "PaintColorComboBox" "Font" "HudFontSmallest" "xpos" "100" "ypos" "0" "zpos" "1" "wide" "200" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "fgcolor_override" "117 107 94 255" "bgcolor_override" "251 235 202 0" "disabledFgColor_override" "117 107 94 0" "disabledBgColor_override" "251 235 202 0" "selectionColor_override" "0 0 0 0" "selectionTextColor_override" "117 107 94 255" "defaultSelectionBG2Color_override" "251 235 202 255" } "UnusualEffectLabel" { "ControlName" "CExLabel" "fieldName" "UnusualEffectLabel" "font" "HudFontSmallest" "labelText" "#IT_UnusualTitle" "textAlignment" "west" "xpos" "5" "ypos" "25" "zpos" "1" "wide" "95" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "UnusualEffectComboBox" { "ControlName" "ComboBox" "fieldName" "UnusualEffectComboBox" "Font" "HudFontSmallest" "xpos" "100" "ypos" "25" "zpos" "1" "wide" "200" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "fgcolor_override" "117 107 94 255" "bgcolor_override" "251 235 202 0" "disabledFgColor_override" "117 107 94 0" "disabledBgColor_override" "251 235 202 0" "selectionColor_override" "0 0 0 0" "selectionTextColor_override" "117 107 94 255" "defaultSelectionBG2Color_override" "251 235 202 255" } } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "150" "ypos" "260" "zpos" "1" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "300" "ypos" "260" "zpos" "1" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "0" "tabPosition" "0" "labelText" "#TF_OK" "font" "FontBold14" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "ok" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ReloadSchemeButton" { "ControlName" "CExButton" "fieldName" "ReloadSchemeButton" "xpos" "10" "ypos" "260" "zpos" "25" "wide" "30" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "tabPosition" "0" "labelText" "R" "font" "HudFontSmallestBold" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "reloadscheme" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/testitemroot.res ================================================ "resource/ui/testitemroot.res" { "TestItemRoot" { "fieldName" "TestItemRoot" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "bgcolor_override" "DarkGrey" "paintbackgroundtype" "2" "settitlebarvisible" "" "paintborder" "0" "paintbackground" "1" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "labelText" "#IT_Title" "textAlignment" "center" "xpos" "0" "ypos" "30" "zpos" "1" "wide" "f0" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "ClassUsagePanel" { "ControlName" "EditablePanel" "fieldName" "ClassUsagePanel" "xpos" "c-310" "ypos" "60" "wide" "400" "tall" "95" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "0 0 0 128" "ClassUsageLabel" { "ControlName" "CExLabel" "fieldName" "ClassUsageLabel" "font" "HudFontSmallestBold" "labelText" "#IT_ClassUsage" "textAlignment" "west" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "200" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "ClassCheckBox0" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox0" "labelText" "#IT_Classes_All" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "45" "ypos" "15" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "ItemFlags" } "ClassCheckBox1" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox1" "labelText" "#TF_Class_Name_Scout" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "145" "ypos" "15" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "ItemFlags" } "ClassCheckBox2" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox2" "labelText" "#TF_Class_Name_Sniper" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "220" "ypos" "15" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "ItemFlags" } "ClassCheckBox3" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox3" "labelText" "#TF_Class_Name_Soldier" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "295" "ypos" "15" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox4" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox4" "labelText" "#TF_Class_Name_Demoman" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "145" "ypos" "40" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox5" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox5" "labelText" "#TF_Class_Name_Medic" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "220" "ypos" "40" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox6" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox6" "labelText" "#TF_Class_Name_HWGuy" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "295" "ypos" "40" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox7" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox7" "labelText" "#TF_Class_Name_Pyro" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "145" "ypos" "65" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox8" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox8" "labelText" "#TF_Class_Name_Spy" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "220" "ypos" "65" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "TextColor" } "ClassCheckBox9" { "ControlName" "CheckButton" "fieldName" "ClassCheckBox9" "labelText" "#TF_Class_Name_Engineer" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "295" "ypos" "65" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "TextColor" } } "TestingPanel" { "ControlName" "EditablePanel" "fieldName" "TestingPanel" "xpos" "c-310" "ypos" "160" "wide" "400" "tall" "105" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "0 0 0 128" "CurrentlyTestingLabel" { "ControlName" "CExLabel" "fieldName" "CurrentlyTestingLabel" "font" "HudFontSmallestBold" "labelText" "#IT_CurrentlyTesting" "textAlignment" "west" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "200" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "TestingWeaponLabel" { "ControlName" "CExLabel" "fieldName" "TestingWeaponLabel" "font" "HudFontSmallest" "labelText" "#IT_TestingSlot_Weapon" "textAlignment" "east" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "85" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "TestItemEntry0" { "ControlName" "CExLabel" "fieldName" "TestItemEntry0" "font" "ItemFontAttribSmall" "labelText" "#IT_TestingSlot_Empty" "textAlignment" "center" "xpos" "95" "ypos" "20" "zpos" "1" "wide" "165" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" "bgcolor_override" "24 24 24 128" } "TestItemButton0" { "ControlName" "CExButton" "fieldName" "TestItemButton0" "xpos" "270" "ypos" "20" "zpos" "1" "wide" "90" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Item_Add" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "item_test0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "RemoveItemButton0" { "ControlName" "CExButton" "fieldName" "RemoveItemButton0" "xpos" "370" "ypos" "20" "zpos" "1" "wide" "20" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Item_Remove" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "item_remove0" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "TestingHeadgearLabel" { "ControlName" "CExLabel" "fieldName" "TestingHeadgearLabel" "font" "HudFontSmallest" "labelText" "#IT_TestingSlot_Headgear" "textAlignment" "east" "xpos" "0" "ypos" "40" "zpos" "1" "wide" "85" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "TestItemEntry1" { "ControlName" "CExLabel" "fieldName" "TestItemEntry1" "font" "ItemFontAttribSmall" "labelText" "#IT_TestingSlot_Empty" "textAlignment" "center" "xpos" "95" "ypos" "40" "zpos" "1" "wide" "165" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" "bgcolor_override" "24 24 24 128" } "TestItemButton1" { "ControlName" "CExButton" "fieldName" "TestItemButton1" "xpos" "270" "ypos" "40" "zpos" "1" "wide" "90" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Item_Add" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "item_test1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "RemoveItemButton1" { "ControlName" "CExButton" "fieldName" "RemoveItemButton1" "xpos" "370" "ypos" "40" "zpos" "1" "wide" "20" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Item_Remove" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "item_remove1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "TestingMisc1Label" { "ControlName" "CExLabel" "fieldName" "TestingMisc1Label" "font" "HudFontSmallest" "labelText" "#IT_TestingSlot_Misc1" "textAlignment" "east" "xpos" "0" "ypos" "60" "zpos" "1" "wide" "85" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "TestItemEntry2" { "ControlName" "CExLabel" "fieldName" "TestItemEntry2" "font" "ItemFontAttribSmall" "labelText" "#IT_TestingSlot_Empty" "textAlignment" "center" "xpos" "95" "ypos" "60" "zpos" "1" "wide" "165" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" "bgcolor_override" "24 24 24 128" } "TestItemButton2" { "ControlName" "CExButton" "fieldName" "TestItemButton2" "xpos" "270" "ypos" "60" "zpos" "1" "wide" "90" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Item_Add" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "item_test2" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "RemoveItemButton2" { "ControlName" "CExButton" "fieldName" "RemoveItemButton2" "xpos" "370" "ypos" "60" "zpos" "1" "wide" "20" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Item_Remove" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "item_remove2" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "TestingMisc2Label" { "ControlName" "CExLabel" "fieldName" "TestingMisc2Label" "font" "HudFontSmallest" "labelText" "#IT_TestingSlot_Misc2" "textAlignment" "east" "xpos" "0" "ypos" "80" "zpos" "1" "wide" "85" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "TestItemEntry3" { "ControlName" "CExLabel" "fieldName" "TestItemEntry3" "font" "ItemFontAttribSmall" "labelText" "#IT_TestingSlot_Empty" "textAlignment" "center" "xpos" "95" "ypos" "80" "zpos" "1" "wide" "165" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "LightRed" "bgcolor_override" "24 24 24 128" } "TestItemButton3" { "ControlName" "CExButton" "fieldName" "TestItemButton3" "xpos" "270" "ypos" "80" "zpos" "1" "wide" "90" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Item_Add" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "item_test3" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "RemoveItemButton3" { "ControlName" "CExButton" "fieldName" "RemoveItemButton3" "xpos" "370" "ypos" "80" "zpos" "1" "wide" "20" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Item_Remove" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "item_remove3" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } "BotAdditionPanel" { "ControlName" "EditablePanel" "fieldName" "BotAdditionPanel" "xpos" "c100" "ypos" "60" "wide" "200" "tall" "95" "visible" "1" "PaintBackgroundType" "2" "bgcolor_override" "0 0 0 128" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontSmallestBold" "labelText" "#IT_BotControl_Title" "textAlignment" "west" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "200" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "AutoAddBotsCheckBox" { "ControlName" "CheckButton" "fieldName" "AutoAddBotsCheckBox" "labelText" "#IT_Bot_AutoAdd" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "10" "ypos" "20" "zpos" "1" "wide" "90" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "TextColor" } "BotsOnBlueTeamCheckBox" { "ControlName" "CheckButton" "fieldName" "BotsOnBlueTeamCheckBox" "labelText" "#IT_Bot_BlueTeam" "Font" "ItemFontAttribSmall" "textAlignment" "west" "xpos" "110" "ypos" "20" "zpos" "1" "wide" "90" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "dulltext" "0" "brighttext" "0" "disabledfgcolor2_override" "TextColor" } "AddBotButton" { "ControlName" "CExButton" "fieldName" "AddBotButton" "xpos" "20" "ypos" "45" "zpos" "1" "wide" "70" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Bot_Add" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "bot_add" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "BotSelectionComboBox" { "ControlName" "ComboBox" "fieldName" "BotSelectionComboBox" "Font" "HudFontSmallest" "xpos" "95" "ypos" "45" "zpos" "1" "wide" "100" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "fgcolor_override" "235 226 202 255" "bgcolor_override" "251 235 202 0" "disabledFgColor_override" "117 107 94 0" "disabledBgColor_override" "251 235 202 0" "selectionColor_override" "Transparent" "selectionTextColor_override" "235 226 202 255" "defaultSelectionBG2Color_override" "251 235 202 255" } "KickAllBotsButton" { "ControlName" "CExButton" "fieldName" "KickAllBotsButton" "xpos" "20" "ypos" "70" "zpos" "1" "wide" "120" "tall" "15" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Bot_RemoveAll" "font" "HudFontSmallestBold" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "bot_removeall" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } "TestItemBotControls" { "fieldName" "TestItemBotControls" "visible" "1" "enabled" "1" "xpos" "c100" "ypos" "160" "wide" "200" "tall" "200" "bgcolor_override" "0 0 0 128" } "ExportButton" { "ControlName" "CExButton" "fieldName" "ExportButton" "xpos" "c-310" "ypos" "400" "zpos" "1" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_ExportLoadout" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "export" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ImportButton" { "ControlName" "CExButton" "fieldName" "ImportButton" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_ImportLoadout" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "import" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "ExportButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "ImportRecentButton" { "ControlName" "CExButton" "fieldName" "ImportRecentButton" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_ImportLast" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "importrecent" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "ImportButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "0" "ypos" "5" "zpos" "1" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "ExportButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_BOTTOMLEFT" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "5" "ypos" "0" "zpos" "1" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#IT_Ok" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "ok" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "pin_to_sibling" "CancelButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" } "SteamWorkshopButton" { "ControlName" "EditablePanel" "fieldname" "SteamWorkshopButton" "xpos" "5" "ypos" "0" "zpos" "11" "wide" "200" "tall" "30" "visible" "1" "PaintBackgroundType" "2" "pin_to_sibling" "OkButton" "pin_corner_to_sibling" "PIN_TOPLEFT" "pin_to_sibling_corner" "PIN_TOPRIGHT" "SteamWorkshopButtonSubButton" { "ControlName" "CExImageButton" "fieldName" "SteamWorkshopButtonSubButton" "xpos" "0" "ypos" "0" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "textinsetx" "25" "textalignment" "center" "use_proportional_insets" "1" "font" "FontBold16" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "default" "1" "command" "steamworkshop" "labeltext" "#MMenu_SteamWorkshop" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "image_armedcolor" "235 226 202 255" "image_drawcolor" "235 226 202 255" "image_selectedcolor" "46 43 42 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "8" "ypos" "8" "zpos" "1" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "glyph_steamworkshop" } } } "ReloadSchemeButton" { "ControlName" "CExButton" "fieldName" "ReloadSchemeButton" "xpos" "10" "ypos" "460" "zpos" "25" "wide" "30" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "R" "font" "HudFontSmallestBold" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "reloadscheme" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "Tenna" { "ControlName" "ScalableImagePanel" "fieldName" "Tenna" "xpos" "r85" "ypos" "r118" "zpos" "25" "wide" "62" "tall" "102" "visible" "1" "enabled" "1" "image" "replay/thumbnails/main_menu/tenna" "scaleimage" "1" "proportionaltoparent" "1" } } ================================================ FILE: resource/ui/textwindow.res ================================================ "resource/ui/textwindow.res" { "info" { "ControlName" "CTFTextWindow" "fieldName" "info" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "MainBG" { "ControlName" "ImagePanel" "fieldName" "MainBG" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "0 0 0 200" } "TFMessageTitle" { "ControlName" "CExLabel" "fieldName" "TFMessageTitle" "xpos" "0" "ypos" "20" "zpos" "1" "wide" "f0" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#TF_WELCOME" "textAlignment" "center" "font" "FontBold37" "fgcolor" "TanLight" } "TextMessage" { "ControlName" "TextEntry" "fieldName" "TextMessage" "xpos" "9999" } "TFTextMessage" { "ControlName" "CExRichText" "fieldName" "TFTextMessage" "font" "FontRegular15" "xpos" "30" "ypos" "60" "zpos" "1" "wide" "798" "tall" "360" "autoResize" "3" "pinCorner" "0" "visible" "1" "enabled" "1" "paintborder" "0" "textAlignment" "west" "fgcolor" "TanLight" "paintbackground" "0" } "HTMLMessage" { "ControlName" "HTML" "fieldName" "HTMLMessage" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "798" "tall" "360" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "paintborder" "0" "pin_to_sibling" "TFTextMessage" } "ok" { "ControlName" "CExButton" "fieldName" "ok" "xpos" "r225" "ypos" "r50" "zpos" "2" "wide" "200" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "labelText" "#TF_Continue" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "command" "okay" "default" "1" "font" "FontBold22" "paintbackground" "1" "defaultBgColor_override" "TransparentBlack" "armedBgColor_override" "HudBlack" "depressedBgColor_override" "TransparentBlack" "selectedBgColor_override" "HudBlack" "defaultFgColor_override" "TanDark" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanDark" "selectedFgColor_override" "TanLight" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MenuBG" { "ControlName" "CModelPanel" "fieldName" "MenuBG" "xpos" "9999" } "ShadedBar" { "ControlName" "ImagePanel" "fieldName" "ShadedBar" "xpos" "9999" } "TextMessage" { "ControlName" "TextEntry" "fieldName" "TextMessage" "xpos" "9999" } "MessageTitle" { "ControlName" "Label" "fieldName" "MessageTitle" "xpos" "9999" } "teambutton0SC" { "ControlName" "CExButton" "fieldName" "teambutton0SC" "wide" "0" "tall" "0" "visible" "1" "enabled" "1" "labelText" "&E" "command" "okay" } } ================================================ FILE: resource/ui/textwindow_sc.res ================================================ #base "textwindow.res" "resource/ui/textwindow_sc.res" { "OkIntroHintIcon" { "ControlName" "CSCHintIcon" "fieldName" "OkIntroHintIcon" "xpos" "-5" "ypos" "0" "zpos" "7" "wide" "25" "tall" "40" "autoResize" "0" "pinCorner" "2" "visible" "1" "enabled" "1" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "actionSet" "InGameHUDControls" "actionName" "menu_select" "pin_to_sibling" "ok" } } ================================================ FILE: resource/ui/textwindowcustomserver.res ================================================ #base "textwindow.res" ================================================ FILE: resource/ui/textwindowcustomserver_sc.res ================================================ #base "textwindowcustomserver.res" ================================================ FILE: resource/ui/tfadvancedoptionsdialog.res ================================================ "resource/ui/tfadvancedoptionsdialog.res" { "TFAdvancedOptionsDialog" { "ControlName" "EditablePanel" "fieldName" "TFAdvancedOptionsDialog" "xpos" "c-250" "ypos" "90" "wide" "500" "tall" "350" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "DarkGrey" "paintbackgroundtype" "2" "settitlebarvisible" "0" "paintborder" "1" "paintbackground" "1" "border" "WhiteBorder" "control_w" "500" "control_h" "25" "slider_w" "500" "slider_h" "25" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold22" "labelText" "#TF_AdvancedOptions" "textAlignment" "center" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "500" "tall" "40" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "xpos" "100" "ypos" "310" "zpos" "1" "wide" "100" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "Close" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OkButton" { "ControlName" "CExButton" "fieldName" "OkButton" "xpos" "300" "ypos" "310" "zpos" "1" "wide" "100" "tall" "30" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_OK" "font" "FontBold16" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "default" "1" "Command" "Ok" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "PanelListPanel" { "ControlName" "CPanelListPanel" "fieldName" "PanelListPanel" "xpos" "10" "ypos" "35" "wide" "480" "tall" "270" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "Transparent" } "TooltipPanel" { "ControlName" "EditablePanel" "fieldName" "TooltipPanel" "xpos" "0" "ypos" "0" "zpos" "100" "wide" "300" "tall" "50" "visible" "0" "border" "WhiteBorder" "bgcolor_override" "DarkerGrey" "PaintBackgroundType" "2" "TipLabel" { "ControlName" "CExLabel" "fieldName" "TipLabel" "font" "HudFontSmallest" "labelText" "%tiptext%" "textAlignment" "center" "xpos" "10" "ypos" "10" "zpos" "2" "wide" "200" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "TanLight" "wrap" "1" //"centerwrap" "1" } } } ================================================ FILE: resource/ui/training/basictraining/classdetails.res ================================================ "resource/training/basictraining/classdetails.res" { "StartTrainingButton" { "ControlName" "CExButton" "fieldName" "StartTrainingButton" "xpos" "145" "ypos" "220" "wide" "160" "tall" "35" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Training_StartTraining" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "startbasictraining" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "OverlayPanel" { "ControlName" "EditablePanel" "fieldName" "OverlayPanel" "xpos" "20" "ypos" "0" "wide" "300" "tall" "200" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "paintbackground" "1" "bgcolor_override" "DarkGrey" "paintbackgroundtype" "2" "ClassNameLabel" { "ControlName" "CExLabel" "fieldName" "ClassNameLabel" "font" "HudFontMediumBold" "labelText" "%classname%" "textAlignment" "west" "xpos" "10" "ypos" "5" "zpos" "1" "wide" "430" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "DescLabel" { "ControlName" "CExLabel" "fieldName" "DescLabel" "font" "HudFontSmallest" "labelText" "%description%" "textAlignment" "west" "xpos" "10" "ypos" "1" "wide" "280" "tall" "100" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" } "WeaponSetLabel" { "ControlName" "CExLabel" "fieldName" "WeaponSetLabel" "font" "HudFontSmallest" "labelText" "#TR_StandardWeaponSet" "textAlignment" "center" "xpos" "10" "ypos" "100" "wide" "300" "tall" "15" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "116 108 101 255" } "WeaponImage0" { "ControlName" "ImagePanel" "FieldName" "WeaponImage0" "xpos" "15" "ypos" "110" "wide" "70" "tall" "70" "visible" "1" "tileImage" "0" "scaleImage" "1" } "WeaponImage1" { "ControlName" "ImagePanel" "FieldName" "WeaponImage1" "xpos" "115" "ypos" "110" "wide" "70" "tall" "70" "visible" "1" "tileImage" "0" "scaleImage" "1" } "WeaponImage2" { "ControlName" "ImagePanel" "FieldName" "WeaponImage2" "xpos" "215" "ypos" "110" "wide" "70" "tall" "70" "visible" "1" "tileImage" "0" "scaleImage" "1" } "PrimaryLabel" { "ControlName" "CExLabel" "fieldName" "PrimaryLabel" "font" "HudFontSmallest" "labelText" "#TR_Primary" "textAlignment" "center" "xpos" "15" "ypos" "175" "wide" "70" "tall" "15" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "SecondaryLabel" { "ControlName" "CExLabel" "fieldName" "SecondaryLabel" "font" "HudFontSmallest" "labelText" "#TR_Secondary" "textAlignment" "center" "xpos" "115" "ypos" "175" "wide" "70" "tall" "15" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "MeleeLabel" { "ControlName" "CExLabel" "fieldName" "MeleeLabel" "font" "HudFontSmallest" "labelText" "#TR_Melee" "textAlignment" "center" "xpos" "215" "ypos" "175" "wide" "70" "tall" "15" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } } "ClassImage" { "ControlName" "ImagePanel" "FieldName" "ClassImage" "xpos" "325" "ypos" "20" "zpos" "1" "wide" "100" "tall" "200" "visible" "1" "tileImage" "0" "scaleImage" "1" } "ClassIconImage" { "ControlName" "ImagePanel" "FieldName" "ClassIconImage" "xpos" "375" "ypos" "20" "wide" "50" "tall" "50" "visible" "1" "tileImage" "0" "scaleImage" "1" "alpha" "32" } } ================================================ FILE: resource/ui/training/basictraining/classpanel.res ================================================ "resource/training/basictraining/classpanel.res" { "Image" { "ControlName" "ImagePanel" "fieldName" "Image" "visible" "1" "enabled" "1" "tileImage" "0" "scaleImage" "1" "image" "illustrations/training_basic" } "SelectButton" { "ControlName" "CExButton" "fieldName" "SelectButton" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "%selectbuttontext%" "font" "FontBold12" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "%selectcommand%" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ProgressLabel" { "ControlName" "CExLabel" "fieldName" "ProgressLabel" "font" "HudFontSmallest" "labelText" "" "textAlignment" "center" "xpos" "0" "ypos" "241" "wide" "30" "tall" "15" "autoResize" "1" "pinCorner" "0" "visible" "0" "enabled" "1" "wrap" "0" "fgcolor_override" "201 79 57 255" } } ================================================ FILE: resource/ui/training/main.res ================================================ "resource/training/main.res" { "TrainingDialog" { "ControlName" "CTrainingDialog" "fieldName" "TrainingDialog" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "TransparentBlack" } "Container" { "ControlName" "EditablePanel" "fieldName" "Container" "xpos" "c-225" "ypos" "c-200" "zpos" "0" "wide" "450" "tall" "400" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "paintbackground" "1" "border" "WhiteBorder" "GradientBgPanel" { "ControlName" "ImagePanel" "FieldName" "GradientBgPanel" "xpos" "10" "ypos" "135" "zpos" "1" "wide" "0" "tall" "0" "visible" "0" "tileImage" "0" "scaleImage" "1" "image" "training/gradient" "border" "ButtonBorder" "paintbackgroundtype" "2" "paintbackground" "1" } "Background" { "ControlName" "EditablePanel" "fieldName" "Background" "xpos" "0" "ypos" "0" "wide" "450" "tall" "500" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "bgcolor_override" "DarkerGrey" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontMediumBold" "labelText" "%title%" "textAlignment" "center" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "450" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "SubTitleLabel" { "ControlName" "CExLabel" "fieldName" "SubTitleLabel" "font" "HudFontMediumSmall" "labelText" "%subtitle%" "textAlignment" "center" "xpos" "0" "ypos" "50" "zpos" "1" "wide" "450" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "BackButton" { "ControlName" "CExButton" "fieldName" "BackButton" "ypos" "368" "zpos" "20" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "labelText" "#TF_BackCarat" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "prevpage" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "CancelButton" { "ControlName" "CExButton" "fieldName" "CancelButton" "ypos" "368" "zpos" "20" "wide" "100" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#Cancel" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "cancel" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "ModeSelectionPanel" { "ControlName" "CModeSelectionPanel" "fieldName" "ModeSelectionPanel" "xpos" "0" "ypos" "80" "zpos" "2" "wide" "500" "tall" "400" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "paintBackground" "0" "TrainingTitle" "#TF_Training_Title" } "BasicTraining_ClassSelectionPanel" { "ControlName" "CBasicTraining_ClassSelectionPanel" "fieldName" "BasicTraining_ClassSelectionPanel" "xpos" "10" "ypos" "80" "zpos" "2" "wide" "430" "tall" "400" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "paintBackground" "0" "TrainingTitle" "#TR_AttackDefense" "TrainingSubTitle" "#TF_SelectAClass" "Class0Token" "#TF_Soldier" "Class1Token" "#TF_Demoman" "Class2Token" "#TF_Spy" "Class3Token" "#TF_Engineer" "Class0Image" "training/class_soldier" "Class1Image" "training/class_demoman" "Class2Image" "training/class_spy" "Class3Image" "training/class_engineer" "Class0Command" "basictraining_classselection_soldier" "Class1Command" "basictraining_classselection_demoman" "Class2Command" "basictraining_classselection_spy" "Class3Command" "basictraining_classselection_engineer" } "BasicTraining_ClassDetailsPanel" { "ControlName" "CBasicTraining_ClassDetailsPanel" "fieldName" "BasicTraining_ClassDetailsPanel" "xpos" "0" "ypos" "80" "zpos" "2" "wide" "450" "tall" "500" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "paintBackground" "0" "TrainingTitle" "#TR_AttackDefense" } "OfflinePractice_ModeSelectionPanel" { "ControlName" "COfflinePractice_ModeSelectionPanel" "fieldName" "OfflinePractice_ModeSelectionPanel" "xpos" "0" "ypos" "50" "wide" "450" "tall" "500" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "paintBackground" "0" "TrainingTitle" "#TR_PracticeModeSelectTitle" "Mode0Token" "#Gametype_CP" "Desc0Token" "#TF_GameModeDesc_CP" "Image0Path" "illustrations/gamemode_cp" "Mode0Id" "0" "Mode1Token" "#Gametype_Koth" "Desc1Token" "#TF_GameModeDesc_Koth" "Image1Path" "illustrations/gamemode_koth" "Mode1Id" "1" "Mode2Token" "#Gametype_Escort" "Desc2Token" "#TF_GameModeDesc_Escort" "Image2Path" "illustrations/gamemode_payload" "Mode2Id" "2" } "OfflinePractice_MapSelectionPanel" { "ControlName" "COfflinePractice_MapSelectionPanel" "fieldName" "OfflinePractice_MapSelectionPanel" "xpos" "0" "ypos" "50" "wide" "450" "tall" "500" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "tabPosition" "0" "paintBackground" "0" "TrainingTitle" "#TR_PracticeMapSelectTitle" } } } ================================================ FILE: resource/ui/training/modeselection/modepanel.res ================================================ "resource/training/modeselection/modepanel.res" { "ModeInfoContainer" { "ControlName" "EditablePanel" "fieldName" "ModeInfoContainer" "xpos" "0" "ypos" "0" "wide" "225" "tall" "205" "visible" "1" "enabled" "1" "ModeNameLabel" { "ControlName" "CExLabel" "fieldName" "ModeNameLabel" "font" "HudFontSmallBold" "labelText" "%modename%" "textAlignment" "center" "xpos" "0" "ypos" "7" "zpos" "2" "wide" "225" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "mouseinputenabled" "0" "fgcolor_override" "87 79 70 255" } "DescLabel" { "ControlName" "CExLabel" "fieldName" "DescLabel" "font" "HudFontSmallest" "labelText" "%description%" "textAlignment" "north" "xpos" "0" "ypos" "175" "zpos" "2" "wide" "225" "tall" "55" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fgcolor_override" "89 81 71 255" "auto_wide_tocontents" "0" "wrap" "1" "centerwrap" "1" } "ImageFrame" { "ControlName" "EditablePanel" "fieldName" "ImageFrame" "xpos" "10" "ypos" "0" "wide" "205" "tall" "205" "visible" "1" "enabled" "1" "border" "MainMenuHighlightBorder" } // Parented to ImageFrame in code. "Image" { "ControlName" "ImagePanel" "fieldName" "Image" "xpos" "10" "ypos" "32" "wide" "185" "tall" "185" "visible" "1" "enabled" "1" "tileImage" "0" "scaleImage" "1" "image" "" } } "StartButton" { "ControlName" "CExButton" "fieldName" "StartButton" "xpos" "48" "ypos" "215" "zpos" "100" "wide" "130" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Training_SelectMode" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "%startcommand%" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/training/offlinepractice/mapselection.res ================================================ "resource/training/offlinepractice/mapselection.res" { "MapImagePanel" { "ControlName" "ImagePanel" "FieldName" "MapImagePanel" "xpos" "60" "zpos" "0" "wide" "330" "tall" "330" "visible" "1" "tileImage" "0" "scaleImage" "1" "border" "ButtonBorder" "paintbackgroundtype" "2" "paintbackground" "1" } "HackCoverBottomOfMapImagePanel" { "ControlName" "EditablePanel" "ypos" "320" "wide" "f0" "tall" "f0" "bgcolor_override" "DarkerGrey" } "GradientPanel" { "ControlName" "ImagePanel" "FieldName" "GradientPanel" "xpos" "60" "ypos" "107" "zpos" "1" "wide" "330" "tall" "80" "visible" "1" "tileImage" "0" "scaleImage" "1" "image" "training/gradient_black" } "PrevButton" { "ControlName" "CExButton" "fieldName" "PrevButton" "xpos" "36" "ypos" "65" "zpos" "20" "wide" "18" "tall" "43" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_LessThan" "font" "FontBold14" "textAlignment" "center" "textinsetx" "0" "dulltext" "0" "brighttext" "0" "Command" "goprev" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "NextButton" { "ControlName" "CExButton" "fieldName" "NextButton" "xpos" "396" "ypos" "65" "zpos" "20" "wide" "18" "tall" "43" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_GreaterThan" "font" "FontBold14" "textAlignment" "center" "textinsetx" "0" "dulltext" "0" "brighttext" "0" "Command" "gonext" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "MapNameLabel" { "ControlName" "CExLabel" "fieldName" "MapNameLabel" "font" "FontBold22" "labelText" "%mapname%" "textAlignment" "center" "xpos" "60" "ypos" "145" "zpos" "2" "wide" "330" "tall" "40" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "fgcolor_override" "246 237 211 255" } "CurPageLabel" { "ControlName" "CExLabel" "fieldName" "CurPageLabel" "font" "HudFontMediumSmallBold" "labelText" "%curpage%" "textAlignment" "north" "center" "1" "xpos" "63" "ypos" "3" "zpos" "100" "wide" "33" "tall" "18" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "fgcolor_override" "246 237 211 255" } "StartOfflinePracticeButton" { "ControlName" "CExButton" "fieldName" "StartOfflinePracticeButton" "xpos" "150" "ypos" "260" "wide" "150" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_StartPractice" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "startofflinepractice" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "DifficultyLabel" { "ControlName" "CExLabel" "fieldName" "DifficultyLabel" "font" "HudFontSmallest" "labelText" "#TF_Bot_Difficulty" "textAlignment" "east" "xpos" "0" "ypos" "200" "wide" "190" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "fgcolor_override" "246 237 211 255" } "DifficultyComboBox" { "ControlName" "ComboBox" "fieldName" "DifficultyComboBox" "Font" "HudFontSmallestBold" "xpos" "200" "ypos" "200" "zpos" "1" "wide" "100" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "textinsetx" "50" "fgcolor_override" "246 237 211 255" "bgcolor_override" "16 14 14 255" "disabledFgColor_override" "235 226 202 255" "disabledBgColor_override" "51 47 46 255" "selectionColor_override" "51 47 46 255" "selectionTextColor_override" "235 226 202 255" "defaultSelectionBG2Color_override" "51 47 46 255" } "PlayersLabel" { "ControlName" "CExLabel" "fieldName" "PlayersLabel" "font" "HudFontSmallest" "labelText" "#IT_BotAddition_Title" "textAlignment" "east" "xpos" "0" "ypos" "228" "wide" "190" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "fgcolor_override" "246 237 211 255" } "NumPlayersTextEntry" { "ControlName" "TextEntry" "fieldName" "NumPlayersTextEntry" "font" "HudFontSmallest" "textHidden" "0" "textAlignment" "west" "unicode" "1" "wrap" "0" "xpos" "200" "ypos" "230" "zpos" "50" "wide" "22" "tall" "15" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "maxchars" "2" "NumericInputOnly" "1" "selectallonfirstfocus" "1" "bgcolor_override" "16 14 14 255" "fgcolor_override" "246 237 211 255" } "SuggestedPlayerCountLabel" { "ControlName" "CExLabel" "fieldName" "SuggestedPlayerCountLabel" "font" "HudFontSmallest" "labelText" "" "textAlignment" "west" "xpos" "230" "ypos" "230" "zpos" "2" "wide" "100" "tall" "15" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "fgcolor_override" "116 105 92 255" } } ================================================ FILE: resource/ui/training/offlinepractice/practicemodeselection.res ================================================ "resource/training/offlinepractice/practicemodeselection.res" { "GameModeImagePanel" { "ControlName" "ImagePanel" "FieldName" "GameModeImagePanel" "xpos" "60" "ypos" "15" "zpos" "1" "wide" "250" "tall" "250" "visible" "1" "tileImage" "0" "scaleImage" "1" "border" "ButtonBorder" "paintbackgroundtype" "2" "paintbackground" "1" } "GameModeImageBgPanel" { "ControlName" "ImagePanel" "FieldName" "GameModeImageBgPanel" "xpos" "60" "zpos" "0" "wide" "330" "tall" "255" "visible" "1" "tileImage" "0" "scaleImage" "1" "image" "illustrations/bg" } "PrevButton" { "ControlName" "CExButton" "fieldName" "PrevButton" "xpos" "36" "ypos" "105" "zpos" "20" "wide" "18" "tall" "43" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_LessThan" "font" "FontBold14" "textAlignment" "center" "textinsetx" "0" "dulltext" "0" "brighttext" "0" "Command" "goprev" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "NextButton" { "ControlName" "CExButton" "fieldName" "NextButton" "xpos" "396" "ypos" "105" "zpos" "20" "wide" "18" "tall" "43" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_GreaterThan" "font" "FontBold14" "textAlignment" "center" "textinsetx" "0" "dulltext" "0" "brighttext" "0" "Command" "gonext" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } "GameModeLabel" { "ControlName" "CExLabel" "fieldName" "GameModeLabel" "font" "HudFontMediumSmallBold" "labelText" "%gamemode%" "textAlignment" "center" "xpos" "60" "ypos" "10" "wide" "330" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "fgcolor_override" "83 75 66 255" } "CurPageLabel" { "ControlName" "CExLabel" "fieldName" "CurPageLabel" "font" "HudFontSmallBold" "labelText" "%curpage%" "textAlignment" "north" "xpos" "70" "ypos" "10" "zpos" "1" "wide" "40" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "1" "fgcolor_override" "83 75 66 255" } "DescLabel" { "ControlName" "CExLabel" "fieldName" "DescLabel" "font" "HudFontSmallest" "labelText" "%description%" "textAlignment" "center" "xpos" "60" "ypos" "230" "wide" "330" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" "fgcolor_override" "83 75 66 255" } "SelectCurrentGameModeButton" { "ControlName" "CExButton" "fieldName" "SelectCurrentGameModeButton" "xpos" "160" "ypos" "260" "wide" "130" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Select" "font" "FontBold14" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "selectcurrentgamemode" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/upgradeboxdialog.res ================================================ "resource/ui/upgradeboxdialog.res" { "ConfirmDialog" { "ControlName" "Frame" "fieldName" "ConfirmDialog" "xpos" "c-150" "ypos" "140" "wide" "300" "tall" "200" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "PaintBackgroundType" "0" } "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "HudFontMediumBold" "labelText" "#ConfirmTitle" "textAlignment" "north" "xpos" "0" "ypos" "15" "zpos" "1" "wide" "300" "tall" "30" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "ExplanationLabel" { "ControlName" "CExLabel" "fieldName" "ExplanationLabel" "font" "HudFontSmallBold" "labelText" "%text%" "textAlignment" "north" "xpos" "40" "ypos" "50" "zpos" "1" "wide" "220" "tall" "170" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "centerwrap" "1" "fgcolor_override" "200 80 60 255" } "UpgradeButton" { "ControlName" "CExButton" "fieldName" "UpgradeButton" "xpos" "10" "ypos" "0" "zpos" "20" "wide" "135" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#TF_Trial_Upgrade" "font" "HudFontSmallBold" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "upgrade" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" "defaultBgColor_override" "102 122 42 255" "armedBgColor_override" "143 167 57 255" "depressedBgColor_override" "143 167 57 255" "selectedBgColor_override" "143 167 57 255" "pin_to_sibling" "ConfirmButton" "pin_corner_to_sibling" "PIN_CENTER_LEFT" "pin_to_sibling_corner" "PIN_CENTER_RIGHT" } "ConfirmButton" { "ControlName" "CExButton" "fieldName" "ConfirmButton" "xpos" "10" "ypos" "160" "zpos" "20" "wide" "135" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "labelText" "#ConfirmButtonText" "font" "HudFontSmallBold" "textAlignment" "center" "textinsetx" "50" "dulltext" "0" "brighttext" "0" "Command" "confirm" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" } } ================================================ FILE: resource/ui/votehud.res ================================================ "resource/ui/votehud.res" { "VotePassed" { "ControlName" "EditablePanel" "fieldName" "VotePassed" "xpos" "5" "ypos" "c-110" "wide" "150" "tall" "67" "visible" "0" "enabled" "1" "paintborder" "0" "bgcolor_override" "DarkGrey" "PaintBackgroundType" "2" "PassedIcon" { "ControlName" "ImagePanel" "fieldName" "PassedIcon" "xpos" "10" "ypos" "10" "wide" "17" "tall" "17" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "hud/vote_yes" } "PassedTitle" { "ControlName" "Label" "fieldName" "PassedTitle" "xpos" "32" "ypos" "10" "wide" "98" "tall" "17" "visible" "1" "enabled" "1" "labelText" "#GameUI_vote_passed" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "FontRegular12" "wrap" "1" "fgcolor_override" "TanLight" } "PassedResult" { "ControlName" "Label" "fieldName" "PassedResult" "xpos" "10" "ypos" "29" "wide" "130" "tall" "40" "visible" "1" "enabled" "1" "labelText" "%passedresult%" "textAlignment" "north-west" "dulltext" "0" "brighttext" "0" "font" "FontRegular10" "font_minmode" "StreamerMode" "wrap" "1" "fgcolor_override" "TanLight" "noshortcutsyntax" "1" } } "VoteActive" { "ControlName" "EditablePanel" "fieldName" "VoteActive" "xpos" "5" "ypos" "c-110" "wide" "150" "tall" "144" "visible" "0" "enabled" "1" "paintborder" "0" "bgcolor_override" "DarkGrey" "PaintBackgroundType" "2" "Header" { "ControlName" "Label" "fieldName" "Header" "xpos" "10" "ypos" "5" "wide" "130" "tall" "20" "visible" "1" "enabled" "1" "labelText" "%header%" "textAlignment" "north-west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardVerySmall" "font_minmode" "StreamerMode" "wrap" "1" "fgcolor_override" "TanLight" } "Issue" { "ControlName" "Label" "fieldName" "Issue" "xpos" "10" "ypos" "22" "wide" "130" "tall" "40" "visible" "1" "enabled" "1" "labelText" "%voteissue%" "textAlignment" "north-west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardSmall" "font_minmode" "StreamerMode" "fgcolor_override" "TanLight" "wrap" "1" "noshortcutsyntax" "1" } "TargetAvatarImage" { "ControlName" "CAvatarImagePanel" "fieldName" "TargetAvatarImage" "xpos" "10" "ypos" "103" "zpos" "100" "wide" "16" "tall" "16" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "52 48 45 255" } // divider "Divider" { "ControlName" "ImagePanel" "fieldName" "Divider" "xpos" "10" "ypos" "55" "wide" "130" "tall" "1" "fillcolor" "DullWhite" "zpos" "0" } // Temp UI "LabelOption1" { "ControlName" "Label" "fieldName" "LabelOption1" "xpos" "10" "ypos" "57" "wide" "130" "tall" "16" "zpos" "2" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardVerySmall" "fgcolor_override" "TanLight" } "Option1Background_Selected" { "ControlName" "ImagePanel" "fieldName" "Option1Background_Selected" "xpos" "10" "ypos" "57" "wide" "130" "tall" "16" "zpos" "1" "fillcolor" "88 119 140 180" "visible" "1" } "Option1CountLabel" { "ControlName" "Label" "fieldName" "Option1CountLabel" "xpos" "28" "ypos" "113" "wide" "16" "tall" "16" "zpos" "2" "visible" "1" "enabled" "1" "labelText" "Yes" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "ScoreboardSmall" "fgcolor_override" "TanLight" } "LabelOption2" { "ControlName" "Label" "fieldName" "LabelOption2" "xpos" "10" "ypos" "73" "wide" "130" "tall" "16" "zpos" "2" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardVerySmall" "fgcolor_override" "TanLight" } "Option2Background_Selected" { "ControlName" "ImagePanel" "fieldName" "Option2Background_Selected" "xpos" "10" "ypos" "73" "wide" "130" "tall" "16" "zpos" "1" "fillcolor" "88 119 140 180" "visible" "1" } "Option2CountLabel" { "ControlName" "Label" "fieldName" "Option2CountLabel" "xpos" "74" "ypos" "113" "wide" "16" "tall" "16" "zpos" "2" "visible" "1" "enabled" "1" "labelText" "No" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "font" "ScoreboardSmall" "fgcolor_override" "TanLight" } "LabelOption3" { "ControlName" "Label" "fieldName" "LabelOption3" "xpos" "10" "ypos" "89" "wide" "130" "tall" "16" "zpos" "2" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardVerySmall" "fgcolor_override" "TanLight" } "Option3Background_Selected" { "ControlName" "ImagePanel" "fieldName" "Option3Background_Selected" "xpos" "10" "ypos" "89" "wide" "130" "tall" "16" "zpos" "1" "fillcolor" "88 119 140 180" "visible" "0" } "LabelOption4" { "ControlName" "Label" "fieldName" "LabelOption4" "xpos" "10" "ypos" "105" "wide" "130" "tall" "16" "zpos" "2" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardVerySmall" "fgcolor_override" "TanLight" } "Option4Background_Selected" { "ControlName" "ImagePanel" "fieldName" "Option4Background_Selected" "xpos" "10" "ypos" "105" "wide" "130" "tall" "16" "zpos" "1" "fillcolor" "88 119 140 180" "visible" "0" } "LabelOption5" { "ControlName" "Label" "fieldName" "LabelOption5" "xpos" "10" "ypos" "121" "wide" "130" "tall" "16" "zpos" "2" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardVerySmall" "fgcolor_override" "TanLight" } "Option5Background_Selected" { "ControlName" "ImagePanel" "fieldName" "Option5Background_Selected" "xpos" "10" "ypos" "121" "wide" "130" "tall" "16" "zpos" "1" "fillcolor" "88 119 140 180" "visible" "0" } // divider "Divider2" { "ControlName" "ImagePanel" "fieldName" "Divider2" "xpos" "10" "ypos" "95" "wide" "130" "tall" "1" "fillcolor" "TanLight" "zpos" "0" } "VoteCountLabel" { "ControlName" "Label" "fieldName" "VoteCountLabel" "xpos" "10" "ypos" "100" "wide" "140" "tall" "20" "visible" "1" "enabled" "1" "labelText" "#GameUI_vote_current_vote_count" "textAlignment" "north-west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardVerySmall" "fgcolor_override" "TanLight" } // Vote Bar "VoteBar" { "ControlName" "Panel" "fieldName" "VoteBar" "xpos" "11" "ypos" "113" "wide" "130" "tall" "18" "zpos" "2" "visible" "1" "enabled" "1" "box_size" "16" "spacer" "6" "box_inset" "1" "yes_texture" "vgui/hud/vote_yes" "no_texture" "vgui/hud/vote_no" } } // This is sent to the vote caller when they're not able to start the vote "CallVoteFailed" { "ControlName" "EditablePanel" "fieldName" "CallVoteFailed" "xpos" "5" "ypos" "c-110" "wide" "150" "tall" "67" "visible" "0" "enabled" "1" "paintborder" "0" "bgcolor_override" "DarkGrey" "PaintBackgroundType" "2" "FailedIcon" { "ControlName" "ImagePanel" "fieldName" "FailedIcon" "xpos" "10" "ypos" "10" "wide" "17" "tall" "17" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "hud/vote_no" } "FailedTitle" { "ControlName" "Label" "fieldName" "FailedTitle" "xpos" "32" "ypos" "10" "wide" "80" "tall" "17" "visible" "1" "enabled" "1" "labelText" "#GameUI_vote_failed" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardSmall" "wrap" "1" "fgcolor_override" "200 30 30 255" } "FailedReason" { "ControlName" "Label" "fieldName" "FailedReason" "xpos" "10" "ypos" "29" "wide" "140" "tall" "40" "visible" "1" "enabled" "1" "labelText" "%FailedReason%" "textAlignment" "north-west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardVerySmall" "wrap" "1" "fgcolor_override" "TanLight" } } // This is shown to everyone when a vote fails due to lack of votes "VoteFailed" { "ControlName" "EditablePanel" "fieldName" "VoteFailed" "xpos" "5" "ypos" "c-110" "wide" "150" "tall" "67" "visible" "0" "enabled" "1" "paintborder" "0" "bgcolor_override" "DarkGrey" "PaintBackgroundType" "2" "FailedIcon" { "ControlName" "ImagePanel" "fieldName" "FailedIcon" "xpos" "10" "ypos" "10" "wide" "17" "tall" "17" "visible" "1" "enabled" "1" "scaleImage" "1" "image" "hud/vote_no" } "FailedTitle" { "ControlName" "Label" "fieldName" "FailedTitle" "xpos" "32" "ypos" "10" "wide" "98" "tall" "17" "visible" "1" "enabled" "1" "labelText" "#GameUI_vote_failed" "textAlignment" "west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardSmall" "wrap" "1" "fgcolor_override" "200 30 30 255" } "FailedReason" { "ControlName" "Label" "fieldName" "FailedReason" "xpos" "10" "ypos" "29" "wide" "130" "tall" "40" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "north-west" "dulltext" "0" "brighttext" "0" "font" "ScoreboardVerySmall" "wrap" "1" "fgcolor_override" "TanLight" } } "VoteSetupDialog" { "ControlName" "CVoteSetupDialog" "fieldName" "VoteSetupDialog" "xpos" "c-300" "ypos" "c-180" "wide" "600" "tall" "360" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "settitlebarvisible" "0" "paintborder" "0" "bgcolor_override" "HudBlack" "PaintBackground" "1" "PaintBackgroundType" "2" "header_font" "ItemFontNameLarge" "player_font" "Default" "header_fgcolor" "TanLight" "issue_width" "180" "issue_font" "ItemFontNameSmall" "issue_fgcolor" "TanLight" "issue_fgcolor_disabled" "TanDark" "parameter_width" "370" "TitleLabel" { "ControlName" "CExLabel" "fieldName" "TitleLabel" "font" "FontBold18" "labelText" "#TF_Vote_Title" "textAlignment" "north" "xpos" "0" "ypos" "10" "wide" "550" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "wrap" "0" } "VoteSetupList" { "ControlName" "SectionedListPanel" "fieldName" "VoteSetupList" "xpos" "10" "ypos" "38" "zpos" "2" "wide" "180" "tall" "200" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "autoresize" "0" "linespacing" "16" } "VoteParameterList" { "ControlName" "SectionedListPanel" "fieldName" "VoteParameterList" "xpos" "190" "ypos" "38" "zpos" "2" "wide" "409" "wide_minmode" "0" "tall" "280" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "autoresize" "0" "linespacing" "16" } "ComboLabel" { "ControlName" "CExLabel" "fieldName" "ComboLabel" "font" "FontRegular8" "labelText" "%combo_label%" "textAlignment" "east" "xpos" "10" "ypos" "245" "zpos" "1" "wide" "75" "tall" "20" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" } "ComboBox" { "ControlName" "ComboBox" "fieldName" "ComboBox" "Font" "FontRegular10" "xpos" "17" "ypos" "265" "zpos" "1" "wide" "160" "tall" "20" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "1" "textHidden" "0" "editable" "0" "maxchars" "-1" "NumericInputOnly" "0" "unicode" "0" "fgcolor_override" "TanLight" "bgcolor_override" "Black" "disabledFgColor_override" "TanLight" "disabledBgColor_override" "Black" "selectionColor_override" "Black" "selectionTextColor_override" "TanLight" "defaultSelectionBG2Color_override" "TanLight" } "CallVoteButton" { "ControlName" "Button" "fieldName" "CallVoteButton" "xpos" "330" "ypos" "325" "wide" "160" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "0" "tabPosition" "4" "labelText" "#TF_call_vote" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "CallVote" "Default" "0" "font" "FontBold12" } "Button1" { "ControlName" "Button" "fieldName" "Button1" "xpos" "500" "ypos" "325" "wide" "80" "tall" "25" "autoResize" "0" "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "4" "labelText" "#TF_VR_Close" "textAlignment" "center" "dulltext" "0" "brighttext" "0" "Command" "Close" "Default" "0" "font" "FontBold12" } } } ================================================ FILE: resource/ui/vsh_hud.res ================================================ "resource/ui/vsh_hud.res" { "ObjectiveStatusRobotDestruction" { "ControlName" "EditablePanel" "fieldName" "ObjectiveStatusRobotDestruction" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "left_steal_edge_offset" "97" "right_steal_edge_offset" "97" "robot_x_offset" "78" "robot_y_offset" "47" "robot_x_step" "23" "robot_y_step" "0" "color_blue" "84 111 127 255" "color_red" "171 59 59 255" "if_hybrid" { "zpos" "-1" } "robot_kv" { "ControlName" "CTFHudRobotDestruction_RobotIndicator" "xpos" "0" "ypos" "0" "wide" "20" "tall" "20" "visible" "1" "bgcolor_override" "0 0 0 0" "PaintBackgroundType" "0" "paintborder" "0" "AutoResize" "0" "skip_autoresize" "1" } } "alivecounter" { "ControlName" "EditablePanel" "fieldName" "alivecounter" "xpos" "c-30" "ypos" "r90" "zpos" "-10" "wide" "80" "tall" "30" "visible" "1" "background" { "ControlName" "CTFImagePanel" "fieldName" "background" "xpos" "5" "ypos" "7" "zpos" "0" "wide" "50" "tall" "23" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/color_panel_red" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "5" "draw_corner_height" "5" } "playerimage" { "ControlName" "ImagePanel" "fieldName" "playerimage" "xpos" "12" "ypos" "11" "zpos" "3" "wide" "8" "tall" "15" "visible" "1" "enabled" "1" "image" "capture_icon_white" "scaleImage" "1" } } "damagecounter" { "ControlName" "EditablePanel" "fieldName" "damagecounter" "xpos" "c-36" "ypos" "r112" "zpos" "-10" "wide" "80" "tall" "30" "visible" "1" "background" { "ControlName" "CTFImagePanel" "fieldName" "background" "xpos" "5" "ypos" "7" "zpos" "0" "wide" "62" "tall" "23" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "replay/thinlineborder" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "5" "draw_corner_height" "5" } "dmg_icon" { "ControlName" "ImagePanel" "fieldName" "dmg_icon" "xpos" "9" "ypos" "11" "zpos" "3" "wide" "15" "tall" "15" "visible" "1" "enabled" "1" "image" "vssaxtonhale/dmg_icon" "scaleImage" "1" } } "ScoreContainer" { "fieldName" "ScoreContainer" "ControlName" "EditablePanel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "f0" "scaleimage" "0" "visible" "1" "enabled" "1" "BorderImage1" { "ControlName" "ImagePanel" "fieldName" "BorderImage1" "xpos" "c-100" "ypos" "38" "zpos" "1" "wide" "200" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "Image" "vssaxtonhale/boss_bar_layer1" "scaleImage" "1" } "ProgressBarContainer" { "fieldName" "ProgressBarContainer" "ControlName" "EditablePanel" "xpos" "c-100" "ypos" "38" "zpos" "1" "wide" "183" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "BlueProgressBarFill" { "ControlName" "EditablePanel" "fieldName" "BlueProgressBarFill" "xpos" "-10" "ypos" "16" "zpos" "5" "wide" "218" "tall" "18" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "scaleImage" "0" "Image" "vssaxtonhale/boss_bar" } } "BlueScoreValueContainer" { "ControlName" "EditablePanel" "fieldName" "BlueScoreValueContainer" "xpos" "c-100" "ypos" "53" "zpos" "20" "wide" "200" "tall" "100" "visible" "1" "enabled" "1" "bgcolor_override" "0 0 0 0" "proportionalToParent" "1" "Score" { "ControlName" "CExLabel" "fieldName" "Score" "xpos" "c-100" "ypos" "0" "zpos" "28" "wide" "200" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%score%" "font" "HudFontMediumSmallBold" "fgcolor" "TanLight" "proportionalToParent" "1" } "ScoreShadow" { "ControlName" "CExLabel" "fieldName" "ScoreShadow" "xpos" "c-99" "ypos" "1" "zpos" "27" "wide" "200" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%score%" "font" "HudFontMediumSmallBold" "fgcolor" "Black" "proportionalToParent" "1" } } "RedScoreValueContainer" { "ControlName" "EditablePanel" "fieldName" "RedScoreValueContainer" "xpos" "c-97" "ypos" "r81" "zpos" "20" "wide" "200" "tall" "100" "visible" "1" "enabled" "1" "bgcolor_override" "0 0 0 0" "proportionalToParent" "1" "Score" { "ControlName" "CExLabel" "fieldName" "Score" "xpos" "c-100" "ypos" "0" "zpos" "28" "wide" "200" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%score%" "font" "CenterPrintText" "fgcolor" "TanLight" "proportionalToParent" "1" } "ScoreShadow" { "ControlName" "CExLabel" "fieldName" "ScoreShadow" "xpos" "c-99" "ypos" "1" "zpos" "27" "wide" "200" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%score%" "font" "CenterPrintText" "fgcolor" "Black" "proportionalToParent" "1" } } } } ================================================ FILE: resource/ui/vsh_hud_hell.res ================================================ "resource/ui/vsh_hud_hell.res" { "ObjectiveStatusRobotDestruction" { "ControlName" "EditablePanel" "fieldName" "ObjectiveStatusRobotDestruction" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "left_steal_edge_offset" "97" "right_steal_edge_offset" "97" "robot_x_offset" "78" "robot_y_offset" "47" "robot_x_step" "23" "robot_y_step" "0" "color_blue" "84 111 127 255" "color_red" "171 59 59 255" "if_hybrid" { "zpos" "-1" } "robot_kv" { "ControlName" "CTFHudRobotDestruction_RobotIndicator" "xpos" "0" "ypos" "0" "wide" "20" "tall" "20" "visible" "1" "bgcolor_override" "0 0 0 0" "PaintBackgroundType" "0" "paintborder" "0" "AutoResize" "0" "skip_autoresize" "1" } } "alivecounter" { "ControlName" "EditablePanel" "fieldName" "alivecounter" "xpos" "c-30" "ypos" "r80" "zpos" "-10" "wide" "60" "tall" "30" "visible" "1" "background" { "ControlName" "CTFImagePanel" "fieldName" "background" "xpos" "5" "ypos" "7" "zpos" "0" "wide" "50" "tall" "23" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "../hud/color_panel_blu" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "5" "draw_corner_height" "5" } "playerimage" { "ControlName" "ImagePanel" "fieldName" "playerimage" "xpos" "12" "ypos" "11" "zpos" "3" "wide" "8" "tall" "15" "visible" "1" "enabled" "1" "image" "capture_icon_white" "scaleImage" "1" } } "damagecounter" { "ControlName" "EditablePanel" "fieldName" "damagecounter" "xpos" "c-36" "ypos" "r112" "zpos" "-10" "wide" "80" "tall" "30" "visible" "1" "background" { "ControlName" "CTFImagePanel" "fieldName" "background" "xpos" "5" "ypos" "7" "zpos" "0" "wide" "62" "tall" "23" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "image" "replay/thinlineborder" "src_corner_height" "23" "src_corner_width" "23" "draw_corner_width" "5" "draw_corner_height" "5" } "dmg_icon" { "ControlName" "ImagePanel" "fieldName" "dmg_icon" "xpos" "9" "ypos" "11" "zpos" "3" "wide" "15" "tall" "15" "visible" "1" "enabled" "1" "image" "vssaxtonhale_hell/dmg_icon" "scaleImage" "1" } } "ScoreContainer" { "fieldName" "ScoreContainer" "ControlName" "EditablePanel" "xpos" "0" "ypos" "0" "zpos" "0" "wide" "f0" "tall" "f0" "scaleimage" "0" "visible" "1" "enabled" "1" "BorderImage2" { "ControlName" "ImagePanel" "fieldName" "BorderImage2" "xpos" "c-100" "ypos" "42" "zpos" "3" "wide" "200" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "Image" "vssaxtonhale_hell/boss_bar_layer3" "scaleImage" "1" } "BorderImage1" { "ControlName" "ImagePanel" "fieldName" "BorderImage1" "xpos" "c-100" "ypos" "42" "zpos" "1" "wide" "200" "tall" "50" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "Image" "vssaxtonhale_hell/boss_bar_layer1" "scaleImage" "1" } "ProgressBarContainer" { "fieldName" "ProgressBarContainer" "ControlName" "EditablePanel" "xpos" "c-100" "ypos" "42" "zpos" "1" "wide" "183" "tall" "50" "visible" "1" "enabled" "1" "proportionalToParent" "1" "RedProgressBarFill" { "ControlName" "EditablePanel" "fieldName" "RedProgressBarFill" "xpos" "-10" "ypos" "16" "zpos" "10" "wide" "218" "tall" "18" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "scaleImage" "0" "Image" "vssaxtonhale_hell/boss_bar_layer2" } "BlueProgressBarFill" { "ControlName" "EditablePanel" "fieldName" "BlueProgressBarFill" "xpos" "-10" "ypos" "16" "zpos" "5" "wide" "218" "tall" "18" "autoResize" "1" "pinCorner" "0" "visible" "1" "enabled" "1" "tabPosition" "0" "scaleImage" "0" "Image" "vssaxtonhale_hell/boss_bar" } } "BlueScoreValueContainer" { "ControlName" "EditablePanel" "fieldName" "BlueScoreValueContainer" "xpos" "c-100" "ypos" "57" "zpos" "20" "wide" "200" "tall" "100" "visible" "1" "enabled" "1" "bgcolor_override" "0 0 0 0" "proportionalToParent" "1" "Score" { "ControlName" "CExLabel" "fieldName" "Score" "xpos" "c-100" "ypos" "0" "zpos" "28" "wide" "200" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%score%" "font" "HudFontMediumSmallBold" "fgcolor" "TanLight" "proportionalToParent" "1" } "ScoreShadow" { "ControlName" "CExLabel" "fieldName" "ScoreShadow" "xpos" "c-99" "ypos" "1" "zpos" "27" "wide" "200" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%score%" "font" "HudFontMediumSmallBold" "fgcolor" "Black" "proportionalToParent" "1" } } } "CountdownContainer" { "ControlName" "EditablePanel" "fieldName" "CountdownContainer" "xpos" "c-97" "ypos" "r71" "zpos" "20" "wide" "200" "tall" "100" "visible" "0" "enabled" "1" "CountdownLabelTime" { "ControlName" "CExLabel" "fieldName" "CountdownLabelTime" "xpos" "c-100" "ypos" "0" "zpos" "28" "wide" "200" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%countdowntime%" "font" "CenterPrintText" "fgcolor" "TanLight" "proportionalToParent" "1" } "CountdownLabelTimeTimeShadow" { "ControlName" "CExLabel" "fieldName" "CountdownLabelTimeTimeShadow" "xpos" "c-99" "ypos" "1" "zpos" "27" "wide" "200" "tall" "20" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%countdowntime%" "font" "CenterPrintText" "fgcolor" "Black" "proportionalToParent" "1" } } } ================================================ FILE: resource/ui/wavecompletesummarypanel.res ================================================ "resource/ui/wavecompletepanel.res" { "Background" { "ControlName" "ImagePanel" "fieldName" "Background" "xpos" "0" "ypos" "0" "wide" "200" "tall" "75" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "fillcolor" "HudBlack" "src_corner_height" "22" "src_corner_width" "22" "draw_corner_width" "0" "draw_corner_height" "0" } "WaveCompleteContainer" { "ControlName" "EditablePanel" "fieldName" "WaveCompleteContainer" "xpos" "0" "ypos" "0" "wide" "200" "tall" "30" "visible" "1" "paintborder" "1" "border" "DarkRedTeamBorder" "PaintBackgroundType" "0" "bgcolor_override" "HUDRedTeamSolid" "WaveCompleteLabel" { "ControlName" "CExLabel" "fieldName" "WaveCompleteLabel" "font" "HudFontMediumSmallBold" "textAlignment" "center" "labelText" "%titletext%" "xpos" "0" "ypos" "0" "wide" "200" "tall" "30" "visible" "1" "enabled" "1" "fgcolor" "TanLight" } } "CreditContainer" { "ControlName" "EditablePanel" "fieldName" "CreditContainer" "xpos" "0" "ypos" "28" "wide" "400" "tall" "400" "autoResize" "1" "visible" "1" "CreditCollectedTextLabel" { "ControlName" "CExLabel" "fieldName" "CreditCollectedTextLabel" "font" "FontRegular12" "labelText" "#TF_PVE_Currency" "textAlignment" "north-east" "xpos" "0" "ypos" "5" "wide" "76" "tall" "20" "fgcolor" "TanLight" } "CreditCollectedCountLabel" { "ControlName" "CExLabel" "fieldName" "CreditCollectedCountLabel" "font" "FontRegular12" "labelText" "%creditscollected%" "textAlignment" "north-east" "xpos" "78" "ypos" "5" "wide" "30" "tall" "20" "fgcolor" "CreditsGreen" } "CreditMissedTextLabel" { "ControlName" "CExLabel" "fieldName" "CreditMissedTextLabel" "font" "FontRegular12" "labelText" "#TF_PVE_Missed" "textAlignment" "north-east" "xpos" "0" "ypos" "17" "wide" "76" "tall" "20" "fgcolor" "TanLight" } "CreditMissedCountLabel" { "ControlName" "CExLabel" "fieldName" "CreditMissedCountLabel" "font" "FontRegular12" "labelText" "%creditsmissed%" "textAlignment" "north-east" "xpos" "78" "ypos" "17" "wide" "30" "tall" "20" "fgcolor" "RedSolid" } "CreditBonusTextLabel" { "ControlName" "CExLabel" "fieldName" "CreditBonusTextLabel" "font" "FontRegular12" "labelText" "#TF_PVE_Bonus" "textAlignment" "north-east" "xpos" "0" "ypos" "29" "wide" "76" "tall" "20" "fgcolor" "TanLight" } "CreditBonusCountLabel" { "ControlName" "CExLabel" "fieldName" "CreditBonusCountLabel" "font" "FontRegular12" "labelText" "%creditbonus%" "textAlignment" "north-east" "xpos" "78" "ypos" "29" "wide" "30" "tall" "20" "fgcolor" "CreditsGreen" } } "RatingContainer" { "ControlName" "EditablePanel" "fieldName" "RatingContainer" "xpos" "78" "ypos" "25" "wide" "400" "tall" "400" "autoResize" "1" "visible" "1" "RatingLabel" { "ControlName" "CExLabel" "fieldName" "RatingLabel" "font" "FontRegular12" "labelText" "#TF_PVE_Rating" "textAlignment" "north" "xpos" "0" "ypos" "8" "wide" "115" "tall" "20" "fgcolor" "TanLight" } "RatingText" { "ControlName" "CExLabel" "fieldName" "RatingText" "font" "FontBold20" "labelText" "%ratingscore%" "textAlignment" "center" "xpos" "0" "ypos" "14" "wide" "115" "tall" "30" "fgcolor" "TanLight" } } "RespecBackground" { "ControlName" "ScalableImagePanel" "fieldName" "RespecBackground" "xpos" "0" "ypos" "75" "wide" "250" "tall" "25" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "1" "image" "../HUD/tournament_panel_brown" "src_corner_height" "22" "src_corner_width" "22" "draw_corner_width" "0" "draw_corner_height" "0" } "RespecContainer" { "ControlName" "EditablePanel" "fieldName" "RespecContainer" "xpos" "0" "ypos" "75" "wide" "250" "tall" "25" "visible" "1" "PaintBackgroundType" "0" "RespecTextLabelWin" { "ControlName" "CExLabel" "fieldName" "RespecTextLabelWin" "font" "HudFontSmall" "labelText" "#TF_PVE_Respecs" "textAlignment" "center" "xpos" "0" "ypos" "3" "wide" "160" "tall" "20" "fgcolor" "TanLight" } "RespecCountLabel" { "ControlName" "CExLabel" "fieldName" "RespecCountLabel" "font" "HudFontSmall" "labelText" "%respeccount%" "textAlignment" "center" "xpos" "145" "ypos" "3" "wide" "30" "tall" "20" "fgcolor" "CreditsGreen" } } } ================================================ FILE: resource/ui/wavestatuspanel.res ================================================ "resource/ui/wavestatuspanel.res" { "Background" { "ControlName" "ScalableImagePanel" "fieldName" "Background" "xpos" "9999" "ypos" "9999" "zpos" "-1" "wide" "200" "tall" "35" "autoResize" "0" "pinCorner" "0" "visible" "0" "enabled" "0" "image" "../HUD/tournament_panel_brown" "src_corner_height" "22" "src_corner_width" "22" "draw_corner_width" "0" "draw_corner_height" "0" } "WaveCountLabel" { "ControlName" "CExLabel" "fieldName" "WaveCountLabel" "font" "FontBold12" "fgcolor" "TanLight" "xpos" "136" "ypos" "5" "zpos" "3" "wide" "200" "tall" "15" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%wave_count%" } "WaveCountLabelShadow" { "ControlName" "CExLabel" "fieldName" "WaveCountLabelShadow" "font" "FontBold12" "fgcolor" "Black" "xpos" "-1" "ypos" "-1" "zpos" "3" "wide" "200" "tall" "15" "visible" "1" "enabled" "1" "textAlignment" "center" "labelText" "%wave_count%" "pin_to_sibling" "WaveCountLabel" } "SeparatorBar" { "ControlName" "Panel" "fieldName" "SeparatorBar" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "1" "tall" "30" "visible" "0" "enabled" "1" "scaleImage" "1" "PaintBackgroundType" "2" "bgcolor_override" "TanLight" if_verbose { "visible" "1" } } "SupportLabel" { "ControlName" "CExLabel" "fieldName" "SupportLabel" "font" "FontBold12" "fgcolor" "TanLight" "xpos" "55" "ypos" "6" "zpos" "3" "wide" "60" "tall" "15" "visible" "0" "enabled" "1" "textAlignment" "west" "labelText" "#TF_MVM_Support" if_verbose { "visible" "1" } } "ProgressBar" { "ControlName" "ScalableImagePanel" "fieldName" "ProgressBar" "xpos" "277" "ypos" "7" "zpos" "3" "wide" "118" "tall" "9" "visible" "1" "enabled" "1" "image" "../HUD/tournament_panel_blu" "src_corner_height" "22" "src_corner_width" "22" "draw_corner_width" "5" "draw_corner_height" "5" } "ProgressBarBG" { "ControlName" "ScalableImagePanel" "fieldName" "ProgressBarBG" "xpos" "276" "ypos" "6" "zpos" "0" "wide" "120" "tall" "12" "visible" "1" "enabled" "1" "image" "../HUD/tournament_panel_tan" "src_corner_height" "22" "src_corner_width" "22" "draw_corner_width" "5" "draw_corner_height" "5" } } ================================================ FILE: resource/ui/winpanel.res ================================================ "resource/ui/winpanel.res" { "TeamScoresPanel" { "ControlName" "EditablePanel" "fieldName" "TeamScoresPanel" "xpos" "0" "ypos" "0" "wide" "200" "tall" "40" "visible" "1" "BlueScoreBG" { "ControlName" "EditablePanel" "fieldName" "BlueScoreBG" "xpos" "9999" } "RedScoreBG" { "ControlName" "EditablePanel" "fieldName" "RedScoreBG" "xpos" "9999" } "BLUBG" { "ControlName" "ImagePanel" "fieldName" "BLUBG" "xpos" "0" "ypos" "16" "zpos" "-1" "wide" "100" "tall" "21" "visible" "1" "enabled" "1" "fillcolor" "HUDBlueTeamSolid" } "BLUBG2" { "ControlName" "ImagePanel" "fieldName" "BLUBG2" "xpos" "0" "ypos" "18" "zpos" "-2" "wide" "100" "tall" "22" "visible" "1" "enabled" "1" "fillcolor" "HUDBlueTeamDark" } "REDBG" { "ControlName" "ImagePanel" "fieldName" "REDBG" "xpos" "100" "ypos" "16" "zpos" "-1" "wide" "100" "tall" "21" "visible" "1" "enabled" "1" "fillcolor" "HUDRedTeamSolid" } "REDBG2" { "ControlName" "ImagePanel" "fieldName" "REDBG2" "xpos" "100" "ypos" "18" "zpos" "-2" "wide" "100" "tall" "22" "visible" "1" "enabled" "1" "fillcolor" "HUDRedTeamDark" } "BlueTeamLabel" { "ControlName" "CExLabel" "fieldName" "BlueTeamLabel" "font" "FontBold20" "labelText" "%blueteamname%" "textAlignment" "west" "xpos" "5" "ypos" "12" "zpos" "3" "wide" "56" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "BlueTeamLabelShadow" { "ControlName" "CExLabel" "fieldName" "BlueTeamLabelShadow" "font" "FontBold20" "fgcolor" "Black" "labelText" "%blueteamname%" "textAlignment" "west" "xpos" "-2" "ypos" "-2" "zpos" "3" "wide" "56" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "BlueTeamLabel" } "BlueTeamScore" { "ControlName" "CExLabel" "fieldName" "BlueTeamScore" "font" "FontBold37" "labelText" "%blueteamscore%" "textAlignment" "east" "xpos" "32" "ypos" "10" "zpos" "3" "wide" "65" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "BlueTeamScoreShadow" { "ControlName" "CExLabel" "fieldName" "BlueTeamScoreShadow" "font" "FontBold37" "fgcolor" "Black" "labelText" "%blueteamscore%" "textAlignment" "east" "xpos" "-2" "ypos" "-2" "zpos" "3" "wide" "65" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "BlueTeamScore" } "BlueLeaderAvatar" { "ControlName" "CAvatarImagePanel" "fieldName" "BlueLeaderAvatar" "xpos" "2" "ypos" "2" "zpos" "5" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HUDBlueTeamDark" } "BlueLeaderAvatarBG" { "ControlName" "EditablePanel" "fieldName" "BlueLeaderAvatarBG" "xpos" "0" "ypos" "0" "zpos" "4" "wide" "39" "tall" "39" "visible" "1" "PaintBackgroundType" "0" "bgcolor_override" "HUDBlueTeamDark" } "RedTeamLabel" { "ControlName" "CExLabel" "fieldName" "RedTeamLabel" "font" "FontBold20" "labelText" "%redteamname%" "textAlignment" "east" "xpos" "138" "ypos" "12" "zpos" "3" "wide" "56" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "RedTeamLabelShadow" { "ControlName" "CExLabel" "fieldName" "RedTeamLabelShadow" "font" "FontBold20" "fgcolor" "Black" "labelText" "%redteamname%" "textAlignment" "east" "xpos" "-2" "ypos" "-2" "zpos" "3" "wide" "56" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "RedTeamLabel" } "RedTeamScore" { "ControlName" "CExLabel" "fieldName" "RedTeamScore" "font" "FontBold37" "labelText" "%redteamscore%" "textAlignment" "west" "xpos" "105" "ypos" "10" "zpos" "3" "wide" "65" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" } "RedTeamScoreShadow" { "ControlName" "CExLabel" "fieldName" "RedTeamScoreShadow" "font" "FontBold37" "fgcolor" "Black" "labelText" "%redteamscore%" "textAlignment" "west" "xpos" "-2" "ypos" "-2" "zpos" "3" "wide" "65" "tall" "30" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "pin_to_sibling" "RedTeamScore" } "RedLeaderAvatar" { "ControlName" "CAvatarImagePanel" "fieldName" "RedLeaderAvatar" "xpos" "164" "ypos" "2" "zpos" "5" "wide" "35" "tall" "35" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "HUDRedTeamDark" } "RedLeaderAvatarBG" { "ControlName" "EditablePanel" "fieldName" "RedLeaderAvatarBG" "xpos" "162" "ypos" "0" "zpos" "4" "wide" "39" "tall" "39" "visible" "1" "PaintBackgroundType" "0" "bgcolor_override" "HUDRedTeamDark" } } "WinPanelBGBorder" { "ControlName" "EditablePanel" "fieldName" "WinPanelBGBorder" "xpos" "cs-0.5" "ypos" "70" "zpos" "0" "wide" "p0.94" "tall" "185" "visible" "0" "enabled" "1" "scaleImage" "1" "border" "TFFatLineBorderBlueBG" "proportionaltoparent" "1" } "WinPanelBG2" { "ControlName" "EditablePanel" "fieldName" "WinPanelBG2" "xpos" "0" "ypos" "36" "zpos" "-3" "wide" "200" "tall" "125" "visible" "1" "enabled" "1" "paintborder" "0" "bgcolor_override" "16 16 16 240" "PaintBackgroundType" "2" } "WinningTeamLabel" { "ControlName" "CExLabel" "fieldName" "WinningTeamLabel" "font" "FontRegular10" "xpos" "5" "ypos" "41" "zpos" "1" "wide" "190" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%WinningTeamLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" } "AdvancingTeamLabel" { "ControlName" "CExLabel" "fieldName" "AdvancingTeamLabel" "font" "FontRegular10" "xpos" "10" "ypos" "41" "zpos" "1" "wide" "185" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%AdvancingTeamLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" } "WinReasonLabel" { "ControlName" "CExLabel" "fieldName" "WinReasonLabel" "xpos" "9999" } "DetailsLabel" { "ControlName" "CExLabel" "fieldName" "DetailsLabel" "font" "FontRegular10" "xpos" "10" "ypos" "132" "zpos" "1" "wide" "185" "tall" "12" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "%DetailsLabel%" "textAlignment" "Center" "dulltext" "0" "brighttext" "0" } "ShadedBar" { "ControlName" "ImagePanel" "fieldName" "ShadedBar" "xpos" "9999" } "TopPlayersLabel" { "ControlName" "CExLabel" "fieldName" "TopPlayersLabel" "xpos" "9999" } "PointsThisRoundLabel" { "ControlName" "CExLabel" "fieldName" "PointsThisRoundLabel" "xpos" "9999" } "HorizontalLine" { "ControlName" "ImagePanel" "fieldName" "HorizontalLine" "xpos" "9999" } "Player1Avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "Player1Avatar" "xpos" "10" "ypos" "55" "zpos" "3" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "52 48 45 255" } "Player1Name" { "ControlName" "CExLabel" "fieldName" "Player1Name" "font" "FontRegular10" "xpos" "29" "ypos" "55" "zpos" "3" "wide" "100" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player1Class" { "ControlName" "CExLabel" "fieldName" "Player1Class" "font" "FontRegular10" "xpos" "130" "ypos" "55" "zpos" "3" "wide" "45" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player1Score" { "ControlName" "CExLabel" "fieldName" "Player1Score" "font" "FontRegular10" "xpos" "180" "ypos" "55" "zpos" "3" "wide" "20" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player2Avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "Player2Avatar" "xpos" "10" "ypos" "70" "zpos" "3" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "52 48 45 255" } "Player2Name" { "ControlName" "CExLabel" "fieldName" "Player2Name" "font" "FontRegular10" "xpos" "29" "ypos" "70" "zpos" "3" "wide" "100" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player2Class" { "ControlName" "CExLabel" "fieldName" "Player2Class" "font" "FontRegular10" "xpos" "130" "ypos" "70" "zpos" "3" "wide" "45" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player2Score" { "ControlName" "CExLabel" "fieldName" "Player2Score" "font" "FontRegular10" "xpos" "180" "ypos" "70" "zpos" "3" "wide" "20" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player3Avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "Player3Avatar" "xpos" "10" "ypos" "85" "zpos" "3" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "52 48 45 255" } "Player3Name" { "ControlName" "CExLabel" "fieldName" "Player3Name" "font" "FontRegular10" "xpos" "29" "ypos" "85" "zpos" "3" "wide" "100" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player3Class" { "ControlName" "CExLabel" "fieldName" "Player3Class" "font" "FontRegular10" "xpos" "130" "ypos" "85" "zpos" "3" "wide" "45" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "Player3Score" { "ControlName" "CExLabel" "fieldName" "Player3Score" "font" "FontRegular10" "xpos" "180" "ypos" "85" "zpos" "3" "wide" "20" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "KillStreakLeaderLabel" { "ControlName" "CExLabel" "fieldName" "KillStreakLeaderLabel" "font" "FontRegular10" "xpos" "0" "ypos" "100" "zpos" "3" "wide" "200" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "#Winpanel_KillStreakLeader" "textAlignment" "center" "dulltext" "0" "brighttext" "0" } "KillStreakMaxCountLabel" { "ControlName" "CExLabel" "fieldName" "KillStreakMaxCountLabel" "xpos" "9999" } "HorizontalLine2" { "ControlName" "ImagePanel" "fieldName" "HorizontalLine2" "xpos" "9999" } "KillStreakPlayer1Badge" { "ControlName" "CTFBadgePanel" "fieldName" "KillStreakPlayer1Badge" "xpos" "9999" } "KillStreakPlayer1Avatar" { "ControlName" "CAvatarImagePanel" "fieldName" "KillStreakPlayer1Avatar" "xpos" "10" "ypos" "115" "zpos" "3" "wide" "14" "tall" "14" "visible" "1" "enabled" "1" "image" "" "scaleImage" "1" "color_outline" "52 48 45 255" } "KillStreakPlayer1Name" { "ControlName" "CExLabel" "fieldName" "KillStreakPlayer1Name" "font" "FontRegular10" "xpos" "29" "ypos" "115" "zpos" "3" "wide" "100" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "KillStreakPlayer1Class" { "ControlName" "CExLabel" "fieldName" "KillStreakPlayer1Class" "font" "FontRegular10" "xpos" "130" "ypos" "115" "zpos" "3" "wide" "45" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } "KillStreakPlayer1Score" { "ControlName" "CExLabel" "fieldName" "KillStreakPlayer1Score" "font" "FontRegular10" "xpos" "180" "ypos" "115" "zpos" "3" "wide" "20" "tall" "14" "autoResize" "0" "pinCorner" "0" "visible" "1" "enabled" "1" "labelText" "" "textAlignment" "west" "dulltext" "0" "brighttext" "0" } } ================================================ FILE: scripts/hudanimations_custom.txt ================================================ // Bonus Health Pulse event HudHealthBonusPulse { // RunEvent HudHealthBonusBox 0.0 RunEvent HudHealthBonusText 0.0 RunEvent HudHealthBonusPulseLoop 0.4 } event HudHealthBonusPulseStop { StopEvent HudHealthBonusPulse 0.0 StopEvent HudHealthBonusPulseLoop 0.0 // RunEvent HudHealthStopBox 0.0 RunEvent HudHealthStopText 0.0 } //================================================================================== // Low Health Pulse event HudHealthDyingPulse { // RunEvent HudHealthDyingBox 0.0 RunEvent HudHealthDyingText 0.0 RunEvent HudHealthDyingPulseLoop 0.4 } event HudHealthDyingPulseStop { StopEvent HudHealthDyingPulse 0.0 StopEvent HudHealthDyingPulseLoop 0.0 // RunEvent HudHealthStopBox 0.0 RunEvent HudHealthStopText 0.0 } //================================================================================== //Low Ammo Pulse event HudLowAmmoPulse { // RunEvent HudAmmoLowBox 0.0 RunEvent HudAmmoLowText 0.0 RunEvent HudLowAmmoPulseLoop 0.4 } event HudLowAmmoPulseStop { StopEvent HudLowAmmoPulse 0.0 StopEvent HudLowAmmoPulseLoop 0.0 // RunEvent HudAmmoStopBox 0.0 RunEvent HudAmmoStopText 0.0 } //================================================================================== event HudMedicCharged { Animate ChargeMeter FgColor "UberCharge" Linear 0.0 0.1 Animate ChargeMeter FgColor "UberChargePulse" Linear 0.3 0.4 Animate ChargeLabel FgColor "UberCharge" Linear 0.0 0.1 Animate ChargeLabel FgColor "UberChargePulse" Linear 0.3 0.4 RunEvent HudMedicChargedLoop 0.6 } event HudMedicChargedStop { StopEvent HudMedicCharged 0.0 StopEvent HudMedicChargedLoop 0.0 Animate ChargeMeter FgColor "UberCharge" Linear 0.0 0.0001 Animate ChargeLabel FgColor "TanLight" Accel 0.0 0.0 } //================================================================================== // Spy Disguise event HudSpyDisguiseChanged { Animate PlayerStatusSpyOutlineImage Alpha "200" Linear 0.0 0.2 Animate PlayerStatusSpyOutlineImage Position "100 r145" Linear 0.0 0.2 Animate PlayerStatusSpyOutlineImage Size "120 120" Linear 0.0 0.2 RunEvent HudSpyDisguiseHide 0.7 } event HudSpyDisguiseHide { Animate PlayerStatusSpyOutlineImage Alpha "0" Linear 0.2 0.1 Animate PlayerStatusSpyOutlineImage Position "0 r0" Linear 0.0 0.2 Animate PlayerStatusSpyOutlineImage Size "0 0" Linear 0.0 0.2 } //================================================================================== event CompetitiveGame_RestoreChatWindow { // Fix stuck animations RunEvent HudHealthDyingPulseStop 0.1 RunEvent HudHealthBonusPulseStop 0.1 RunEvent HudLowAmmoPulseStop 0.1 RunEvent HudMedicChargedStop 0.1 } //================================================================================== event TrainingHudBounce { Animate ObjectiveStatusTraining Position "c-160 r167" Linear 0 0 Animate ObjectiveStatusTraining Position "c-160 r107" Bounce 0.0 2.0 } //================================================================================== event TeamStatus_PlayerDead { SetVisible respawntime 1 0 } event TeamStatus_PlayerAlive { SetVisible respawntime 0 0.2 } //================================================================================== event MenuPulse { Animate HudMenu Blur "7" Linear 0.0 0.1 Animate HudMenu Blur "2" Deaccel 0.1 0.1 Animate HudMenu Blur "7" Linear 0.2 0.1 Animate HudMenu Blur "2" Deaccel 0.3 0.1 Animate HudMenu Blur "7" Linear 0.4 0.1 Animate HudMenu Blur "2" Deaccel 0.5 0.1 Animate HudMenu Blur "1" Deaccel 0.6 0.4 RunEvent UberTimerHide 0.2 } event MenuClose { Animate HudMenu Alpha "0" Linear 0.0 0.2 Animate HudMenu SelectionAlpha "0" Linear 0.0 0.2 Animate HudMenu FGColor "Blank" Linear 0.0 0.2 Animate HudMenu MenuColor "Blank" Linear 0.0 0.2 Animate HudMenu ItemColor "Blank" Linear 0.0 0.2 RunEvent UberTimer 0.0 } event UberTimerRun { Animate UberCounterBG Tall "2" Linear 0.1 0.001 Animate UberCounter BGColor "255 0 0 255" Linear 0.0 0.001 Animate UberCounter Wide "110" Linear 0.0 55.0 Animate UberCounter BGColor "127 127 0 255" Linear 40.0 0.001 Animate UberCounter BGColor "0 255 0 255" Linear 55.0 0.001 RunEvent UberTimerHide 60.0 } event UberTimerHide { StopEvent UberTimerRun 0.0 Animate UberCounterBG Tall "0" Linear 0.0 0.0 Animate UberCounter Wide "0" Linear 0.0 0.0 } event UberTimer { } //================================================================================== event CompetitiveGame_LowerChatWindow { } event HudTournament_MoveChatWindow { } event HudCartAlarmPulse{} ================================================ FILE: scripts/hudanimations_health_ammo.txt ================================================ event HudHealthBonusBox { Animate HealthBG BgColor "Overheal" Accel 0.0 0.0 } event HudHealthDyingBox { Animate HealthBG BgColor "LowHealth" Accel 0.0 0.0 } event HudHealthStopBox { Animate HealthBG BgColor "Transparent" Accel 0.0 0.0 } //======================================================================================== event HudHealthBonusText { Animate PlayerHealthValue FgColor "Overheal" Accel 0.0 0.0 Animate PlayerHealthShadow FgColor "OverhealShadow" Accel 0.0 0.0 Animate TargetHealthValue FgColor "Overheal" Accel 0.0 0.0 Animate TargetHealthShadow FgColor "OverhealShadow" Accel 0.0 0.0 Animate SpecHealthValue FgColor "Overheal" Accel 0.0 0.0 Animate SpecHealthShadow FgColor "OverhealShadow" Accel 0.0 0.0 } event HudHealthDyingText { Animate PlayerHealthValue FgColor "LowHealth" Accel 0.0 0.0 Animate PlayerHealthShadow FgColor "LowHealthShadow" Accel 0.0 0.0 Animate TargetHealthValue FgColor "LowHealth" Accel 0.0 0.0 Animate TargetHealthShadow FgColor "LowHealthShadow" Accel 0.0 0.0 Animate SpecHealthValue FgColor "LowHealth" Accel 0.0 0.0 Animate SpecHealthShadow FgColor "LowHealthShadow" Accel 0.0 0.0 } event HudHealthStopText { Animate PlayerHealthValue FgColor "TanLight" Accel 0.0 0.0 Animate PlayerHealthShadow FgColor "Black" Accel 0.0 0.0 Animate TargetHealthValue FgColor "TanLight" Accel 0.0 0.0 Animate TargetHealthShadow FgColor "Black" Accel 0.0 0.0 Animate SpecHealthValue FgColor "TanLight" Accel 0.0 0.0 Animate SpecHealthShadow FgColor "Black" Accel 0.0 0.0 } //======================================================================================== event HudAmmoLowBox { Animate AmmoBG BgColor "LowAmmo" Accel 0.0 0.0 } event HudAmmoStopBox { Animate AmmoBG BgColor "Transparent" Accel 0.0 0.0 } //======================================================================================== event HudAmmoLowText { Animate AmmoInClip FgColor "LowAmmo" Accel 0.0 0.0 Animate AmmoInClipShadow FgColor "LowAmmoShadow" Accel 0.0 0.0 Animate AmmoInReserve FgColor "LowAmmo" Accel 0.0 0.0 Animate AmmoInReserveShadow FgColor "LowAmmoShadow" Accel 0.0 0.0 Animate AmmoNoClip FgColor "LowAmmo" Accel 0.0 0.0 Animate AmmoNoClipShadow FgColor "LowAmmoShadow" Accel 0.0 0.0 } event HudAmmoStopText { Animate AmmoInClip FgColor "TanLight" Accel 0.0 0.0 Animate AmmoInClipShadow FgColor "Black" Accel 0.0 0.0 Animate AmmoInReserve FgColor "TanLight" Accel 0.0 0.0 Animate AmmoInReserveShadow FgColor "Black" Accel 0.0 0.0 Animate AmmoNoClip FgColor "TanLight" Accel 0.0 0.0 Animate AmmoNoClipShadow FgColor "Black" Accel 0.0 0.0 } ================================================ FILE: scripts/hudanimations_hitmarker.txt ================================================ event DamagedPlayer { StopEvent HitMarker 0.0 RunEvent HitMarker 0.00001 } event HitMarker { Animate CustomCrosshair FgColor "CrosshairDamage" Linear 0.0 0.00001 Animate CustomCrosshair FgColor "Crosshair" Linear 0.10 0.10001 } ================================================ FILE: scripts/hudanimations_manifest.txt ================================================ hudanimations_manifest { "file" "scripts/hudanimations.txt" "file" "../../cfg/flawhud/hud_health_ammo.txt" "file" "../../cfg/flawhud/hud_uber_counter.txt" "file" "scripts/hudanimations_custom.txt" "file" "scripts/hudanimations_hitmarker.txt" "file" "scripts/hudanimations_health_ammo.txt" "file" "scripts/hudanimations_tf.txt" } ================================================ FILE: scripts/hudlayout.res ================================================ #base "../resource/ui/customizations/#customization_menu/hud_customization_layout.res" #base "../resource/ui/customizations/killfeed/killfeed.res" "scripts/hudlayout.res" { "HudPlayerStatus" { "fieldName" "HudPlayerStatus" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" } "HudWeaponAmmo" { "fieldName" "HudWeaponAmmo" "visible" "1" "enabled" "1" "xpos" "c150" "ypos" "c110" "wide" "110" "tall" "43" } "HudObjectiveStatus" { "fieldName" "HudObjectiveStatus" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" } "HudKothTimeStatus" { "fieldName" "HudKothTimeStatus" "visible" "1" "enabled" "1" "xpos" "c-40" "ypos" "0" "zpos" "5" "wide" "80" "tall" "100" "blue_active_xpos" "0" "red_active_xpos" "40" } "HudItemEffectMeter" { "fieldName" "HudItemEffectMeter" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "MeterFG" "White" "MeterBG" "Gray" } "HudMedicCharge" { "fieldName" "HudMedicCharge" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" } "HudDemomanCharge" { "fieldName" "HudDemomanCharge" "visible" "1" "enabled" "1" "xpos" "c-55" "ypos" "c136" "zpos" "1" "wide" "110" "tall" "60" "MeterFG" "White" "MeterBG" "Gray" } "HudBowCharge" { "fieldName" "HudBowCharge" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "0" "tall" "500" "MeterFG" "White" "MeterBG" "Gray" } "HudFlameRocketCharge" { "fieldName" "HudFlameRocketCharge" "visible" "1" "enabled" "1" "xpos" "r80" "ypos" "r21" "zpos" "1" "wide" "60" "tall" "8" "MeterFG" "White" "MeterBG" "Gray" } "HudBossHealth" { "fieldName" "HudBossHealth" "visible" "1" "enabled" "1" "xpos" "c-100" "ypos" "0" "zpos" "0" "wide" "200" "tall" "50" "MeterFG" "TeamRed" "MeterBG" "Gray" } "HudWeaponSelection" { "fieldName" "HudWeaponSelection" "xpos" "0" "wide" "f0" "ypos" "0" "tall" "480" "RightMargin" "0" "visible" "1" "enabled" "1" "SmallBoxWide" "72" "SmallBoxTall" "54" "PlusStyleBoxWide" "90" "PlusStyleBoxTall" "63" "PlusStyleExpandSelected" "0.3" "LargeBoxWide" "110" "LargeBoxTall" "77" "BoxGap" "4" "SelectionNumberXPos" "12" "SelectionNumberYPos" "4" "IconXPos" "8" "IconYPos" "0" "TextYPos" "70" "ErrorYPos" "48" "TextColor" "SelectionTextFg" "MaxSlots" "6" "PlaySelectSounds" "1" "Alpha" "220" "SelectionAlpha" "220" "BoxColor" "0 0 0 220" "SelectedBoxClor" "0 0 0 220" "SelectionNumberFg" "200 187 161 255" "NumberFont" "HudSelectionText" } "CHudAccountPanel" { "fieldName" "CHudAccountPanel" "xpos" "c-44" "ypos" "c120" "wide" "150" "tall" "100" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" } "CHealthAccountPanel" { "fieldName" "CHealthAccountPanel" "xpos" "c-195" "ypos" "c44" "wide" "100" "tall" "180" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" } "CDamageAccountPanel" { "fieldName" "CDamageAccountPanel" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" } "DisguiseStatus" { "fieldName" "DisguiseStatus" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "r25" "zpos" "10" "wide" "170" "tall" "25" } "CMainTargetID" { "fieldName" "CMainTargetID" "visible" "0" "enabled" "1" "xpos" "c-126" "ypos" "c20" "wide" "200" "tall" "50" "priority" "40" } "CSpectatorTargetID" { "fieldName" "CSpectatorTargetID" "visible" "0" "enabled" "1" "xpos" "c-126" "ypos" "c50" "wide" "200" "tall" "50" "priority" "40" } "CSecondaryTargetID" { "fieldName" "CSecondaryTargetID" "visible" "0" "enabled" "1" "xpos" "c-126" "ypos" "c50" "wide" "200" "tall" "50" "priority" "35" } "BuildingStatusAnchor" { "fieldName" "BuildingStatusAnchor" "ControlName" "EditablePanel" "visible" "0" "enabled" "1" "xpos" "0" "ypos" "c-130" "wide" "640" "tall" "480" } "BuildingStatus_Spy" { "fieldName" "BuildingStatus_Spy" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "160" "tall" "480" "PaintBackgroundType" "2" "pin_to_sibling" "BuildingStatusAnchor" "pin_to_sibling_corner" "PIN_TOPLEFT" "pin_corner_to_sibling" "PIN_TOPLEFT" } "BuildingStatus_Engineer" { "fieldName" "BuildingStatus_Engineer" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "160" "tall" "480" "PaintBackgroundType" "2" "pin_to_sibling" "BuildingStatusAnchor" "pin_to_sibling_corner" "PIN_TOPLEFT" "pin_corner_to_sibling" "PIN_TOPLEFT" } "HudMannVsMachineStatus" { "fieldName" "HudMannVsMachineStatus" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "zpos" "1" "wide" "f0" "tall" "480" "PaintBackgroundType" "2" } "CurrencyStatusPanel" { "ControlName" "CCurrencyStatusPanel" "fieldName" "CurrencyStatusPanel" "xpos" "c-250" "ypos" "r85" "wide" "110" "tall" "20" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" } "HudProgressBar" { "fieldName" "HudProgressBar" "xpos" "c-150" "ypos" "300" "wide" "300" "tall" "15" "visible" "1" "enabled" "1" "BorderThickness" "1" "PaintBackgroundType" "2" } "HudRoundTimer" { "fieldName" "HudRoundTimer" "xpos" "c-25" "ypos" "440" "wide" "f0" "tall" "40" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" "FlashColor" "HudIcon_Red" "icon_xpos" "0" "icon_ypos" "2" "digit_xpos" "34" "digit_ypos" "2" } "HudScenarioIcon" { "fieldName" "HudScenarioIcon" "xpos" "c110" "ypos" "443" "wide" "40" "tall" "44" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" "IconColor" "Yellow" } "HudFlashlight" { "fieldName" "HudFlashlight" "visible" "1" "enabled" "1" "xpos" "16" "ypos" "370" "wide" "102" "tall" "20" "text_xpos" "8" "text_ypos" "6" "TextColor" "255 170 0 220" "PaintBackgroundType" "2" } "HudDamageIndicator" { "fieldName" "HudDamageIndicator" "visible" "1" "enabled" "1" "MinimumWidth" "15" "MaximumWidth" "15" "StartRadius" "80" "EndRadius" "80" "MinimumHeight" "30" "MaximumHeight" "60" "MinimumTime" "1" } "HudCommentary" { "fieldName" "HudCommentary" "xpos" "c-190" "ypos" "320" "wide" "380" "tall" "50" "visible" "1" "enabled" "1" "PaintBackgroundType" "2" "BackgroundOverrideColor" "0 0 0 128" "bar_xpos" "50" "bar_ypos" "20" "bar_height" "8" "bar_width" "320" "speaker_xpos" "50" "speaker_ypos" "8" "count_xpos_from_right" "10" "count_ypos" "8" "icon_texture" "vgui/hud/icon_commentary" "icon_xpos" "0" "icon_ypos" "0" "icon_width" "40" "icon_height" "40" "use_script_bgcolor" "1" } "HudZoom" { "fieldName" "HudZoom" "visible" "1" "enabled" "1" "Circle1Radius" "66" "Circle2Radius" "74" "DashGap" "16" "DashHeight" "4" "BorderThickness" "88" } "HudCrosshair" { "fieldName" "HudCrosshair" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "HudVehicle" { "fieldName" "HudVehicle" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "CVProfPanel" { "fieldName" "CVProfPanel" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "ScorePanel" { "fieldName" "ScorePanel" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "HudTrain" { "fieldName" "HudTrain" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "HudMOTD" { "fieldName" "HudMOTD" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "HudMessage" { "fieldName" "HudMessage" "visible" "1" "enabled" "1" "wide" "f0" "tall" "480" } "HudMenu" { "fieldName" "HudMenu" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" "zpos" "1" "TextFont" "Default" "ItemFont" "Default" "ItemFontPulsing" "Default" } "HudSpellMenu" { "fieldName" "HudSpellMenu" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" "xpos" "c-210" "ypos" "r75" "zpos" "2" "TextFont" "Default" "ItemFont" "Default" "ItemFontPulsing" "Default" } "HudCloseCaption" { "fieldName" "HudCloseCaption" "visible" "1" "enabled" "1" "xpos" "r120" "ypos" "r300" "wide" "115" "tall" "200" "BgAlpha" "128" "GrowTime" "0.25" "ItemHiddenTime" "0.2" "ItemFadeInTime" "0.15" "ItemFadeOutTime" "0.3" "topoffset" "0" } "HudHistoryResource" { "fieldName" "HudHistoryResource" "visible" "0" "enabled" "0" "xpos" "r640" "wide" "640" "tall" "330" "history_gap" "55" } "HudGeiger" { "fieldName" "HudGeiger" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "HUDQuickInfo" { "fieldName" "HUDQuickInfo" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "HudWeapon" { "fieldName" "HudWeapon" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "HudAnimationInfo" { "fieldName" "HudAnimationInfo" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "CBudgetPanel" { "fieldName" "CBudgetPanel" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "CTextureBudgetPanel" { "fieldName" "CTextureBudgetPanel" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "HudPredictionDump" { "fieldName" "HudPredictionDump" "visible" "1" "enabled" "1" "wide" "1280" "tall" "1024" } "HudLocation" { "fieldName" "HudLocation" "visible" "1" "enabled" "1" "xpos" "16" "ypos" "112" "wide" "96" "tall" "16" "textAlignment" "north" } "HudScope" { "fieldName" "HudScope" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "HudScopeCharge" { "fieldName" "HudScopeCharge" "visible" "1" "enabled" "1" "xpos" "c64" "ypos" "c-64" "wide" "64" "tall" "128" } "HudVoiceSelfStatus" { "fieldName" "HudVoiceSelfStatus" "visible" "1" "enabled" "1" "xpos" "15" "ypos" "r90" "wide" "32" "tall" "32" } "HudVoiceStatus" { "fieldName" "HudVoiceStatus" "visible" "1" "enabled" "1" "xpos" "r145" "ypos" "0" "wide" "145" "tall" "400" "item_wide" "135" "show_dead_icon" "0" "dead_xpos" "115" "dead_ypos" "-1" "dead_wide" "14" "dead_tall" "14" "show_voice_icon" "1" "icon_ypos" "2" "icon_xpos" "2" "icon_tall" "12" "icon_wide" "12" "text_xpos" "17" "show_avatar" "1" "avatar_ypos" "-1" "avatar_xpos" "115" "avatar_tall" "17" "text_xpos_minmode" "9999" } "HudHintDisplay" { "fieldName" "HudHintDisplay" "visible" "0" "enabled" "1" "xpos" "c-240" "ypos" "c90" "wide" "480" "tall" "100" "HintSize" "1" "text_xpos" "8" "text_ypos" "8" "center_x" "0" // center text horizontally "center_y" "-1" // align text on the bottom } "HudHintKeyDisplay" { "fieldName" "HudHintKeyDisplay" "visible" "0" "enabled" "1" "xpos" "r120" "ypos" "r340" "wide" "100" "tall" "200" "text_xpos" "8" "text_ypos" "8" "text_xgap" "8" "text_ygap" "8" "TextColor" "255 170 0 220" "PaintBackgroundType" "2" } "overview" { "fieldname" "overview" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "640" "tall" "480" } "VguiScreenCursor" { "fieldName" "VguiScreenCursor" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "HudControlPointIcons" { "fieldName" "HudControlPointIcons" "xpos" "0" "ypos" "410" "wide" "f0" "tall" "200" "visible" "1" "enabled" "1" "separator_width" "2" "separator_height" "7" "height_offset" "0" } "HudCapturePanel" { "fieldName" "HudCapturePanel" "xpos" "c-75" "ypos" "c80" "wide" "150" "tall" "90" "visible" "1" "enabled" "1" "icon_space" "2" } "WinPanel" { "fieldName" "WinPanel" "visible" "1" "enabled" "1" "xpos" "c-100" "ypos" "r145" "ypos_minmode" "r40" "zpos" "10" "wide" "200" "tall" "152" } "ArenaWinPanel" { "fieldName" "ArenaWinPanel" "visible" "1" "enabled" "1" "xpos" "c-180" "ypos" "r125" "ypos_minmode" "r65" "zpos" "10" "wide" "360" "tall" "132" } "PVEWinPanel" { "fieldName" "PVEWinPanel" "visible" "1" "enabled" "1" "xpos" "c-150" "ypos" "255" "wide" "300" "tall" "215" } "StatPanel" { "fieldName" "StatPanel" "visible" "1" "enabled" "1" "xpos" "c-133" "ypos" "270" "wide" "0" "tall" "120" } "FreezePanel" { "fieldName" "FreezePanel" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" } "FreezePanelCallout" { "fieldName" "FreezePanelCallout" "visible" "1" "enabled" "1" "xpos" "200" "ypos" "200" "wide" "100" "tall" "50" } "AnnotationsPanelCallout" { "fieldName" "AnnotationsPanelCallout" "visible" "1" "enabled" "1" "xpos" "200" "ypos" "200" "wide" "100" "tall" "50" } "WaitingForPlayersPanel" { "fieldName" "WaitingForPlayersPanel" "visible" "0" "enabled" "1" "xpos" "c-146" "ypos" "10" "wide" "292" "tall" "64" } "HudUpgradePanel" { "fieldName" "HudUpgradePanel" "visible" "0" "enable" "1" "xpos" "c-200" "ypos" "260" "wide" "400" "tall" "160" } "HudChat" { "ControlName" "EditablePanel" "fieldName" "HudChat" "visible" "1" "enabled" "1" "xpos" "10" "ypos" "255" "wide" "320" "tall" "120" "PaintBackgroundType" "2" } "HudMenuEngyBuild" { "fieldName" "HudMenuEngyBuild" "visible" "1" "enabled" "1" "xpos" "c140" "ypos" "c63" "zpos" "14" "wide" "125" "tall" "f0" "PaintBackgroundType" "0" } "HudMenuEngyDestroy" { "fieldName" "HudMenuEngyDestroy" "visible" "1" "enabled" "1" "xpos" "c140" "ypos" "c63" "zpos" "14" "wide" "125" "tall" "f0" "PaintBackgroundType" "0" } "HudEurekaEffectTeleportMenu" { "fieldName" "HudEurekaEffectTeleportMenu" "visible" "1" "enabled" "1" "xpos" "c130" "ypos" "c85" "zpos" "14" "wide" "150" "tall" "88" "PaintBackgroundType" "0" } "HudMenuSpyDisguise" { "fieldName" "HudMenuSpyDisguise" "visible" "1" "enabled" "1" "xpos" "c100" "ypos" "c68" "zpos" "14" "wide" "200" "tall" "f0" "PaintBackgroundType" "0" } "HudDemomanPipes" { "fieldName" "HudDemomanPipes" "visible" "1" "enabled" "1" "xpos" "c-55" "ypos" "c124" "wide" "110" "tall" "20" } "HudTeamGoal" { "fieldName" "HudTeamGoal" "visible" "1" "enabled" "1" "xpos" "c-160" "ypos" "65" "wide" "0" "tall" "100" } "HudTeamGoalTournament" { "fieldName" "HudTeamGoalTournament" "visible" "1" "enabled" "1" "xpos" "c-160" "ypos" "15" "wide" "0" "tall" "300" } "HudTeamSwitch" { "fieldName" "HudTeamSwitch" "visible" "0" "enabled" "1" "xpos" "c-123" "ypos" "40" "wide" "246" "tall" "60" } "HudArenaNotification" { "fieldName" "HudArenaNotification" "visible" "0" "enabled" "1" "xpos" "c-140" "ypos" "35" "wide" "280" "tall" "80" } "HudArenaCapPointCountdown" { "fieldName" "HudArenaCapPointCountdown" "visible" "1" "enabled" "1" "xpos" "c-15" "ypos" "442" "wide" "30" "tall" "30" "zpos" "99" } "HudStalemate" { "fieldName" "HudStalemate" "visible" "0" "enabled" "1" "xpos" "c-160" "ypos" "65" "wide" "320" "tall" "100" } "HudTournament" { "fieldName" "HudTournament" "visible" "0" "enabled" "1" "xpos" "c-125" "ypos" "0" "zpos" "12" "wide" "250" "tall" "80" } "HudTournamentSetup" { "fieldName" "HudTournamentSetup" "visible" "0" "enabled" "1" "xpos" "c-90" "ypos" "-70" "wide" "180" "tall" "65" } "HudStopWatch" { "fieldName" "HudStopWatch" "visible" "1" "enabled" "1" "xpos" "c110" "ypos" "r32" "zpos" "0" "wide" "90" "tall" "30" } "NotificationPanel" { "fieldName" "NotificationPanel" "visible" "1" "enabled" "1" "xpos" "c-320" "ypos" "50" "wide" "640" "tall" "100" } "AchievementNotificationPanel" { "fieldName" "AchievementNotificationPanel" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "180" "wide" "f10" "tall" "100" } "CriticalPanel" { "fieldName" "CriticalPanel" "visible" "1" "enabled" "1" "xpos" "r155" "ypos" "r75" "wide" "150" "tall" "25" } "HudArenaClassLayout" { "fieldName" "HudArenaClassLayout" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "r135" "zpos" "10" "wide" "f0" "tall" "320" } "HudArenaVsPanel" { "fieldName" "HudArenaVsPanel" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "240" "wide" "f0" "tall" "240" } "HudArenaPlayerCount" { "fieldName" "HudArenaPlayerCount" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "zpos" "10" "wide" "f0" "tall" "100" } "HudAchievementTracker" { "ControlName" "EditablePanel" "fieldName" "HudAchievementTracker" "xpos" "5" "NormalY" "275" "EngineerY" "310" "zpos" "-10" "wide" "f0" "tall" "f0" "visible" "1" "enabled" "1" } "HudTrainingInfoMsg" { "fieldName" "HudTrainingInfoMsg" "visible" "0" "enabled" "1" "xpos" "10" "ypos" "50" "wide" "200" "tall" "300" } "HudInspectPanel" { "fieldName" "HudInspectPanel" "visible" "0" "enabled" "1" "xpos" "r200" "ypos" "rs1" "zpos" "10" "wide" "270" "tall" "f0" } "HudTFCrosshair" { "fieldName" "HudTFCrosshair" "visible" "1" "enabled" "1" "wide" "640" "tall" "480" } "ItemQuickSwitchPanel" { "fieldName" "ItemQuickSwitchPanel" "visible" "0" "enabled" "1" "xpos" "c-125" "ypos" "350" "wide" "250" "tall" "160" } "ReplayReminder" { "fieldName" "ReplayReminder" "visible" "0" "enable" "1" } "MainMenuAdditions" { "fieldName" "MainMenuAdditions" "visible" "1" "enabled" "1" "xpos" "c0" "ypos" "310" "zpos" "0" "wide" "300" "tall" "100" } "CoachedByPanel" { "fieldName" "CoachedByPanel" "visible" "0" "enable" "1" "xpos" "5" "ypos" "10" "wide" "250" "tall" "44" } "ItemTestHUDPanel" { "fieldName" "ItemTestHUDPanel" "visible" "0" "enable" "1" "xpos" "5" "ypos" "10" "wide" "150" "tall" "44" } "NotificationQueuePanel" { "fieldName" "NotificationQueuePanel" "visible" "0" "enable" "1" "xpos" "r155" "ypos" "r90" "zpos" "100" "wide" "200" "tall" "0" } "CHudVote" { "fieldName" "CHudVote" "xpos" "0" "ypos" "0" "wide" "640" "tall" "480" "visible" "1" "enabled" "1" "bgcolor_override" "0 0 0 0" "PaintBackgroundType" "0" // rounded corners } "HudAlert" { "fieldName" "HudAlert" "visible" "0" "enable" "1" "xpos" "c-160" "ypos" "100" "wide" "320" "tall" "150" } "CTFStreakNotice" { "fieldName" "CTFStreakNotice" "xpos" "0" "ypos" "0" "wide" "640" "tall" "480" "visible" "1" "enabled" "1" "bgcolor_override" "0 0 0 0" "PaintBackgroundType" "0" // rounded corners } "CTFFlagCalloutPanel" { "fieldName" "CTFFlagCalloutPanel" "visible" "0" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "40" "tall" "40" "priority" "40" } "HudMenuTauntSelection" { "fieldName" "HudMenuTauntSelection" "visible" "1" "enabled" "1" "xpos" "c-235" "ypos" "c155" "zpos" "10" "wide" "470" "tall" "88" "PaintBackgroundType" "0" } "ItemAttributeTracker" { "fieldName" "ItemAttributeTracker" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f5" "tall" "f0" "PaintBackgroundType" "0" } "HudMiniGame" { "fieldName" "HudMiniGame" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "480" } "QuestNotificationPanel" { "fieldName" "QuestNotificationPanel" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" } "MatchMakingContainer" { "ControlName" "EditablePanel" "fieldName" "MatchMakingContainer" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" } "HudSpectatorExtras" { "fieldName" "HudSpectatorExtras" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" "player_name_font_minmode" "Transparent" } "MatchSummary" { "fieldName" "MatchSummary" "visible" "0" "enabled" "1" "xpos" "0" "ypos" "0" "wide" "f0" "tall" "f0" } "HudMatchStatus" { "fieldName" "HudMatchStatus" "visible" "1" "enabled" "1" "xpos" "0" "ypos" "0" "zpos" "3" "wide" "f0" "tall" "f0" } "QueueHUDStatus" { "fieldName" "QueueHUDStatus" "visible" "1" "enabled" "1" "xpos" "rs1-5" "ypos" "1" "zpos" "1001" "wide" "200" "tall" "18" "proportionaltoparent" "1" "keyboardinputenabled" "1" "mouseinputenabled" "0" "alpha" "100" } "HUDAutoAim" { } "HudHDRDemo" { } "HudTrainingMsg" { } "TrainingComplete" { } "AnnotationsPanel" { } }