├── README.md ├── customization ├── chat - bottom right │ └── resource │ │ └── ui │ │ └── basechat.res ├── chat - top left │ └── resource │ │ └── ui │ │ └── basechat.res ├── medic - bottom charge meter │ └── resource │ │ └── ui │ │ └── hudmediccharge.res ├── medic - center charge meter & percentage │ └── resource │ │ └── ui │ │ └── hudmediccharge.res ├── readme.txt ├── scoreboard - 16v16 players │ └── resource │ │ └── ui │ │ └── scoreboard.res ├── scoreboard - bottom │ └── resource │ │ └── ui │ │ └── scoreboard.res └── style - nobox │ ├── resource │ └── ui │ │ └── hudmediccharge.res │ └── scripts │ └── hudanimations_ahud.txt ├── info.vdf ├── materials ├── sprites │ └── obj_icons │ │ ├── icon_obj_a.vmt │ │ ├── icon_obj_b.vmt │ │ ├── icon_obj_blu.vmt │ │ ├── icon_obj_blu_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 │ └── replay │ └── thumbnails │ ├── bg_blu.vmt │ ├── bg_blu.vtf │ ├── bg_red.vmt │ ├── bg_red.vtf │ ├── blank.vmt │ ├── blank.vtf │ ├── buttons │ ├── alert.vmt │ ├── alert.vtf │ ├── chat.vmt │ ├── chat.vtf │ ├── check.vmt │ ├── check.vtf │ ├── heart.vmt │ ├── heart.vtf │ ├── motd.vmt │ ├── motd.vtf │ ├── pda.vmt │ ├── pda.vtf │ ├── reel.vmt │ ├── reel.vtf │ ├── refresh.vmt │ ├── refresh.vtf │ ├── shutdown.vmt │ ├── shutdown.vtf │ ├── twitch.vmt │ ├── twitch.vtf │ ├── x.vmt │ └── x.vtf │ ├── cp_icons │ ├── icon_obj_a.vtf │ ├── icon_obj_b.vtf │ ├── icon_obj_blu.vtf │ ├── icon_obj_blu_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 │ ├── mmbg.vmt │ └── mmbg.vtf ├── resource ├── chatscheme.res ├── clientscheme.res ├── closecaption_english.dat ├── closecaption_english.txt ├── fonts │ ├── Blocks.ttf │ ├── CodeProBold.otf │ ├── CodeProLC.otf │ └── KnucklesCrosses.ttf ├── gamemenu.res ├── preload.res ├── scheme │ ├── basesettings.res │ ├── borders.res │ ├── colors.res │ ├── fonts.res │ └── xhairs.res ├── sourcescheme.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 │ ├── casualwelcomedialog.res │ ├── charinfoarmorysubpanel.res │ ├── charinfoloadoutsubpanel.res │ ├── charinfopanel.res │ ├── classloadoutpanel.res │ ├── classselection.res │ ├── competitivewelcomedialog.res │ ├── comprankstooltip.res │ ├── compstats.res │ ├── controlpointcountdown.res │ ├── controlpointicon.res │ ├── controlpointprogressbar.res │ ├── craftingpanel.res │ ├── craftingstatusdialog.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 │ ├── disguisestatuspanel.res │ ├── econ │ ├── backpackpanel.res │ ├── comboboxbackpackoverlaydialog.res │ ├── confirmapplygiftwrapdialog.res │ ├── confirmapplypaintcandialog.res │ ├── confirmapplystrangepartapplicationdialog.res │ ├── confirmapplystrangerestrictionapplicationdialog.res │ ├── confirmapplystrangifierdialog.res │ ├── confirmapplyteamcolorpaintcandialog.res │ ├── confirmdialog.res │ ├── confirmdialogabandonnopenalty.res │ ├── confirmdialogabandonpenalty.res │ ├── confirmdialogabandonsafe.res │ ├── confirmdialogoptout.res │ ├── confirmspellbookpageapplicationdialog.res │ ├── confirmtransmogrifyapplicationdialog.res │ ├── cyclingadcontainer.res │ ├── inputstringforitembackpackoverlaydialog.res │ ├── inspectionpanel.res │ ├── itemdiscardpanel.res │ ├── itemmodelpanel.res │ ├── itempickuppanel.res │ ├── messageboxdialog.res │ ├── questlogpanel.res │ ├── store │ │ └── v2 │ │ │ ├── storehome_base.res │ │ │ ├── storepage.res │ │ │ ├── storepage_maps.res │ │ │ ├── storepanel.res │ │ │ ├── storepreviewitempanel.res │ │ │ └── storeviewcartpanel.res │ ├── tradingstartdialog.res │ └── warjoinpanel.res │ ├── enemycountpanel.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 │ ├── hudarenacappointcountdown.res │ ├── hudarenaclasslayout.res │ ├── hudarenanotification.res │ ├── hudarenaplayercount.res │ ├── hudarenateammenu.res │ ├── hudarenawinpanel.res │ ├── hudcurrencyaccount.res │ ├── huddamageaccount.res │ ├── huddemomancharge.res │ ├── huddemomanpipes.res │ ├── hudhealthaccount.res │ ├── hudinspectpanel.res │ ├── huditemeffectmeter.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 │ ├── hudminigame_base.res │ ├── hudminigame_soccersuddendeath.res │ ├── hudobjectiveflagpanel.res │ ├── hudobjectivekothtimepanel.res │ ├── hudobjectivestatus.res │ ├── hudobjectivetimepanel.res │ ├── hudpasstimeballstatus.res │ ├── hudpasstimepassnotify.res │ ├── hudpasstimeteamscore.res │ ├── hudplayerclass.res │ ├── hudplayerhealth.res │ ├── hudpvewinpanel.res │ ├── hudrocketpack.res │ ├── hudroundcounter.res │ ├── hudspellselection.res │ ├── hudstopwatch.res │ ├── hudteamgoal.res │ ├── hudteamgoaltournament.res │ ├── hudtournament.res │ ├── hudtournamentsetup.res │ ├── hudupgradepanel.res │ ├── intromenu.res │ ├── itemoptionspanel.res │ ├── itemquickswitch.res │ ├── itemrenameconfirmationdialog.res │ ├── itemrenamedialog.res │ ├── itemrenameinvaliddialog.res │ ├── itemselectionpanel.res │ ├── loadoutpresetpanel.res │ ├── lobbycontainerframe.res │ ├── lobbycontainerframe_casual.res │ ├── lobbycontainerframe_mvm.res │ ├── lobbypanel.res │ ├── lobbypanel_comp.res │ ├── lobbypanel_mvm.res │ ├── mainmenuoverride.res │ ├── mainmenuplaylistentry.res │ ├── mapinfomenu.res │ ├── matchmakingcasualcriteria.res │ ├── matchmakingcategorypanel.res │ ├── matchmakingdashboard.res │ ├── matchmakingdashboardcasualcriteria.res │ ├── matchmakingdashboardcomp.res │ ├── matchmakingdashboardplaylist.res │ ├── matchmakingdashboardpopup_newmatch.res │ ├── matchmakingdashboardpopup_nextmapvoting.res │ ├── matchmakingdashboardpopup_nextmapwinner.res │ ├── matchmakingdashboardsidepanel.res │ ├── matchmakingpingpanel.res │ ├── matchmakingtooltip.res │ ├── mvmcreditspendpanel.res │ ├── mvmcreditsubpanel.res │ ├── mvminworldcurrency.res │ ├── mvmscoreboard.res │ ├── mvmvictorycontainer.res │ ├── mvmvictorymannuppanel.res │ ├── mvmvictorypanel.res │ ├── mvmvictorysplash.res │ ├── mvmwavelosspanel.res │ ├── notifications │ └── base_notification.res │ ├── objectivestatusescort.res │ ├── objectivestatusmultipleescort.res │ ├── publishfiledialog.res │ ├── pvprankpanel.res │ ├── quickplaybusydialog.res │ ├── quickplaydialog.res │ ├── replaybrowser │ ├── basepage.res │ ├── detailspanel.res │ ├── mainpanel.res │ ├── previewpanel.res │ ├── thumbnailcollection.res │ └── thumbnailrow.res │ ├── scoreboard.res │ ├── spectator.res │ ├── spectatorguihealth.res │ ├── spectatortournament.res │ ├── spectatortournamentguihealth.res │ ├── statsummary.res │ ├── statsummary_embedded.res │ ├── steamfriendpanel.res │ ├── steamworkshopdialog.res │ ├── steamworkshopitem.res │ ├── surveypanel_base.res │ ├── tankprogressbar.res │ ├── tankstatuspanel.res │ ├── targetid.res │ ├── teammenu.res │ ├── textwindow.res │ ├── textwindowcustomserver.res │ ├── tfadvancedoptionsdialog.res │ ├── training │ ├── basictraining │ │ ├── classdetails.res │ │ └── classpanel.res │ ├── main.res │ ├── modeselection │ │ └── modepanel.res │ └── offlinepractice │ │ ├── mapselection.res │ │ └── practicemodeselection.res │ ├── trainingcomplete.res │ ├── upgradebuypanel.res │ ├── votehud.res │ ├── wavecompletesummarypanel.res │ ├── wavestatuspanel.res │ └── winpanel.res └── scripts ├── KnucklesCrosses.png ├── hudanimations_ahud.txt ├── hudanimations_manifest.txt ├── hudanimations_mediccharge.txt ├── hudanimations_misc.txt └── hudlayout.res /README.md: -------------------------------------------------------------------------------- 1 | # ahud 2 | 3 | A custom HUD for Team Fortress 2. 4 | Original concept by [kyle](https://github.com/hikyle). 5 | 6 | #### Features 7 | 8 | * Custom colors 9 | * Custom crosshairs 10 | * 6v6 scoreboard 11 | * Alternative styles 12 | * Home Server button 13 | * 16:9, 16:10, and 4:3 support 14 | * Matchmaking and MvM support 15 | 16 | #### Screenshots 17 | 18 | * [Main Menu](https://i.imgur.com/Kx70I3P.jpg) 19 | * [Buffed HP](https://i.imgur.com/WgR6jeE.jpg) 20 | * [Low HP & Ammo](https://i.imgur.com/AV3mNzm.jpg) 21 | * [Alt. Buffed HP](https://i.imgur.com/BKmdCnp.jpg) 22 | * [Alt. Low HP & Ammo](https://i.imgur.com/m4gILKr.jpg) 23 | * [Default scoreboard](https://i.imgur.com/cigUnUo.jpg) 24 | * [6v6 scoreboard](https://i.imgur.com/xya3Hkg.jpg) 25 | 26 | More screenshots: [Imgur album](http://imgur.com/a/569GH) 27 | 28 | ## Installation 29 | 30 | 1. Download ahud by clicking `Download ZIP` from the green `Code` button on the ahud GitHub repo. 31 | 2. Navigate to `..\Steam\steamapps\common\Team Fortress 2\tf\custom`. 32 | 3. Extract `ahud-master` from the ZIP file to the `custom` folder. 33 | 4. Verify `materials`, `resource`, `scripts`, and `info.vdf` are inside the `ahud-master` folder. 34 | 5. Run Team Fortress 2. 35 | 36 | For thorough instructions on installing a HUD for TF2, check out the [HUDS.TF guide](https://huds.tf/forum/showthread.php?tid=1987). 37 | A third-party installer, [ainstaller](https://github.com/ainstaller/aInstaller/releases), is also available. 38 | 39 | ## Customization 40 | 41 | Refer to the [Wiki](https://github.com/n0kk/ahud/wiki/Customization). 42 | 43 | ## Support 44 | [Report bugs here](https://github.com/n0kk/ahud/issues) 45 | 46 | **Windows**: Yes 47 | * 4:3 - 1024×768 and above 48 | * 16:9 - 1280x720 and above 49 | * 16:10 - 1280x800 and above 50 | 51 | **Linux**: No 52 | **Mac**: No 53 | 54 | I have tested ahud on my Windows PC using a 16:9 monitor primarily on resolutions 1280x720 and above. ahud works on 16:10 and 4:3 and I'll be providing support for these aspect ratios as best as I can. Unfortunately, no Mac or Linux support. -------------------------------------------------------------------------------- /customization/chat - bottom right/resource/ui/basechat.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/BaseChat.res" 2 | { 3 | "HudChat" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "HudChat" 7 | "visible" "1" 8 | "enabled" "1" 9 | "xpos" "r211" 10 | "ypos" "r115" 11 | "wide" "210" 12 | "tall" "100" 13 | "PaintBackgroundType" "0" 14 | } 15 | 16 | ChatInputLine 17 | { 18 | "ControlName" "EditablePanel" 19 | "fieldName" "ChatInputLine" 20 | "visible" "1" 21 | "enabled" "1" 22 | "xpos" "10" 23 | "ypos" "395" 24 | "wide" "190" 25 | "tall" "0" 26 | "PaintBackgroundType" "0" 27 | } 28 | 29 | "ChatFiltersButton" 30 | { 31 | "ControlName" "Button" 32 | "fieldName" "ChatFiltersButton" 33 | "xpos" "202" 34 | "ypos" "0" 35 | "wide" "33" 36 | "tall" "8" 37 | "autoResize" "1" 38 | "pinCorner" "0" 39 | "visible" "0" 40 | "enabled" "1" 41 | "tabPosition" "0" 42 | "labelText" "#chat_filterbutton" 43 | "textAlignment" "center" 44 | "dulltext" "0" 45 | "brighttext" "0" 46 | "Default" "0" 47 | } 48 | 49 | "HudChatHistory" 50 | { 51 | "ControlName" "RichText" 52 | "fieldName" "HudChatHistory" 53 | "xpos" "0" 54 | "ypos" "0" 55 | "wide" "210" 56 | "tall" "75" 57 | "wrap" "1" 58 | "autoResize" "1" 59 | "pinCorner" "1" 60 | "visible" "1" 61 | "enabled" "1" 62 | "labelText" "" 63 | "textAlignment" "south-west" 64 | "font" "ChatFont" 65 | "maxchars" "-1" 66 | } 67 | } -------------------------------------------------------------------------------- /customization/chat - top left/resource/ui/basechat.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/BaseChat.res" 2 | { 3 | "HudChat" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "HudChat" 7 | "visible" "1" 8 | "enabled" "1" 9 | "xpos" "1" 10 | "ypos" "55" 11 | "wide" "210" 12 | "tall" "100" 13 | "PaintBackgroundType" "0" 14 | } 15 | 16 | ChatInputLine 17 | { 18 | "ControlName" "EditablePanel" 19 | "fieldName" "ChatInputLine" 20 | "visible" "1" 21 | "enabled" "1" 22 | "xpos" "10" 23 | "ypos" "395" 24 | "wide" "190" 25 | "tall" "0" 26 | "PaintBackgroundType" "0" 27 | } 28 | 29 | "ChatFiltersButton" 30 | { 31 | "ControlName" "Button" 32 | "fieldName" "ChatFiltersButton" 33 | "xpos" "202" 34 | "ypos" "0" 35 | "wide" "33" 36 | "tall" "8" 37 | "autoResize" "1" 38 | "pinCorner" "0" 39 | "visible" "0" 40 | "enabled" "1" 41 | "tabPosition" "0" 42 | "labelText" "#chat_filterbutton" 43 | "textAlignment" "center" 44 | "dulltext" "0" 45 | "brighttext" "0" 46 | "Default" "0" 47 | } 48 | 49 | "HudChatHistory" 50 | { 51 | "ControlName" "RichText" 52 | "fieldName" "HudChatHistory" 53 | "xpos" "0" 54 | "ypos" "0" 55 | "wide" "210" 56 | "tall" "75" 57 | "wrap" "1" 58 | "autoResize" "1" 59 | "pinCorner" "1" 60 | "visible" "1" 61 | "enabled" "1" 62 | "labelText" "" 63 | "textAlignment" "south-west" 64 | "font" "ChatFont" 65 | "maxchars" "-1" 66 | } 67 | } -------------------------------------------------------------------------------- /customization/readme.txt: -------------------------------------------------------------------------------- 1 | To use one of the custom features: 2 | 3 | 1. Open the folder of the feature you want to use 4 | 2. Copy the contents (resource, scripts, or sometimes both) to the root directory 5 | 3. Replace all the files when prompted 6 | 4. Run TF2 -------------------------------------------------------------------------------- /customization/style - nobox/scripts/hudanimations_ahud.txt: -------------------------------------------------------------------------------- 1 | //Health Bonus Pulse 2 | event HudHealthBonusPulse 3 | { 4 | Animate PlayerStatusHealthValue FgColor "HP Buff" Linear 0.0 0.0 5 | Animate PlayerStatusHealthValueSpec FgColor "HP Buff" Linear 0.0 0.0 6 | Animate PlayerStatusHealthValueSpecgui FgColor "HP Buff" Linear 0.0 0.0 7 | Animate PlayerStatusHealthValueFreezePanel FgColor "HP Buff" Linear 0.0 0.0 8 | 9 | Animate PlayerStatusHealthBonusImage Alpha "255" Linear 0.0 0.2 10 | Animate PlayerStatusHealthBonusImage Alpha "0" Linear 0.2 0.4 11 | 12 | RunEvent HudHealthBonusPulseLoop 0.4 13 | } 14 | 15 | // call to loop HudHealthBonusPulse 16 | event HudHealthBonusPulseLoop 17 | { 18 | RunEvent HudHealthBonusPulse 0.0 19 | } 20 | 21 | event HudHealthBonusPulseStop 22 | { 23 | StopEvent HudHealthBonusPulse 0.0 24 | StopEvent HudHealthBonusPulseLoop 0.0 25 | 26 | Animate PlayerStatusHealthValue FgColor "HP" Linear 0.0 0.0 27 | Animate PlayerStatusHealthValueSpec FgColor "HP" Linear 0.0 0.0 28 | Animate PlayerStatusHealthValueSpecgui FgColor "HP" Linear 0.0 0.0 29 | Animate PlayerStatusHealthValueFreezePanel FgColor "HP" Linear 0.0 0.0 30 | } 31 | 32 | //Health Dying Pulse 33 | event HudHealthDyingPulse 34 | { 35 | Animate PlayerStatusHealthValue FgColor "HP Low" Linear 0.0 0.0 36 | Animate PlayerStatusHealthValueSpec FgColor "HP Low" Linear 0.0 0.0 37 | Animate PlayerStatusHealthValueSpecgui FgColor "HP Low" Linear 0.0 0.0 38 | Animate PlayerStatusHealthValueFreezePanel FgColor "HP Low" Linear 0.0 0.0 39 | 40 | Animate PlayerStatusHealthBonusImage Alpha "255" Linear 0.0 0.075 41 | Animate PlayerStatusHealthBonusImage Alpha "0" Linear 0.125 0.075 42 | 43 | RunEvent HudHealthDyingPulseLoop 0.25 44 | } 45 | 46 | // call to loop HudHealthDyingPulse 47 | event HudHealthDyingPulseLoop 48 | { 49 | RunEvent HudHealthDyingPulse 0.0 50 | } 51 | 52 | event HudHealthDyingPulseStop 53 | { 54 | StopEvent HudHealthDyingPulse 0.0 55 | StopEvent HudHealthDyingPulseLoop 0.0 56 | 57 | Animate PlayerStatusHealthValue FgColor "HP" Linear 0.0 0.0 58 | Animate PlayerStatusHealthValueSpec FgColor "HP" Linear 0.0 0.0 59 | Animate PlayerStatusHealthValueSpecgui FgColor "HP" Linear 0.0 0.0 60 | Animate PlayerStatusHealthValueFreezePanel FgColor "HP" Linear 0.0 0.0 61 | } 62 | 63 | //Low Ammo Pulse 64 | event HudLowAmmoPulse 65 | { 66 | Animate AmmoInClip FgColor "LowAmmo1" Linear 0.0 0.075 67 | Animate AmmoInClip FgColor "LowAmmo2" Linear 0.125 0.075 68 | 69 | Animate AmmoInReserve FgColor "LowAmmo1" Linear 0.0 0.075 70 | Animate AmmoInReserve FgColor "LowAmmo2" Linear 0.125 0.075 71 | 72 | Animate AmmoNoClip FgColor "LowAmmo1" Linear 0.0 0.075 73 | Animate AmmoNoClip FgColor "LowAmmo2" Linear 0.125 0.075 74 | 75 | RunEvent HudLowAmmoPulseLoop 0.25 76 | } 77 | 78 | // call to loop HudLowAmmoPulse 79 | event HudLowAmmoPulseLoop 80 | { 81 | RunEvent HudLowAmmoPulse 0.0 82 | } 83 | 84 | event HudLowAmmoPulseStop 85 | { 86 | StopEvent HudLowAmmoPulse 0.0 87 | StopEvent HudLowAmmoPulseLoop 0.0 88 | 89 | Animate AmmoInClip FgColor "Ammo In Clip" Linear 0.0 0.0 90 | Animate AmmoInReserve FgColor "Ammo In Reserve" Linear 0.0 0.0 91 | Animate AmmoNoClip FgColor "Ammo No Clip" Linear 0.0 0.0 92 | } -------------------------------------------------------------------------------- /info.vdf: -------------------------------------------------------------------------------- 1 | "ahud" // v2020.1111 2 | { 3 | "ui_version" "3" 4 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_a.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_a" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_b.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_b" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_blu.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_blu" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_blu_locked.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_blu_locked" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_c.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_c" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_d.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_d" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_e.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_e" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_neutral.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_neutral" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_neutral_locked.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_neutral_locked" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_red.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_red" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/sprites/obj_icons/icon_obj_red_locked.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$translucent" "1" 4 | "$baseTexture" "vgui\replay\thumbnails\cp_icons\icon_obj_red_locked" 5 | "$alpha" "1" 6 | "$vertexalpha" "1" 7 | "$vertexcolor" "1" 8 | "$no_fullbright" "1" 9 | "$ignorez" "1" 10 | "%keywords" "tf" 11 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/bg_blu.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\bg_blu" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/bg_blu.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/bg_blu.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/bg_red.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\bg_red" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/bg_red.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/bg_red.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/blank.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\blank" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/blank.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/blank.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/alert.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\buttons\alert" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/alert.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/alert.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/chat.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\buttons\chat" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/chat.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/chat.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/check.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\buttons\check" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/check.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/check.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/heart.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\buttons\heart" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/heart.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/heart.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/motd.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\buttons\motd" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/motd.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/motd.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/pda.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\buttons\pda" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/pda.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/pda.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/reel.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "vgui\replay\thumbnails\buttons\reel" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/reel.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/reel.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/refresh.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\buttons\refresh" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/refresh.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/refresh.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/shutdown.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\buttons\shutdown" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/shutdown.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/shutdown.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/twitch.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\buttons\twitch" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/twitch.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/twitch.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/x.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\buttons\x" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/buttons/x.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/buttons/x.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_a.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_a.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_b.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_b.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_blu.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_blu.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_blu_locked.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_blu_locked.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_c.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_c.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_d.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_d.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_e.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_e.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_neutral.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_neutral.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_neutral_locked.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_neutral_locked.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_red.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_red.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/cp_icons/icon_obj_red_locked.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/cp_icons/icon_obj_red_locked.vtf -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/mmbg.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "vgui\replay\thumbnails\mmbg" 4 | "$vertexcolor" "1" 5 | "$no_fullbright" "1" 6 | "$ignorez" "1" 7 | "$translucent" "1" 8 | } -------------------------------------------------------------------------------- /materials/vgui/replay/thumbnails/mmbg.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/materials/vgui/replay/thumbnails/mmbg.vtf -------------------------------------------------------------------------------- /resource/clientscheme.res: -------------------------------------------------------------------------------- 1 | // Don't edit these lines 2 | 3 | #base "scheme/basesettings.res" 4 | #base "scheme/borders.res" 5 | #base "scheme/colors.res" 6 | #base "scheme/fonts.res" 7 | #base "scheme/xhairs.res" 8 | 9 | // If you want to edit the colors of the HUD 10 | // go to resource/scheme/colors.res and edit 11 | // the colors in that file 12 | 13 | Scheme 14 | { 15 | CustomFontFiles 16 | { 17 | "1" "resource/tf.ttf" 18 | "2" "resource/tfd.ttf" 19 | "3" 20 | { 21 | "font" "resource/TF2.ttf" 22 | "name" "TF2" 23 | } 24 | "4" 25 | { 26 | "font" "resource/TF2Secondary.ttf" 27 | "name" "TF2 Secondary" 28 | } 29 | "5" 30 | { 31 | "font" "resource/TF2Professor.ttf" 32 | "name" "TF2 Professor" 33 | } 34 | "6" 35 | { 36 | "font" "resource/TF2Build.ttf" 37 | "name" "TF2 Build" 38 | } 39 | "7" 40 | { 41 | "font" "resource/fonts/Blocks.ttf" 42 | "name" "Blocks" 43 | } 44 | "8" 45 | { 46 | "font" "resource/fonts/CodeProBold.otf" 47 | "name" "Code-Pro-Bold" 48 | } 49 | "9" 50 | { 51 | "font" "resource/fonts/CodeProLC.otf" 52 | "name" "Code-Pro-LC" 53 | } 54 | "10" 55 | { 56 | "font" "resource/fonts/KnucklesCrosses.ttf" 57 | "name" "KnucklesCrosses" 58 | } 59 | } 60 | } -------------------------------------------------------------------------------- /resource/closecaption_english.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/resource/closecaption_english.dat -------------------------------------------------------------------------------- /resource/closecaption_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/resource/closecaption_english.txt -------------------------------------------------------------------------------- /resource/fonts/Blocks.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/resource/fonts/Blocks.ttf -------------------------------------------------------------------------------- /resource/fonts/CodeProBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/resource/fonts/CodeProBold.otf -------------------------------------------------------------------------------- /resource/fonts/CodeProLC.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/resource/fonts/CodeProLC.otf -------------------------------------------------------------------------------- /resource/fonts/KnucklesCrosses.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/resource/fonts/KnucklesCrosses.ttf -------------------------------------------------------------------------------- /resource/gamemenu.res: -------------------------------------------------------------------------------- 1 | "GameMenu" [$WIN32] 2 | { 3 | "HomeServer" 4 | { 5 | "label" "" 6 | "command" "engine JoinHomeServer" 7 | "OnlyAtMenu" "1" 8 | "tooltip" "Home Server" 9 | } 10 | "SteamWorkshopButton" 11 | { 12 | "label" "Workshop" 13 | "command" "engine OpenSteamWorkshopDialog" 14 | "subimage" "glyph_steamworkshop" 15 | "tooltip" "Open Steam Workshop" 16 | } 17 | 18 | // These buttons are only shown while in-game 19 | // and also are positioned by the .res file 20 | 21 | "RequestCoachButton" 22 | { 23 | "label" "" 24 | "command" "engine cl_coach_find_coach" 25 | "OnlyInGame" "1" 26 | "subimage" "icon_whistle" 27 | "tooltip" "#MMenu_RequestCoach" 28 | } 29 | "CallVoteButton" 30 | { 31 | "label" "" 32 | "command" "callvote" 33 | "OnlyInGame" "1" 34 | "subimage" "icon_checkbox" 35 | "tooltip" "#MMenu_CallVote" 36 | } 37 | "MutePlayersButton" 38 | { 39 | "label" "" 40 | "command" "OpenMutePlayerDialog" 41 | "OnlyInGame" "1" 42 | "subimage" "glyph_muted" 43 | "tooltip" "#MMenu_MutePlayers" 44 | } 45 | "ReportPlayerButton" 46 | { 47 | "label" "" 48 | "command" "OpenReportPlayerDialog" 49 | "OnlyInGame" "1" 50 | "tooltip" "#MMenu_ReportPlayer" 51 | } 52 | } -------------------------------------------------------------------------------- /resource/preload.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/MainMenuOverride.res" 2 | { 3 | "cpiconbluunlock" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "cpiconbluunlock" 7 | "xpos" "9999" 8 | "visible" "1" 9 | "enabled" "1" 10 | "image" "../sprites/obj_icons/icon_obj_blu" 11 | } 12 | 13 | "cpiconblulock" 14 | { 15 | "ControlName" "ImagePanel" 16 | "fieldName" "cpiconblulock" 17 | "xpos" "9999" 18 | "visible" "1" 19 | "enabled" "1" 20 | "image" "../sprites/obj_icons/icon_obj_blu_locked" 21 | } 22 | 23 | "cpiconredunlock" 24 | { 25 | "ControlName" "ImagePanel" 26 | "fieldName" "cpiconredunlock" 27 | "xpos" "9999" 28 | "visible" "1" 29 | "enabled" "1" 30 | "image" "../sprites/obj_icons/icon_obj_red" 31 | } 32 | 33 | "cpiconredlock" 34 | { 35 | "ControlName" "ImagePanel" 36 | "fieldName" "cpiconredlock" 37 | "xpos" "9999" 38 | "visible" "1" 39 | "enabled" "1" 40 | "image" "../sprites/obj_icons/icon_obj_red_locked" 41 | } 42 | 43 | "cpiconneutralunlock" 44 | { 45 | "ControlName" "ImagePanel" 46 | "fieldName" "cpiconneutralunlock" 47 | "xpos" "9999" 48 | "visible" "1" 49 | "enabled" "1" 50 | "image" "../sprites/obj_icons/icon_obj_neutral" 51 | } 52 | 53 | "cpiconneutrallock" 54 | { 55 | "ControlName" "ImagePanel" 56 | "fieldName" "cpiconneutrallock" 57 | "xpos" "9999" 58 | "visible" "1" 59 | "enabled" "1" 60 | "image" "../sprites/obj_icons/icon_obj_neutral_locked" 61 | } 62 | 63 | "cpicona" 64 | { 65 | "ControlName" "ImagePanel" 66 | "fieldName" "cpicona" 67 | "xpos" "9999" 68 | "visible" "1" 69 | "enabled" "1" 70 | "image" "../sprites/obj_icons/icon_obj_a" 71 | } 72 | 73 | "cpiconb" 74 | { 75 | "ControlName" "ImagePanel" 76 | "fieldName" "cpiconb" 77 | "xpos" "9999" 78 | "visible" "1" 79 | "enabled" "1" 80 | "image" "../sprites/obj_icons/icon_obj_b" 81 | } 82 | 83 | "cpiconc" 84 | { 85 | "ControlName" "ImagePanel" 86 | "fieldName" "cpiconc" 87 | "xpos" "9999" 88 | "visible" "1" 89 | "enabled" "1" 90 | "image" "../sprites/obj_icons/icon_obj_c" 91 | } 92 | 93 | "cpicond" 94 | { 95 | "ControlName" "ImagePanel" 96 | "fieldName" "cpicond" 97 | "xpos" "9999" 98 | "visible" "1" 99 | "enabled" "1" 100 | "image" "../sprites/obj_icons/icon_obj_d" 101 | } 102 | 103 | "cpicone" 104 | { 105 | "ControlName" "ImagePanel" 106 | "fieldName" "cpicone" 107 | "xpos" "9999" 108 | "visible" "1" 109 | "enabled" "1" 110 | "image" "../sprites/obj_icons/icon_obj_e" 111 | } 112 | } -------------------------------------------------------------------------------- /resource/ui/basechat.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/BaseChat.res" 2 | { 3 | "HudChat" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "HudChat" 7 | "visible" "1" 8 | "enabled" "1" 9 | "xpos" "1" 10 | "ypos" "r165" 11 | "wide" "210" 12 | "tall" "100" 13 | "PaintBackgroundType" "0" 14 | } 15 | 16 | ChatInputLine 17 | { 18 | "ControlName" "EditablePanel" 19 | "fieldName" "ChatInputLine" 20 | "visible" "1" 21 | "enabled" "1" 22 | "xpos" "10" 23 | "ypos" "395" 24 | "wide" "190" 25 | "tall" "0" 26 | "PaintBackgroundType" "0" 27 | } 28 | 29 | "ChatFiltersButton" 30 | { 31 | "ControlName" "Button" 32 | "fieldName" "ChatFiltersButton" 33 | "xpos" "202" 34 | "ypos" "0" 35 | "wide" "33" 36 | "tall" "8" 37 | "autoResize" "1" 38 | "pinCorner" "0" 39 | "visible" "0" 40 | "enabled" "1" 41 | "tabPosition" "0" 42 | "labelText" "#chat_filterbutton" 43 | "textAlignment" "center" 44 | "dulltext" "0" 45 | "brighttext" "0" 46 | "Default" "0" 47 | } 48 | 49 | "HudChatHistory" 50 | { 51 | "ControlName" "RichText" 52 | "fieldName" "HudChatHistory" 53 | "xpos" "0" 54 | "ypos" "0" 55 | "wide" "210" 56 | "tall" "75" 57 | "wrap" "1" 58 | "autoResize" "1" 59 | "pinCorner" "1" 60 | "visible" "1" 61 | "enabled" "1" 62 | "labelText" "" 63 | "textAlignment" "south-west" 64 | "font" "ChatFont" 65 | "maxchars" "-1" 66 | } 67 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/base_active_teleport_target.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/build_menu/base.res" 2 | { 3 | "ItemNameLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "ItemNameLabel" 7 | "font" "aRegular11" 8 | "xpos" "0" 9 | "ypos" "4" 10 | "zpos" "1" 11 | "wide" "55" 12 | "tall" "15" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "1" 16 | "enabled" "1" 17 | "labelText" "#TF_Object_Sentry" 18 | "textAlignment" "center" 19 | "dulltext" "0" 20 | "brighttext" "0" 21 | "fgcolor" "255 255 255 255" 22 | } 23 | 24 | "ItemBackground" 25 | { 26 | "ControlName" "CIconPanel" 27 | "fieldName" "ItemBackground" 28 | "xpos" "4" 29 | "ypos" "14" 30 | "zpos" "0" 31 | "wide" "98" 32 | "tall" "105" 33 | "visible" "0" 34 | "enabled" "0" 35 | "scaleImage" "1" 36 | "icon" "hud_menu_item_bg" 37 | "iconColor" "ProgressOffWhite" 38 | } 39 | 40 | "BuildingIcon" 41 | { 42 | "ControlName" "CIconPanel" 43 | "fieldName" "BuildingIcon" 44 | "xpos" "10" 45 | "ypos" "19" 46 | "zpos" "2" 47 | "wide" "34" 48 | "tall" "34" 49 | "visible" "1" 50 | "enabled" "1" 51 | "scaleImage" "1" 52 | "icon" "hud_menu_sentry_build" 53 | "iconColor" "255 255 255 255" 54 | } 55 | 56 | "ModeLabel" 57 | { 58 | "ControlName" "CExLabel" 59 | "fieldName" "ModeLabel" 60 | "font" "DefaultSmall" 61 | "fgcolor" "TanDarker" 62 | "xpos" "33" 63 | "ypos" "17" 64 | "zpos" "1" 65 | "wide" "44" 66 | "tall" "13" 67 | "autoResize" "0" 68 | "pinCorner" "0" 69 | "visible" "1" 70 | "enabled" "1" 71 | "labelText" "" 72 | "textAlignment" "East" 73 | } 74 | 75 | "NumberBg" 76 | { 77 | "ControlName" "CIconPanel" 78 | "fieldName" "NumberBg" 79 | "xpos" "41" 80 | "ypos" "99" 81 | "zpos" "0" 82 | "wide" "18" 83 | "tall" "18" 84 | "visible" "0" 85 | "enabled" "0" 86 | "scaleImage" "1" 87 | "icon" "ico_key_blank" 88 | "iconColor" "255 255 255 255" 89 | } 90 | 91 | "NumberLabel" 92 | { 93 | "ControlName" "CExLabel" 94 | "fieldName" "NumberLabel" 95 | "font" "aRegular11" 96 | "fgcolor" "255 255 255 255" 97 | "xpos" "24" 98 | "ypos" "58" 99 | "zpos" "1" 100 | "wide" "7" 101 | "tall" "7" 102 | "autoResize" "0" 103 | "pinCorner" "0" 104 | "visible" "1" 105 | "enabled" "1" 106 | "labelText" "1" 107 | "textAlignment" "center" 108 | "dulltext" "1" 109 | "brighttext" "0" 110 | } 111 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/base_already_built.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/build_menu/base_already_built.res" 2 | { 3 | "ItemNameLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "ItemNameLabel" 7 | "font" "aRegular11" 8 | "xpos" "0" 9 | "ypos" "4" 10 | "zpos" "1" 11 | "wide" "55" 12 | "tall" "15" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "1" 16 | "enabled" "1" 17 | "labelText" "#TF_Object_Sentry" 18 | "textAlignment" "center" 19 | "dulltext" "0" 20 | "brighttext" "0" 21 | "fgcolor" "189 189 189 255" 22 | } 23 | 24 | "ItemBackground" 25 | { 26 | "ControlName" "CIconPanel" 27 | "fieldName" "ItemBackground" 28 | "xpos" "4" 29 | "ypos" "14" 30 | "zpos" "0" 31 | "wide" "98" 32 | "tall" "105" 33 | "visible" "0" 34 | "enabled" "0" 35 | "scaleImage" "1" 36 | "icon" "hud_menu_item_bg_outline" 37 | "iconColor" "ProgressOffWhiteTransparent" 38 | } 39 | 40 | "CantBuildReason" 41 | { 42 | "ControlName" "CExLabel" 43 | "fieldName" "CantBuildReason" 44 | "font" "aRegular8" 45 | "xpos" "0" 46 | "ypos" "30" 47 | "zpos" "2" 48 | "wide" "55" 49 | "tall" "18" 50 | "autoResize" "0" 51 | "pinCorner" "0" 52 | "visible" "1" 53 | "enabled" "1" 54 | "labelText" "#Hud_Menu_Build_Already_Built" 55 | "textAlignment" "center" 56 | "dulltext" "0" 57 | "brighttext" "0" 58 | "fgcolor" "189 189 189 255" 59 | } 60 | 61 | "MetalIcon" 62 | { 63 | "ControlName" "CIconPanel" 64 | "fieldName" "MetalIcon" 65 | "xpos" "13" 66 | "ypos" "58" 67 | "zpos" "1" 68 | "wide" "7" 69 | "tall" "7" 70 | "visible" "1" 71 | "enabled" "0" 72 | "scaleImage" "0" 73 | "icon" "ico_metal" 74 | "iconColor" "189 189 189 255" 75 | "textAlignment" "center" 76 | } 77 | 78 | "CostLabel" 79 | { 80 | "ControlName" "CExLabel" 81 | "fieldName" "CostLabel" 82 | "font" "aRegular11" 83 | "fgcolor" "189 189 189 255" 84 | "xpos" "1" 85 | "ypos" "55" 86 | "zpos" "1" 87 | "wide" "58" 88 | "tall" "13" 89 | "autoResize" "0" 90 | "pinCorner" "0" 91 | "visible" "0" 92 | "enabled" "0" 93 | "labelText" "%metal%" 94 | "textAlignment" "center" 95 | } 96 | 97 | "ModeLabel" 98 | { 99 | "ControlName" "CExLabel" 100 | "fieldName" "ModeLabel" 101 | "font" "DefaultSmall" 102 | "fgcolor" "TanDark" 103 | "xpos" "33" 104 | "ypos" "17" 105 | "zpos" "1" 106 | "wide" "44" 107 | "tall" "13" 108 | "autoResize" "0" 109 | "pinCorner" "0" 110 | "visible" "1" 111 | "enabled" "1" 112 | "labelText" "" 113 | "textAlignment" "East" 114 | } 115 | 116 | "NumberBg" 117 | { 118 | "ControlName" "CIconPanel" 119 | "fieldName" "NumberBg" 120 | "xpos" "41" 121 | "ypos" "99" 122 | "zpos" "0" 123 | "wide" "0" 124 | "tall" "0" 125 | "visible" "0" 126 | "enabled" "0" 127 | "scaleImage" "1" 128 | "icon" "ico_key_blank" 129 | "iconColor" "255 255 255 255" 130 | } 131 | 132 | "NumberLabel" 133 | { 134 | "ControlName" "CExLabel" 135 | "fieldName" "NumberLabel" 136 | "font" "aRegular11" 137 | "fgcolor" "189 189 189 255" 138 | "xpos" "-40" 139 | "ypos" "-2" 140 | "zpos" "1" 141 | "wide" "100" 142 | "tall" "18" 143 | "autoResize" "0" 144 | "pinCorner" "0" 145 | "visible" "0" 146 | "enabled" "0" 147 | "labelText" "1" 148 | "textAlignment" "Center" 149 | "dulltext" "1" 150 | "brighttext" "0" 151 | } 152 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/base_unavailable.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/build_menu/base_unavailable.res" 2 | { 3 | "ItemNameLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "ItemNameLabel" 7 | "font" "Default" 8 | "xpos" "0" 9 | "ypos" "4" 10 | "zpos" "1" 11 | "wide" "55" 12 | "tall" "15" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "1" 16 | "enabled" "1" 17 | "labelText" "#TF_Object_Sentry" 18 | "labelText_lodef" "#TF_Object_Sentry_360" 19 | "textAlignment" "center" 20 | "dulltext" "0" 21 | "brighttext" "0" 22 | } 23 | 24 | "ItemBackground" 25 | { 26 | "ControlName" "CIconPanel" 27 | "fieldName" "ItemBackground" 28 | "xpos" "4" 29 | "ypos" "14" 30 | "zpos" "0" 31 | "wide" "98" 32 | "tall" "105" 33 | "visible" "1" 34 | "enabled" "1" 35 | "scaleImage" "1" 36 | "icon" "hud_menu_item_bg_outline" 37 | "iconColor" "ProgressOffWhiteTransparent" 38 | } 39 | 40 | "CantBuildReason" 41 | { 42 | "ControlName" "CExLabel" 43 | "fieldName" "CantBuildReason" 44 | "font" "Default" 45 | "xpos" "0" 46 | "ypos" "30" 47 | "zpos" "2" 48 | "wide" "55" 49 | "tall" "18" 50 | "autoResize" "0" 51 | "pinCorner" "0" 52 | "visible" "1" 53 | "enabled" "1" 54 | "labelText" "#Hud_Menu_Build_Unavailable" 55 | "textAlignment" "center" 56 | "dulltext" "0" 57 | "brighttext" "0" 58 | } 59 | 60 | "MetalIcon" 61 | { 62 | "ControlName" "CIconPanel" 63 | "fieldName" "MetalIcon" 64 | "xpos" "13" 65 | "ypos" "58" 66 | "zpos" "1" 67 | "wide" "7" 68 | "tall" "7" 69 | "visible" "1" 70 | "enabled" "1" 71 | "scaleImage" "1" 72 | "icon" "ico_metal" 73 | "iconColor" "TanDark" 74 | "textAlignment" "center" 75 | } 76 | 77 | "CostLabel" 78 | { 79 | "ControlName" "CExLabel" 80 | "fieldName" "CostLabel" 81 | "font" "aRegular11" 82 | "fgcolor" "TanDark" 83 | "xpos" "0" 84 | "ypos" "55" 85 | "zpos" "1" 86 | "wide" "58" 87 | "tall" "13" 88 | "autoResize" "0" 89 | "pinCorner" "0" 90 | "visible" "1" 91 | "enabled" "1" 92 | "labelText" "%metal%" 93 | "textAlignment" "center" 94 | } 95 | 96 | "ModeLabel" 97 | { 98 | "ControlName" "CExLabel" 99 | "fieldName" "ModeLabel" 100 | "font" "DefaultSmall" 101 | "fgcolor" "TanDark" 102 | "xpos" "33" 103 | "ypos" "17" 104 | "zpos" "1" 105 | "wide" "44" 106 | "tall" "13" 107 | "autoResize" "0" 108 | "pinCorner" "0" 109 | "visible" "1" 110 | "enabled" "1" 111 | "labelText" "" 112 | "textAlignment" "East" 113 | } 114 | 115 | "NumberBg" 116 | { 117 | "ControlName" "CIconPanel" 118 | "fieldName" "NumberBg" 119 | "xpos" "41" 120 | "ypos" "99" 121 | "zpos" "0" 122 | "wide" "18" 123 | "tall" "18" 124 | "visible" "1" 125 | "enabled" "1" 126 | "scaleImage" "1" 127 | "icon" "ico_key_blank" 128 | "iconColor" "255 255 255 255" 129 | } 130 | 131 | "NumberLabel" 132 | { 133 | "ControlName" "CExLabel" 134 | "fieldName" "NumberLabel" 135 | "font" "HudMenuNumberFont" 136 | "fgcolor" "Black" 137 | "xpos" "0" 138 | "ypos" "98" 139 | "zpos" "1" 140 | "wide" "100" 141 | "tall" "18" 142 | "autoResize" "0" 143 | "pinCorner" "0" 144 | "visible" "1" 145 | "enabled" "0" 146 | "labelText" "0" 147 | "textAlignment" "Center" 148 | "dulltext" "1" 149 | "brighttext" "0" 150 | } 151 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/base_unavailable_teleport_target.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/build_menu/base_unavailable.res" 2 | { 3 | "ItemNameLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "ItemNameLabel" 7 | "font" "aRegular11" 8 | "xpos" "0" 9 | "ypos" "4" 10 | "zpos" "1" 11 | "wide" "55" 12 | "tall" "15" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "1" 16 | "enabled" "1" 17 | "labelText" "#TF_Object_Sentry" 18 | "textAlignment" "center" 19 | "dulltext" "0" 20 | "brighttext" "0" 21 | "fgcolor" "200 10 20 255" 22 | } 23 | 24 | "ItemBackground" 25 | { 26 | "ControlName" "CIconPanel" 27 | "fieldName" "ItemBackground" 28 | "xpos" "4" 29 | "ypos" "14" 30 | "zpos" "0" 31 | "wide" "98" 32 | "tall" "105" 33 | "visible" "0" 34 | "enabled" "0" 35 | "scaleImage" "1" 36 | "icon" "hud_menu_item_bg" 37 | "iconColor" "ProgressOffWhite" 38 | } 39 | 40 | "CantBuildReason" 41 | { 42 | "ControlName" "CExLabel" 43 | "fieldName" "CantBuildReason" 44 | "font" "aRegular8" 45 | "fgcolor" "200 10 20 255" 46 | "xpos" "0" 47 | "ypos" "30" 48 | "zpos" "2" 49 | "wide" "55" 50 | "tall" "18" 51 | "autoResize" "0" 52 | "pinCorner" "0" 53 | "visible" "1" 54 | "enabled" "1" 55 | "labelText" "#Hud_Menu_Build_Unavailable" 56 | "textAlignment" "center" 57 | "dulltext" "0" 58 | "brighttext" "0" 59 | } 60 | 61 | "ModeLabel" 62 | { 63 | "ControlName" "CExLabel" 64 | "fieldName" "ModeLabel" 65 | "font" "DefaultSmall" 66 | "fgcolor" "TanDark" 67 | "xpos" "33" 68 | "ypos" "17" 69 | "zpos" "1" 70 | "wide" "44" 71 | "tall" "13" 72 | "autoResize" "0" 73 | "pinCorner" "0" 74 | "visible" "1" 75 | "enabled" "1" 76 | "labelText" "" 77 | "textAlignment" "East" 78 | } 79 | 80 | "NumberBg" 81 | { 82 | "ControlName" "CIconPanel" 83 | "fieldName" "NumberBg" 84 | "xpos" "41" 85 | "ypos" "99" 86 | "zpos" "0" 87 | "wide" "18" 88 | "tall" "18" 89 | "visible" "0" 90 | "enabled" "0" 91 | "scaleImage" "1" 92 | "icon" "ico_key_blank" 93 | "iconColor" "255 255 255 255" 94 | } 95 | 96 | "NumberLabel" 97 | { 98 | "ControlName" "CExLabel" 99 | "fieldName" "NumberLabel" 100 | "font" "aRegular11" 101 | "fgcolor" "255 255 255 255" 102 | "xpos" "25" 103 | "ypos" "58" 104 | "zpos" "1" 105 | "wide" "7" 106 | "tall" "7" 107 | "autoResize" "0" 108 | "pinCorner" "0" 109 | "visible" "0" 110 | "enabled" "0" 111 | "labelText" "1" 112 | "textAlignment" "center" 113 | "dulltext" "1" 114 | "brighttext" "0" 115 | } 116 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/pipboy/base_active.res: -------------------------------------------------------------------------------- 1 | #base "../base_active.res" 2 | 3 | "Resource/UI/build_menu/base.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "fgcolor" "ahudPipBoy" 8 | } 9 | 10 | "ItemBackground" 11 | { 12 | "iconColor" "0 0 0 255" 13 | } 14 | 15 | "BuildingIcon" 16 | { 17 | "iconColor" "ahudPipBoy" 18 | } 19 | 20 | "MetalIcon" 21 | { 22 | "xpos" "10" 23 | "ypos" "18" 24 | "wide" "10" 25 | "tall" "10" 26 | "iconColor" "ahudPipBoy" 27 | } 28 | 29 | "CostLabel" 30 | { 31 | "fgcolor" "ahudPipBoy" 32 | } 33 | 34 | "NumberLabel" 35 | { 36 | "fgcolor" "ahudPipBoy" 37 | } 38 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/pipboy/base_active_teleport_target.res: -------------------------------------------------------------------------------- 1 | #base "../base_active_teleport_target.res" 2 | 3 | "Resource/UI/build_menu/base.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "fgcolor" "ahudPipBoy" 8 | } 9 | 10 | "BuildingIcon" 11 | { 12 | "iconColor" "ahudPipBoy" 13 | } 14 | 15 | "NumberLabel" 16 | { 17 | "fgcolor" "ahudPipBoy" 18 | } 19 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/pipboy/base_already_built.res: -------------------------------------------------------------------------------- 1 | #base "../base_already_built.res" 2 | 3 | "Resource/UI/build_menu/base_already_built.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "fgcolor" "ahudPipBoy" 8 | } 9 | 10 | "CantBuildReason" 11 | { 12 | "fgcolor" "ahudPipBoy" 13 | } 14 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/pipboy/base_cant_afford.res: -------------------------------------------------------------------------------- 1 | #base "../base_cant_afford.res" 2 | 3 | "Resource/UI/build_menu/base_cant_afford.res" 4 | { 5 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/pipboy/base_unavailable.res: -------------------------------------------------------------------------------- 1 | #base "../base_unavailable.res" 2 | 3 | "Resource/UI/build_menu/base_unavailable.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/pipboy/base_unavailable_teleport_target.res: -------------------------------------------------------------------------------- 1 | #base "../base_unavailable_teleport_target.res" 2 | 3 | "Resource/UI/build_menu/base_unavailable.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "fgcolor" "ahudPipBoy" 8 | } 9 | 10 | "CantBuildReason" 11 | { 12 | "fgcolor" "ahudPipBoy" 13 | } 14 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/pipboy/hudmenuengybuild.res: -------------------------------------------------------------------------------- 1 | #base "../HudMenuEngyBuild.res" 2 | 3 | "Resource/UI/build_menu/HudMenuEngyBuild.res" 4 | { 5 | "MainBackground" 6 | { 7 | "ControlName" "EditablePanel" 8 | "fieldName" "MainBackground" 9 | "xpos" "0" 10 | "ypos" "0" 11 | "zpos" "0" 12 | "wide" "450" 13 | "tall" "180" 14 | "visible" "1" 15 | "enabled" "1" 16 | "paintbackground" "0" 17 | } 18 | 19 | "ItemBackground" 20 | { 21 | "ControlName" "CTFImagePanel" 22 | "fieldName" "ItemBackground" 23 | "xpos" "0" 24 | "ypos" "0" 25 | "zpos" "-2" 26 | "wide" "250" 27 | "tall" "88" 28 | "visible" "1" 29 | "enabled" "1" 30 | "scaleImage" "1" 31 | "image" "pipboy_overlay" 32 | "tileImage" "1" 33 | "drawcolor" "192 192 192 255" 34 | } 35 | 36 | "BuildIcon" 37 | { 38 | "ControlName" "CIconPanel" 39 | "fieldName" "BuildIcon" 40 | "xpos" "9999" 41 | "ypos" "9999" 42 | "zpos" "1" 43 | "wide" "48" 44 | "tall" "48" 45 | "visible" "0" 46 | "enabled" "0" 47 | "scaleImage" "1" 48 | "icon" "ico_build" 49 | "iconColor" "ahudPipBoy" 50 | } 51 | 52 | "TitleLabel" 53 | { 54 | "fgcolor" "ahudPipBoy" 55 | } 56 | 57 | "CancelLabel" 58 | { 59 | "fgcolor" "ahudPipBoy" 60 | } 61 | } -------------------------------------------------------------------------------- /resource/ui/build_menu/pipboy/hudmenueurekaeffect.res: -------------------------------------------------------------------------------- 1 | #base "../HudMenuEurekaEffect.res" 2 | 3 | "Resource/UI/build_menu/HudMenuEurekaEffect.res" 4 | { 5 | "MainBackground" 6 | { 7 | "ControlName" "CIconPanel" 8 | "fieldName" "MainBackground" 9 | "xpos" "0" 10 | "ypos" "10" 11 | "zpos" "0" 12 | "wide" "250" 13 | "tall" "170" 14 | "visible" "0" 15 | "enabled" "0" 16 | "scaleImage" "1" 17 | "paintbackground" "0" 18 | } 19 | 20 | "ItemBackground" 21 | { 22 | "ControlName" "CTFImagePanel" 23 | "fieldName" "ItemBackground" 24 | "xpos" "0" 25 | "ypos" "0" 26 | "zpos" "-2" 27 | "wide" "150" 28 | "tall" "88" 29 | "visible" "1" 30 | "enabled" "1" 31 | "scaleImage" "1" 32 | "image" "pipboy_overlay" 33 | "tileImage" "1" 34 | "drawcolor" "192 192 192 255" 35 | } 36 | 37 | "BuildIcon" 38 | { 39 | "iconColor" "ahudPipBoy" 40 | } 41 | 42 | "TitleLabel" 43 | { 44 | "fgcolor" "ahudPipBoy" 45 | } 46 | 47 | "CancelLabel" 48 | { 49 | "fgcolor" "ahudPipBoy" 50 | } 51 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/base_active.res: -------------------------------------------------------------------------------- 1 | #base "../build_menu/base_active.res" 2 | 3 | "Resource/UI/build_menu/base.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/base_active_teleport_target.res: -------------------------------------------------------------------------------- 1 | #base "../build_menu/base.res" 2 | 3 | "Resource/UI/build_menu/base.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/base_already_built.res: -------------------------------------------------------------------------------- 1 | #base "../build_menu/base_already_built.res" 2 | 3 | "Resource/UI/build_menu/base_already_built.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/base_cant_afford.res: -------------------------------------------------------------------------------- 1 | #base "../build_menu/base_cant_afford.res" 2 | 3 | "Resource/UI/build_menu/base_cant_afford.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/base_unavailable.res: -------------------------------------------------------------------------------- 1 | #base "../build_menu/base_unavailable.res" 2 | 3 | "Resource/UI/build_menu/base_unavailable.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/base_unavailable_teleport_target.res: -------------------------------------------------------------------------------- 1 | #base "../build_menu/base_unavailable.res" 2 | 3 | "Resource/UI/build_menu/base_unavailable.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/hudmenuengybuild.res: -------------------------------------------------------------------------------- 1 | #base "../build_menu/HudMenuEngyBuild.res" 2 | 3 | "Resource/UI/build_menu/HudMenuEngyBuild.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/hudmenueurekaeffect.res: -------------------------------------------------------------------------------- 1 | #base "../build_menu/HudMenuEurekaEffect.res" 2 | 3 | "Resource/UI/build_menu/HudMenuEurekaEffect.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/pipboy/base_active.res: -------------------------------------------------------------------------------- 1 | #base "../../build_menu/base_active.res" 2 | 3 | "Resource/UI/build_menu/base.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/pipboy/base_active_teleport_target.res: -------------------------------------------------------------------------------- 1 | #base "../../build_menu/base_active_teleport_target.res" 2 | 3 | "Resource/UI/build_menu/base.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/pipboy/base_already_built.res: -------------------------------------------------------------------------------- 1 | #base "../../build_menu/base_already_built.res" 2 | 3 | "Resource/UI/build_menu/base_already_built.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/pipboy/base_cant_afford.res: -------------------------------------------------------------------------------- 1 | #base "../../build_menu/base_cant_afford.res" 2 | 3 | "Resource/UI/build_menu/base_cant_afford.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/pipboy/base_unavailable.res: -------------------------------------------------------------------------------- 1 | #base "../../build_menu/base_unavailable.res" 2 | 3 | "Resource/UI/build_menu/base_unavailable.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/pipboy/base_unavailable_teleport_target.res: -------------------------------------------------------------------------------- 1 | #base "../../build_menu/base_unavailable_teleport_target.res" 2 | 3 | "Resource/UI/build_menu/base_unavailable.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/pipboy/hudmenuengybuild.res: -------------------------------------------------------------------------------- 1 | #base "../../build_menu/HudMenuEngyBuild.res" 2 | 3 | "Resource/UI/build_menu/HudMenuEngyBuild.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/build_menu_360/pipboy/hudmenueurekaeffect.res: -------------------------------------------------------------------------------- 1 | #base "../../build_menu/HudMenuEurekaEffect.res" 2 | 3 | "Resource/UI/build_menu/HudMenuEurekaEffect.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/controlpointcountdown.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/ControlPointCountdown.res" 2 | { 3 | "CapCountdownLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "CapCountdownLabel" 7 | "font" "aRegular14" 8 | "xpos" "0" 9 | "ypos" "0" 10 | "zpos" "1" 11 | "wide" "30" 12 | "tall" "30" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "1" 16 | "enabled" "1" 17 | "wrap" "0" 18 | "labelText" "%capturetime%" 19 | "textAlignment" "center" 20 | "fgcolor" "235 226 202 255" 21 | "bgcolor" "235 226 202 255" 22 | } 23 | } -------------------------------------------------------------------------------- /resource/ui/controlpointicon.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/ControlPointIcon.res" 2 | { 3 | "ControlPointIcon" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "ControlPointIcon" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "zpos" "2" 10 | "wide" "27" 11 | "tall" "27" 12 | "visible" "1" 13 | "enabled" "1" 14 | } 15 | 16 | "Countdown" 17 | { 18 | "ControlName" "CControlPointCountdown" 19 | "fieldName" "Countdown" 20 | "xpos" "0" 21 | "ypos" "0" 22 | "zpos" "4" 23 | "wide" "27" 24 | "tall" "27" 25 | "visible" "1" 26 | "enabled" "1" 27 | } 28 | 29 | "CapPlayerImage" 30 | { 31 | "ControlName" "ImagePanel" 32 | "fieldName" "CapPlayerImage" 33 | "xpos" "0" 34 | "ypos" "0" 35 | "zpos" "3" 36 | "wide" "8" 37 | "tall" "16" 38 | "visible" "0" 39 | "enabled" "1" 40 | "image" "capture_icon" 41 | "scaleImage" "1" 42 | } 43 | 44 | "CapNumPlayers" 45 | { 46 | "ControlName" "Label" 47 | "fieldName" "CapNumPlayers" 48 | "font" "aRegular12" 49 | "xpos" "12" 50 | "ypos" "2" 51 | "zpos" "4" 52 | "wide" "12" 53 | "tall" "24" 54 | "autoResize" "0" 55 | "pinCorner" "0" 56 | "visible" "1" 57 | "enabled" "1" 58 | "labelText" "#ControlPointIconCappers" 59 | "textAlignment" "west" 60 | "dulltext" "0" 61 | "brighttext" "0" 62 | } 63 | 64 | "OverlayImage" 65 | { 66 | "ControlName" "ImagePanel" 67 | "fieldName" "OverlayImage" 68 | "xpos" "17" 69 | "ypos" "0" 70 | "zpos" "4" 71 | "wide" "10" 72 | "tall" "10" 73 | "visible" "0" 74 | "enabled" "1" 75 | "image" "capture_icon" 76 | "scaleImage" "1" 77 | } 78 | 79 | "CPTimerLabel" 80 | { 81 | "ControlName" "CExLabel" 82 | "fieldName" "CPTimerLabel" 83 | "xpos" "0" 84 | "ypos" "0" 85 | "zpos" "0" 86 | "wide" "9" 87 | "tall" "20" 88 | "visible" "0" 89 | "enabled" "1" 90 | "labelText" "60" 91 | "textAlignment" "center" 92 | "dulltext" "0" 93 | "brighttext" "0" 94 | "wrap" "0" 95 | "font" "ControlPointTimer" 96 | } 97 | 98 | "CPTimerBG" 99 | { 100 | "ControlName" "Panel" 101 | "fieldName" "CPTimerBG" 102 | "xpos" "0" 103 | "ypos" "0" 104 | "zpos" "-1" 105 | "wide" "60" 106 | "tall" "30" 107 | "visible" "0" 108 | "enabled" "1" 109 | "image" "../sprites/obj_icons/icon_obj_timer" 110 | "scaleImage" "1" 111 | } 112 | } -------------------------------------------------------------------------------- /resource/ui/controlpointprogressbar.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/ControlPointProgressBar.res" 2 | { 3 | "ControlPointProgressBar" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "ControlPointProgressBar" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "zpos" "20" 10 | "wide" "100" 11 | "tall" "65" 12 | "visible" "0" 13 | "enabled" "1" 14 | } 15 | 16 | "ProgressBar" 17 | { 18 | "ControlName" "CircularProgressBar" 19 | "fieldName" "ProgressBar" 20 | "wide" "0" 21 | "tall" "0" 22 | "visible" "0" 23 | "enabled" "0" 24 | } 25 | 26 | "Teardrop" 27 | { 28 | "ControlName" "CIconPanel" 29 | "fieldName" "Teardrop" 30 | "wide" "0" 31 | "tall" "0" 32 | "visible" "0" 33 | "enabled" "0" 34 | } 35 | 36 | "TeardropSide" 37 | { 38 | "ControlName" "CIconPanel" 39 | "fieldName" "TeardropSide" 40 | "wide" "0" 41 | "tall" "0" 42 | "visible" "0" 43 | "enabled" "0" 44 | } 45 | 46 | "ProgressText" 47 | { 48 | "ControlName" "Label" 49 | "fieldName" "ProgressText" 50 | "wide" "0" 51 | "tall" "0" 52 | "visible" "0" 53 | "enabled" "0" 54 | } 55 | 56 | "Blocked" 57 | { 58 | "ControlName" "CIconPanel" 59 | "fieldName" "Blocked" 60 | "wide" "0" 61 | "tall" "0" 62 | "visible" "0" 63 | "enabled" "0" 64 | } 65 | } -------------------------------------------------------------------------------- /resource/ui/craftingstatusdialog.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/CraftingStatusDialog.res" 2 | { 3 | "CraftingStatusDialog" 4 | { 5 | "fieldName" "CraftingStatusDialog" 6 | "visible" "1" 7 | "enabled" "1" 8 | "xpos" "c-100" 9 | "ypos" "200" 10 | "wide" "200" 11 | "tall" "110" 12 | "bgcolor_override" "ahudDarkerGrey" 13 | "paintbackgroundtype" "0" 14 | "settitlebarvisible" "0" 15 | "border" "ahudPanelBorder" 16 | } 17 | 18 | "CenterPositioner" 19 | { 20 | "ControlName" "Label" 21 | "fieldName" "CenterPositioner" 22 | "font" "HudFontSmallBold" 23 | "xpos" "0" 24 | "ypos" "10" 25 | "zpos" "0" 26 | "wide" "200" 27 | "tall" "0" 28 | "autoResize" "0" 29 | "pinCorner" "0" 30 | "visible" "1" 31 | "enabled" "1" 32 | "wrap" "0" 33 | "centerwrap" "0" 34 | "labelText" "" 35 | "textAlignment" "center" 36 | "bgcolor_override" "0 0 0 0" 37 | } 38 | 39 | "RecipeItemModelPanel" 40 | { 41 | "ControlName" "CItemModelPanel" 42 | "fieldName" "RecipeItemModelPanel" 43 | "visible" "0" 44 | } 45 | 46 | "TitleLabel" 47 | { 48 | "ControlName" "Label" 49 | "fieldName" "TitleLabel" 50 | "font" "HudFontSmallBold" 51 | "xpos" "0" 52 | "ypos" "0" 53 | "zpos" "0" 54 | "wide" "200" 55 | "tall" "60" 56 | "autoResize" "0" 57 | "pinCorner" "0" 58 | "visible" "1" 59 | "enabled" "1" 60 | "wrap" "0" 61 | "centerwrap" "1" 62 | "labelText" "%updatetext%" 63 | "textAlignment" "center" 64 | "fgcolor_override" "200 80 60 255" 65 | "bgcolor_override" "0 0 0 0" 66 | "auto_wide_tocontents" "1" 67 | 68 | "pin_to_sibling" "CenterPositioner" 69 | "pin_corner_to_sibling" "4" 70 | "pin_to_sibling_corner" "4" 71 | } 72 | "EllipsesLabel" 73 | { 74 | "ControlName" "Label" 75 | "fieldName" "EllipsesLabel" 76 | "font" "HudFontSmallBold" 77 | "xpos" "0" 78 | "ypos" "0" 79 | "zpos" "0" 80 | "wide" "200" 81 | "tall" "60" 82 | "autoResize" "0" 83 | "pinCorner" "0" 84 | "visible" "1" 85 | "enabled" "1" 86 | "labelText" "%ellipses%" 87 | "textAlignment" "west" 88 | "fgcolor_override" "200 80 60 255" 89 | "bgcolor_override" "0 0 0 0" 90 | 91 | "pin_to_sibling" "TitleLabel" 92 | "pin_corner_to_sibling" "0" 93 | "pin_to_sibling_corner" "1" 94 | } 95 | 96 | "CloseButton" 97 | { 98 | "ControlName" "CExButton" 99 | "fieldName" "CloseButton" 100 | "xpos" "50" 101 | "ypos" "75" 102 | "zpos" "1" 103 | "wide" "100" 104 | "tall" "25" 105 | "autoResize" "0" 106 | "pinCorner" "3" 107 | "visible" "1" 108 | "enabled" "1" 109 | "tabPosition" "0" 110 | "labelText" "#GameUI_Ok" 111 | "font" "HudFontSmallBold" 112 | "textAlignment" "center" 113 | "dulltext" "0" 114 | "brighttext" "0" 115 | "default" "1" 116 | "Command" "close" 117 | "sound_depressed" "UI/buttonclick.wav" 118 | "sound_released" "UI/buttonclickrelease.wav" 119 | } 120 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/base_active.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/destroy_menu/base_active.res" 2 | { 3 | "ItemNameLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "ItemNameLabel" 7 | "font" "aRegular11" 8 | "xpos" "0" 9 | "ypos" "4" 10 | "zpos" "1" 11 | "wide" "55" 12 | "tall" "15" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "1" 16 | "enabled" "1" 17 | "labelText" "#TF_Object_Sentry" 18 | "textAlignment" "center" 19 | "dulltext" "0" 20 | "brighttext" "0" 21 | "fgcolor" "200 10 20 255" 22 | } 23 | 24 | "ItemBackground" 25 | { 26 | "ControlName" "CIconPanel" 27 | "fieldName" "ItemBackground" 28 | "xpos" "4" 29 | "ypos" "14" 30 | "zpos" "0" 31 | "wide" "98" 32 | "tall" "105" 33 | "visible" "0" 34 | "enabled" "0" 35 | "scaleImage" "1" 36 | "icon" "hud_menu_item_bg_outline" 37 | "iconColor" "ProgressOffWhite" 38 | } 39 | 40 | "DestroyIcon" 41 | { 42 | "ControlName" "CIconPanel" 43 | "fieldName" "DestroyIcon" 44 | "xpos" "10" 45 | "ypos" "16" 46 | "zpos" "1" 47 | "wide" "34" 48 | "tall" "34" 49 | "visible" "1" 50 | "enabled" "1" 51 | "scaleImage" "1" 52 | "icon" "ico_demolish" 53 | "iconColor" "255 0 0 255" 54 | } 55 | 56 | "BuildingIcon" 57 | { 58 | "ControlName" "CIconPanel" 59 | "fieldName" "BuildingIcon" 60 | "xpos" "10" 61 | "ypos" "16" 62 | "zpos" "2" 63 | "wide" "34" 64 | "tall" "34" 65 | "visible" "1" 66 | "enabled" "1" 67 | "scaleImage" "1" 68 | "icon" "hud_menu_sentry_build" 69 | "iconColor" "255 255 255 255" 70 | } 71 | 72 | "NumberBg" 73 | { 74 | "ControlName" "CIconPanel" 75 | "fieldName" "NumberBg" 76 | "xpos" "41" 77 | "ypos" "99" 78 | "zpos" "0" 79 | "wide" "18" 80 | "tall" "18" 81 | "visible" "0" 82 | "enabled" "0" 83 | "scaleImage" "1" 84 | "icon" "ico_key_blank" 85 | "iconColor" "255 255 255 255" 86 | } 87 | 88 | "NumberLabel" 89 | { 90 | "ControlName" "CExLabel" 91 | "fieldName" "NumberLabel" 92 | "font" "aRegular11" 93 | "fgcolor" "200 10 20 255" 94 | "xpos" "0" 95 | "ypos" "49" 96 | "zpos" "1" 97 | "wide" "55" 98 | "tall" "20" 99 | "autoResize" "0" 100 | "pinCorner" "0" 101 | "visible" "1" 102 | "enabled" "1" 103 | "labelText" "2" 104 | "textAlignment" "Center" 105 | "dulltext" "1" 106 | "brighttext" "0" 107 | } 108 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/base_inactive.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/destroy_menu/base_inactive.res" 2 | { 3 | "ItemNameLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "ItemNameLabel" 7 | "font" "aRegular11" 8 | "xpos" "0" 9 | "ypos" "4" 10 | "zpos" "1" 11 | "wide" "55" 12 | "tall" "15" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "1" 16 | "enabled" "1" 17 | "labelText" "#TF_Object_Sentry" 18 | "textAlignment" "center" 19 | "dulltext" "0" 20 | "brighttext" "0" 21 | "fgcolor" "189 189 189 255" 22 | } 23 | 24 | "ItemBackground" 25 | { 26 | "ControlName" "CIconPanel" 27 | "fieldName" "ItemBackground" 28 | "xpos" "4" 29 | "ypos" "14" 30 | "zpos" "0" 31 | "wide" "98" 32 | "tall" "105" 33 | "visible" "0" 34 | "enabled" "0" 35 | "scaleImage" "1" 36 | "icon" "hud_menu_item_bg_outline" 37 | "iconColor" "ProgressOffWhiteTransparent" 38 | } 39 | 40 | "NotBuiltLabel" 41 | { 42 | "ControlName" "CExLabel" 43 | "fieldName" "NotBuiltLabel" 44 | "font" "aRegular8" 45 | "xpos" "0" 46 | "ypos" "28" 47 | "zpos" "2" 48 | "wide" "55" 49 | "tall" "18" 50 | "autoResize" "0" 51 | "pinCorner" "0" 52 | "visible" "1" 53 | "enabled" "1" 54 | "labelText" "#TF_NotBuilt" 55 | "textAlignment" "center" 56 | "fgcolor" "189 189 189 255" 57 | } 58 | 59 | "UnavailableLabel" 60 | { 61 | "ControlName" "CExLabel" 62 | "fieldName" "UnavailableLabel" 63 | "font" "Default" 64 | "xpos" "10" 65 | "ypos" "48" 66 | "zpos" "2" 67 | "wide" "80" 68 | "tall" "18" 69 | "autoResize" "0" 70 | "pinCorner" "0" 71 | "visible" "0" 72 | "enabled" "1" 73 | "labelText" "#Hud_Menu_Build_Unavailable" 74 | "textAlignment" "Center" 75 | "dulltext" "0" 76 | "brighttext" "0" 77 | "fgcolor" "189 189 189 255" 78 | } 79 | 80 | "NumberBg" 81 | { 82 | "ControlName" "CIconPanel" 83 | "fieldName" "NumberBg" 84 | "xpos" "41" 85 | "ypos" "99" 86 | "zpos" "0" 87 | "wide" "18" 88 | "tall" "18" 89 | "visible" "0" 90 | "enabled" "0" 91 | "scaleImage" "1" 92 | "icon" "ico_key_blank" 93 | "iconColor" "255 255 255 128" 94 | } 95 | 96 | "NumberLabel" 97 | { 98 | "ControlName" "CExLabel" 99 | "fieldName" "NumberLabel" 100 | "font" "aRegular11" 101 | "fgcolor" "189 189 189 255" 102 | "xpos" "-28" 103 | "ypos" "-5" 104 | "zpos" "1" 105 | "wide" "100" 106 | "tall" "18" 107 | "autoResize" "0" 108 | "pinCorner" "0" 109 | "visible" "0" 110 | "enabled" "0" 111 | "labelText" "2" 112 | "textAlignment" "Center" 113 | "dulltext" "1" 114 | "brighttext" "0" 115 | } 116 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/dispenser_active.res: -------------------------------------------------------------------------------- 1 | #base "base_active.res" 2 | 3 | "Resource/UI/destroy_menu/dispenser_active.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Dispenser" 8 | } 9 | 10 | "BuildingIcon" 11 | { 12 | "icon" "obj_status_dispenser" 13 | } 14 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/dispenser_inactive.res: -------------------------------------------------------------------------------- 1 | #base "base_inactive.res" 2 | 3 | "Resource/UI/build_menu/dispenser_inactive.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Dispenser" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/pipboy/dispenser_active.res: -------------------------------------------------------------------------------- 1 | #base "../base_active.res" 2 | 3 | "Resource/UI/destroy_menu/dispenser_active.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Dispenser" 8 | "fgcolor_override" "ahudPipBoy" 9 | } 10 | 11 | "BuildingIcon" 12 | { 13 | "icon" "obj_status_dispenser" 14 | } 15 | 16 | "DestroyIcon" 17 | { 18 | "iconColor" "ahudPipBoy" 19 | } 20 | 21 | "NumberLabel" 22 | { 23 | "fgcolor_override" "ahudPipBoy" 24 | } 25 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/pipboy/dispenser_inactive.res: -------------------------------------------------------------------------------- 1 | #base "../base_inactive.res" 2 | 3 | "Resource/UI/build_menu/dispenser_inactive.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Dispenser" 8 | "fgcolor_override" "ahudPipBoy" 9 | } 10 | 11 | "NumberLabel" 12 | { 13 | "fgcolor_override" "ahudPipBoy" 14 | } 15 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/pipboy/hudmenuengydestroy.res: -------------------------------------------------------------------------------- 1 | #base "../HudMenuEngyDestroy.res" 2 | 3 | "Resource/UI/build_menu/HudMenuEngyDestroy.res" 4 | { 5 | "MainBackground" 6 | { 7 | "ControlName" "EditablePanel" 8 | "fieldName" "MainBackground" 9 | "xpos" "0" 10 | "ypos" "14" 11 | "zpos" "0" 12 | "wide" "450" 13 | "tall" "170" 14 | "visible" "0" 15 | "enabled" "0" 16 | "paintbackground" "0" 17 | } 18 | 19 | "ItemBackground" 20 | { 21 | "ControlName" "CTFImagePanel" 22 | "fieldName" "ItemBackground" 23 | "xpos" "0" 24 | "ypos" "0" 25 | "zpos" "-2" 26 | "wide" "250" 27 | "tall" "88" 28 | "visible" "1" 29 | "enabled" "1" 30 | "scaleImage" "1" 31 | "image" "pipboy_overlay" 32 | "tileImage" "1" 33 | "drawcolor" "192 192 192 255" 34 | } 35 | 36 | "DestroyIcon" 37 | { 38 | "xpos" "9999" 39 | "ypos" "9999" 40 | "iconColor" "ahudPipBoy" 41 | } 42 | 43 | "TitleLabel" 44 | { 45 | "fgcolor" "ahudPipBoy" 46 | } 47 | 48 | "CancelLabel" 49 | { 50 | "fgcolor" "ahudPipBoy" 51 | } 52 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/pipboy/sentry_active.res: -------------------------------------------------------------------------------- 1 | #base "../base_active.res" 2 | 3 | "Resource/UI/destroy_menu/sentry_active.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Sentry" 8 | "fgcolor_override" "ahudPipBoy" 9 | } 10 | 11 | "BuildingIcon" 12 | { 13 | "icon" "obj_status_sentrygun_1" 14 | } 15 | 16 | "DestroyIcon" 17 | { 18 | "iconColor" "ahudPipBoy" 19 | } 20 | 21 | "NumberLabel" 22 | { 23 | "fgcolor_override" "ahudPipBoy" 24 | } 25 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/pipboy/sentry_inactive.res: -------------------------------------------------------------------------------- 1 | #base "../base_inactive.res" 2 | 3 | "Resource/UI/destroy_menu/sentry_inactive.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Sentry" 8 | "fgcolor_override" "ahudPipBoy" 9 | } 10 | 11 | "NumberLabel" 12 | { 13 | "fgcolor_override" "ahudPipBoy" 14 | } 15 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/pipboy/tele_entrance_active.res: -------------------------------------------------------------------------------- 1 | #base "../base_active.res" 2 | 3 | "Resource/UI/destroy_menu/tele_entrance_active.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Tele_Entrance_360" 8 | "fgcolor_override" "ahudPipBoy" 9 | } 10 | 11 | "BuildingIcon" 12 | { 13 | "icon" "obj_status_tele_entrance" 14 | } 15 | 16 | "DestroyIcon" 17 | { 18 | "iconColor" "ahudPipBoy" 19 | } 20 | 21 | "NumberLabel" 22 | { 23 | "fgcolor_override" "ahudPipBoy" 24 | } 25 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/pipboy/tele_entrance_inactive.res: -------------------------------------------------------------------------------- 1 | #base "../base_inactive.res" 2 | 3 | "Resource/UI/build_menu/tele_entrance_inactive.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Tele_Entrance_360" 8 | "fgcolor_override" "ahudPipBoy" 9 | } 10 | 11 | "NumberLabel" 12 | { 13 | "fgcolor_override" "ahudPipBoy" 14 | } 15 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/pipboy/tele_exit_active.res: -------------------------------------------------------------------------------- 1 | #base "../base_active.res" 2 | 3 | "Resource/UI/destroy_menu/tele_exit_active.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Tele_Exit_360" 8 | "fgcolor_override" "ahudPipBoy" 9 | } 10 | 11 | "BuildingIcon" 12 | { 13 | "icon" "obj_status_tele_exit" 14 | } 15 | 16 | "DestroyIcon" 17 | { 18 | "iconColor" "ahudPipBoy" 19 | } 20 | 21 | "NumberLabel" 22 | { 23 | "fgcolor_override" "ahudPipBoy" 24 | } 25 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/pipboy/tele_exit_inactive.res: -------------------------------------------------------------------------------- 1 | #base "../base_inactive.res" 2 | 3 | "Resource/UI/build_menu/tele_exit_inactive.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Tele_Exit_360" 8 | "fgcolor_override" "ahudPipBoy" 9 | } 10 | 11 | "NumberLabel" 12 | { 13 | "fgcolor_override" "ahudPipBoy" 14 | } 15 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/sentry_active.res: -------------------------------------------------------------------------------- 1 | #base "base_active.res" 2 | 3 | "Resource/UI/destroy_menu/sentry_active.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Sentry" 8 | } 9 | 10 | "BuildingIcon" 11 | { 12 | "icon" "obj_status_sentrygun_1" 13 | } 14 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/sentry_inactive.res: -------------------------------------------------------------------------------- 1 | #base "base_inactive.res" 2 | 3 | "Resource/UI/destroy_menu/sentry_inactive.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Sentry" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/tele_entrance_active.res: -------------------------------------------------------------------------------- 1 | #base "base_active.res" 2 | 3 | "Resource/UI/destroy_menu/tele_entrance_active.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Tele_Entrance_360" 8 | } 9 | 10 | "BuildingIcon" 11 | { 12 | "icon" "obj_status_tele_entrance" 13 | } 14 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/tele_entrance_inactive.res: -------------------------------------------------------------------------------- 1 | #base "base_inactive.res" 2 | 3 | "Resource/UI/build_menu/tele_entrance_inactive.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Tele_Entrance_360" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/tele_exit_active.res: -------------------------------------------------------------------------------- 1 | #base "base_active.res" 2 | 3 | "Resource/UI/destroy_menu/tele_exit_active.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Tele_Exit_360" 8 | } 9 | 10 | "BuildingIcon" 11 | { 12 | "icon" "obj_status_tele_exit" 13 | } 14 | } -------------------------------------------------------------------------------- /resource/ui/destroy_menu/tele_exit_inactive.res: -------------------------------------------------------------------------------- 1 | #base "base_inactive.res" 2 | 3 | "Resource/UI/build_menu/tele_exit_inactive.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Object_Tele_Exit_360" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/demoman_blue.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/demoman_blue.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Demoman" 8 | "fgcolor" "153 194 216 255" 9 | } 10 | 11 | "NewNumberLabel" 12 | { 13 | "fgcolor" "153 194 216 255" 14 | "labelText" "1" 15 | } 16 | 17 | "NumberLabel" 18 | { 19 | "fgcolor" "153 194 216 255" 20 | "labelText" "4" 21 | } 22 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/demoman_red.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/demoman_red.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Demoman" 8 | } 9 | 10 | "NewNumberLabel" 11 | { 12 | "labelText" "1" 13 | } 14 | 15 | "NumberLabel" 16 | { 17 | "labelText" "4" 18 | } 19 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/engineer_blue.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/engineer_blue.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Engineer" 8 | "fgcolor" "153 194 216 255" 9 | } 10 | 11 | "NewNumberLabel" 12 | { 13 | "fgcolor" "153 194 216 255" 14 | "labelText" "3" 15 | } 16 | 17 | "NumberLabel" 18 | { 19 | "fgcolor" "153 194 216 255" 20 | "labelText" "6" 21 | } 22 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/engineer_red.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/engineer_red.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Engineer" 8 | } 9 | 10 | "NumberBg" 11 | { 12 | "wide" "0" 13 | "tall" "0" 14 | } 15 | 16 | "NewNumberLabel" 17 | { 18 | "labelText" "3" 19 | } 20 | 21 | "NumberLabel" 22 | { 23 | "labelText" "6" 24 | } 25 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/heavy_blue.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/heavy_blue.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "fgcolor" "153 194 216 255" 8 | } 9 | 10 | "NewNumberLabel" 11 | { 12 | "fgcolor" "153 194 216 255" 13 | } 14 | 15 | "NumberLabel" 16 | { 17 | "fgcolor" "153 194 216 255" 18 | } 19 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/heavy_red.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/disguise_menu/heavy_red.res" 2 | { 3 | "ItemNameLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "ItemName" 7 | "font" "aRegular10" 8 | "xpos" "20" 9 | "ypos" "0" 10 | "zpos" "1" 11 | "wide" "45" 12 | "tall" "20" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "1" 16 | "enabled" "1" 17 | "labelText" "#TF_Class_Name_HWGuy" 18 | "fgcolor" "251 82 79 255" 19 | "textAlignment" "west" 20 | "dulltext" "0" 21 | "brighttext" "0" 22 | } 23 | 24 | "ClassIcon" 25 | { 26 | "ControlName" "CIconPanel" 27 | "fieldName" "ClassIcon" 28 | "xpos" "9999" 29 | "ypos" "9999" 30 | "zpos" "1" 31 | "wide" "45" 32 | "tall" "90" 33 | "visible" "1" 34 | "enabled" "1" 35 | "scaleImage" "1" 36 | "icon" "hud_menu_scout_red" 37 | } 38 | 39 | "NumberBg" 40 | { 41 | "ControlName" "CIconPanel" 42 | "fieldName" "NumberBg" 43 | "xpos" "9999" 44 | "ypos" "9999" 45 | "zpos" "0" 46 | "wide" "15" 47 | "tall" "15" 48 | "visible" "1" 49 | "enabled" "1" 50 | "scaleImage" "1" 51 | "icon" "ico_key_blank" 52 | "iconColor" "255 255 255 255" 53 | } 54 | 55 | "NewNumberLabel" 56 | { 57 | "ControlName" "CExLabel" 58 | "fieldName" "NumberLabel" 59 | "font" "aRegular10" 60 | "fgcolor" "251 82 79 255" 61 | "xpos" "5" 62 | "ypos" "3" 63 | "zpos" "0" 64 | "wide" "15" 65 | "tall" "15" 66 | "autoResize" "0" 67 | "pinCorner" "0" 68 | "visible" "0" 69 | "enabled" "1" 70 | "labelText" "2" 71 | "textAlignment" "Center" 72 | "dulltext" "1" 73 | "brighttext" "0" 74 | } 75 | 76 | "NumberLabel" 77 | { 78 | "ControlName" "CExLabel" 79 | "fieldName" "NumberLabel" 80 | "font" "aRegular10" 81 | "fgcolor" "251 82 79 255" 82 | "xpos" "5" 83 | "ypos" "3" 84 | "zpos" "0" 85 | "wide" "15" 86 | "tall" "15" 87 | "autoResize" "0" 88 | "pinCorner" "0" 89 | "visible" "1" 90 | "enabled" "1" 91 | "labelText" "5" 92 | "textAlignment" "Center" 93 | "dulltext" "1" 94 | "brighttext" "0" 95 | } 96 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/medic_blue.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/medic_blue.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Medic" 8 | "fgcolor" "153 194 216 255" 9 | } 10 | 11 | "NewNumberLabel" 12 | { 13 | "fgcolor" "153 194 216 255" 14 | "labelText" "1" 15 | } 16 | 17 | "NumberLabel" 18 | { 19 | "fgcolor" "153 194 216 255" 20 | "labelText" "7" 21 | } 22 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/medic_red.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/medic_red.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Medic" 8 | } 9 | 10 | "NewNumberLabel" 11 | { 12 | "labelText" "1" 13 | } 14 | 15 | "NumberLabel" 16 | { 17 | "labelText" "7" 18 | } 19 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/pyro_blue.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/pyro_blue.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Pyro" 8 | "fgcolor" "153 194 216 255" 9 | } 10 | 11 | "NewNumberLabel" 12 | { 13 | "fgcolor" "153 194 216 255" 14 | "labelText" "3" 15 | } 16 | 17 | "NumberLabel" 18 | { 19 | "fgcolor" "153 194 216 255" 20 | "labelText" "3" 21 | } 22 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/pyro_red.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/pyro_red.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Pyro" 8 | } 9 | 10 | "NewNumberLabel" 11 | { 12 | "labelText" "3" 13 | } 14 | 15 | "NumberLabel" 16 | { 17 | "labelText" "3" 18 | } 19 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/scout_blue.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/scout_blue.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Scout" 8 | "fgcolor" "153 194 216 255" 9 | } 10 | 11 | "NewNumberLabel" 12 | { 13 | "fgcolor" "153 194 216 255" 14 | "labelText" "1" 15 | } 16 | 17 | "NumberLabel" 18 | { 19 | "fgcolor" "153 194 216 255" 20 | "labelText" "1" 21 | } 22 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/scout_red.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/scout_red.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Scout" 8 | } 9 | 10 | "NewNumberLabel" 11 | { 12 | "labelText" "1" 13 | } 14 | 15 | "NumberLabel" 16 | { 17 | "labelText" "1" 18 | } 19 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/sniper_blue.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/sniper_blue.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Sniper" 8 | "fgcolor" "153 194 216 255" 9 | } 10 | 11 | "NewNumberLabel" 12 | { 13 | "fgcolor" "153 194 216 255" 14 | } 15 | 16 | "NumberLabel" 17 | { 18 | "fgcolor" "153 194 216 255" 19 | "labelText" "8" 20 | } 21 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/sniper_red.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/sniper_red.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Sniper" 8 | } 9 | 10 | "NumberLabel" 11 | { 12 | "labelText" "8" 13 | } 14 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/soldier_blue.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/soldier_blue.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Soldier" 8 | "fgcolor" "153 194 216 255" 9 | } 10 | 11 | "NewNumberLabel" 12 | { 13 | "fgcolor" "153 194 216 255" 14 | } 15 | 16 | "NumberLabel" 17 | { 18 | "fgcolor" "153 194 216 255" 19 | "labelText" "2" 20 | } 21 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/soldier_red.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/soldier_red.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Soldier" 8 | } 9 | 10 | "NumberLabel" 11 | { 12 | "labelText" "2" 13 | } 14 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/spy_blue.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/spy_blue.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Spy" 8 | "fgcolor" "153 194 216 255" 9 | } 10 | 11 | "NewNumberLabel" 12 | { 13 | "fgcolor" "153 194 216 255" 14 | "labelText" "3" 15 | } 16 | 17 | "NumberLabel" 18 | { 19 | "fgcolor" "153 194 216 255" 20 | "labelText" "9" 21 | } 22 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu/spy_red.res: -------------------------------------------------------------------------------- 1 | #base "heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/spy_red.res" 4 | { 5 | "ItemNameLabel" 6 | { 7 | "labelText" "#TF_Class_Name_Spy" 8 | } 9 | 10 | "NewNumberLabel" 11 | { 12 | "labelText" "3" 13 | } 14 | 15 | "NumberLabel" 16 | { 17 | "labelText" "9" 18 | } 19 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/demoman_blue.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/demoman_blue.res" 2 | 3 | "Resource/UI/disguise_menu/demoman_blue.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/demoman_red.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/demoman_red.res" 2 | 3 | "Resource/UI/disguise_menu/demoman_red.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/engineer_blue.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/engineer_blue.res" 2 | 3 | "Resource/UI/disguise_menu/engineer_blue.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/engineer_red.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/engineer_red.res" 2 | 3 | "Resource/UI/disguise_menu/engineer_red.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/heavy_blue.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/heavy_blue.res" 2 | 3 | "Resource/UI/disguise_menu/heavy_blue.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/heavy_red.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/heavy_red.res" 2 | 3 | "Resource/UI/disguise_menu/heavy_red.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/hudmenuspydisguise.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/HudMenuSpyDisguise.res" 2 | 3 | "Resource/UI/disguise_menu/HudMenuSpyDisguise.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/medic_blue.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/medic_blue.res" 2 | 3 | "Resource/UI/disguise_menu/medic_blue.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/medic_red.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/medic_red.res" 2 | 3 | "Resource/UI/disguise_menu/medic_red.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/pyro_blue.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/pyro_blue.res" 2 | 3 | "Resource/UI/disguise_menu/pyro_blue.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/pyro_red.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/pyro_red.res" 2 | 3 | "Resource/UI/disguise_menu/pyro_red.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/scout_blue.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/scout_blue.res" 2 | 3 | "Resource/UI/disguise_menu/scout_blue.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/scout_red.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/scout_red.res" 2 | 3 | "Resource/UI/disguise_menu/scout_red.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/sniper_blue.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/sniper_blue.res" 2 | 3 | "Resource/UI/disguise_menu/sniper_blue.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/sniper_red.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/sniper_red.res" 2 | 3 | "Resource/UI/disguise_menu/sniper_red.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/soldier_blue.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/soldier_blue.res" 2 | 3 | "Resource/UI/disguise_menu/soldier_blue.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/soldier_red.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/soldier_red.res" 2 | 3 | "Resource/UI/disguise_menu/soldier_red.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/spy_blue.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/spy_blue.res" 2 | 3 | "Resource/UI/disguise_menu/spy_blue.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/disguise_menu_360/spy_red.res: -------------------------------------------------------------------------------- 1 | #base "../disguise_menu/spy_red.res" 2 | 3 | "Resource/UI/disguise_menu/spy_red.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/econ/confirmdialogabandonnopenalty.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/ConfirmDialogAbandonNoPenalty.res" 2 | { 3 | "ConfirmDialog" 4 | { 5 | "ControlName" "Frame" 6 | "fieldName" "ConfirmDialog" 7 | "xpos" "c-150" 8 | "ypos" "140" 9 | "wide" "300" 10 | "tall" "200" 11 | "autoResize" "0" 12 | "pinCorner" "0" 13 | "visible" "1" 14 | "enabled" "1" 15 | "tabPosition" "0" 16 | "settitlebarvisible" "0" 17 | "PaintBackgroundType" "0" 18 | "paintbackground" "1" 19 | "bgcolor_override" "ahudDarkerGrey" 20 | 21 | "BackColor" 22 | { 23 | "ControlName" "EditablePanel" 24 | "fieldName" "BackColor" 25 | "xpos" "0" 26 | "ypos" "0" 27 | "zpos" "-1" 28 | "wide" "300" 29 | "tall" "200" 30 | "visible" "1" 31 | "enabled" "1" 32 | "pinCorner" "0" 33 | "autoResize" "0" 34 | "PaintBackgroundType" "2" 35 | "border" "ahudPanelBorder" 36 | "bgcolor_override" "ahudDarkerGrey" 37 | } 38 | } 39 | 40 | "TitleLabel" 41 | { 42 | "ControlName" "CExLabel" 43 | "fieldName" "TitleLabel" 44 | "font" "aBold16" 45 | "labelText" "#ConfirmTitle" 46 | "textAlignment" "north" 47 | "xpos" "0" 48 | "ypos" "15" 49 | "zpos" "1" 50 | "wide" "300" 51 | "tall" "20" 52 | "autoResize" "1" 53 | "pinCorner" "0" 54 | "visible" "1" 55 | "enabled" "1" 56 | "fgcolor_override" "200 80 60 255" 57 | } 58 | 59 | "AbandonIcon" 60 | { 61 | "ControlName" "ImagePanel" 62 | "fieldName" "AbandonIcon" 63 | "xpos" "10" 64 | "ypos" "52" 65 | "wide" "40" 66 | "tall" "40" 67 | "image" "pve/mvm_timeout_active_large" 68 | "visible" "1" 69 | "enabled" "1" 70 | "scaleImage" "1" 71 | } 72 | 73 | "ExplanationLabel" 74 | { 75 | "ControlName" "CExLabel" 76 | "fieldName" "ExplanationLabel" 77 | "font" "EconFontSmall" 78 | "labelText" "%text%" 79 | "textAlignment" "north-west" 80 | "xpos" "60" 81 | "ypos" "50" 82 | "zpos" "1" 83 | "wide" "220" 84 | "tall" "170" 85 | "autoResize" "0" 86 | "pinCorner" "0" 87 | "visible" "1" 88 | "enabled" "1" 89 | "wrap" "1" 90 | "fgcolor_override" "TanLight" 91 | } 92 | 93 | "CancelButton" 94 | { 95 | "ControlName" "CExButton" 96 | "fieldName" "CancelButton" 97 | "xpos" "190" 98 | "ypos" "165" 99 | "zpos" "20" 100 | "wide" "100" 101 | "tall" "20" 102 | "autoResize" "0" 103 | "pinCorner" "0" 104 | "visible" "1" 105 | "enabled" "1" 106 | "tabPosition" "0" 107 | "labelText" "#GameUI_CancelBold" 108 | "font" "EconFontSmall" 109 | "textAlignment" "center" 110 | "textinsetx" "50" 111 | "dulltext" "0" 112 | "brighttext" "0" 113 | "Command" "cancel" 114 | "sound_depressed" "UI/buttonclick.wav" 115 | "sound_released" "UI/buttonclickrelease.wav" 116 | } 117 | 118 | "ConfirmButton" 119 | { 120 | "ControlName" "CExButton" 121 | "fieldName" "ConfirmButton" 122 | "xpos" "10" 123 | "ypos" "165" 124 | "zpos" "20" 125 | "wide" "175" 126 | "tall" "20" 127 | "default" "1" 128 | "autoResize" "0" 129 | "pinCorner" "0" 130 | "visible" "1" 131 | "enabled" "1" 132 | "tabPosition" "0" 133 | "labelText" "#ConfirmButtonText" 134 | "font" "EconFontSmall" 135 | "textAlignment" "center" 136 | "textinsetx" "50" 137 | "dulltext" "0" 138 | "brighttext" "0" 139 | "Command" "confirm" 140 | "sound_depressed" "UI/buttonclick.wav" 141 | "sound_released" "UI/buttonclickrelease.wav" 142 | } 143 | } -------------------------------------------------------------------------------- /resource/ui/econ/confirmdialogabandonsafe.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/ConfirmDialogAbandonSafe.res" 2 | { 3 | "ConfirmDialog" 4 | { 5 | "ControlName" "Frame" 6 | "fieldName" "ConfirmDialog" 7 | "xpos" "c-150" 8 | "ypos" "140" 9 | "wide" "300" 10 | "tall" "200" 11 | "autoResize" "0" 12 | "pinCorner" "0" 13 | "visible" "1" 14 | "enabled" "1" 15 | "tabPosition" "0" 16 | "settitlebarvisible" "0" 17 | "PaintBackgroundType" "0" 18 | "paintbackground" "1" 19 | "bgcolor_override" "ahudDarkerGrey" 20 | 21 | "BackColor" 22 | { 23 | "ControlName" "EditablePanel" 24 | "fieldName" "BackColor" 25 | "xpos" "0" 26 | "ypos" "0" 27 | "zpos" "-1" 28 | "wide" "300" 29 | "tall" "200" 30 | "visible" "1" 31 | "enabled" "1" 32 | "pinCorner" "0" 33 | "autoResize" "0" 34 | "PaintBackgroundType" "2" 35 | "border" "ahudPanelBorder" 36 | "bgcolor_override" "ahudDarkerGrey" 37 | } 38 | } 39 | 40 | "TitleLabel" 41 | { 42 | "ControlName" "CExLabel" 43 | "fieldName" "TitleLabel" 44 | "font" "aBold16" 45 | "labelText" "#ConfirmTitle" 46 | "textAlignment" "north" 47 | "xpos" "0" 48 | "ypos" "15" 49 | "zpos" "1" 50 | "wide" "300" 51 | "tall" "20" 52 | "autoResize" "1" 53 | "pinCorner" "0" 54 | "visible" "1" 55 | "enabled" "1" 56 | "fgcolor_override" "200 80 60 255" 57 | } 58 | 59 | "ExplanationLabel" 60 | { 61 | "ControlName" "CExLabel" 62 | "fieldName" "ExplanationLabel" 63 | "font" "EconFontSmall" 64 | "labelText" "%text%" 65 | "textAlignment" "north" 66 | "xpos" "40" 67 | "ypos" "50" 68 | "zpos" "1" 69 | "wide" "220" 70 | "tall" "170" 71 | "autoResize" "0" 72 | "pinCorner" "0" 73 | "visible" "1" 74 | "enabled" "1" 75 | "centerwrap" "1" 76 | "fgcolor_override" "TanLight" 77 | } 78 | 79 | "CancelButton" 80 | { 81 | "ControlName" "CExButton" 82 | "fieldName" "CancelButton" 83 | "xpos" "190" 84 | "ypos" "165" 85 | "zpos" "20" 86 | "wide" "100" 87 | "tall" "20" 88 | "autoResize" "0" 89 | "pinCorner" "0" 90 | "visible" "1" 91 | "enabled" "1" 92 | "tabPosition" "0" 93 | "labelText" "#GameUI_CancelBold" 94 | "font" "EconFontSmall" 95 | "textAlignment" "center" 96 | "textinsetx" "50" 97 | "dulltext" "0" 98 | "brighttext" "0" 99 | "Command" "cancel" 100 | "sound_depressed" "UI/buttonclick.wav" 101 | "sound_released" "UI/buttonclickrelease.wav" 102 | } 103 | 104 | "ConfirmButton" 105 | { 106 | "ControlName" "CExButton" 107 | "fieldName" "ConfirmButton" 108 | "xpos" "10" 109 | "ypos" "165" 110 | "zpos" "20" 111 | "wide" "175" 112 | "tall" "20" 113 | "default" "1" 114 | "autoResize" "0" 115 | "pinCorner" "0" 116 | "visible" "1" 117 | "enabled" "1" 118 | "tabPosition" "0" 119 | "labelText" "#ConfirmButtonText" 120 | "font" "EconFontSmall" 121 | "textAlignment" "center" 122 | "textinsetx" "50" 123 | "dulltext" "0" 124 | "brighttext" "0" 125 | "Command" "confirm" 126 | "sound_depressed" "UI/buttonclick.wav" 127 | "sound_released" "UI/buttonclickrelease.wav" 128 | } 129 | } -------------------------------------------------------------------------------- /resource/ui/econ/cyclingadcontainer.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/econ/CyclingAdContainer.res" 2 | { 3 | "ButtonContainer" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "ButtonContainer" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "zpos" "2" 10 | "wide" "f0" 11 | "tall" "10" 12 | "proportionaltoparent" "1" 13 | } 14 | 15 | "PrevButton" 16 | { 17 | "ControlName" "Button" 18 | "fieldName" "PrevButton" 19 | "xpos" "-2" 20 | "ypos" "cs-0.5" 21 | "zpos" "2" 22 | "wide" "10" 23 | "tall" "25" 24 | "autoResize" "0" 25 | "pinCorner" "0" 26 | "visible" "1" 27 | "enabled" "1" 28 | "tabPosition" "0" 29 | "labelText" "<" 30 | "bgcolor_override" "0 0 0 220" 31 | "fgcolor" "White" 32 | "font" "DefaultVerySmall" 33 | "textAlignment" "center" 34 | 35 | "proportionaltoparent" "1" 36 | "paintbackground" "1" 37 | "command" "prev" 38 | "actionsignallevel" "2" 39 | 40 | "defaultBgColor_override" "0 0 0 150" 41 | "armedBgColor_override" "0 0 0 200" 42 | } 43 | 44 | "NextButton" 45 | { 46 | "ControlName" "Button" 47 | "fieldName" "NextButton" 48 | "xpos" "r8" 49 | "ypos" "cs-0.5" 50 | "zpos" "2" 51 | "wide" "10" 52 | "tall" "25" 53 | "autoResize" "0" 54 | "pinCorner" "0" 55 | "visible" "1" 56 | "enabled" "1" 57 | "tabPosition" "0" 58 | "labelText" ">" 59 | "bgcolor_override" "0 0 0 220" 60 | "fgcolor" "White" 61 | "font" "DefaultVerySmall" 62 | "textAlignment" "center" 63 | 64 | "proportionaltoparent" "1" 65 | "paintbackground" "1" 66 | "command" "next" 67 | "actionsignallevel" "2" 68 | 69 | "defaultBgColor_override" "0 0 0 150" 70 | "armedBgColor_override" "0 0 0 200" 71 | } 72 | 73 | "AdsContainer" 74 | { 75 | "ControlName" "EditablePanel" 76 | "fieldName" "AdsContainer" 77 | "xpos" "cs-0.5" 78 | "ypos" "0" 79 | "zpos" "0" 80 | "wide" "f0" 81 | "tall" "f0" 82 | "visible" "1" 83 | "enabled" "1" 84 | "scaleImage" "1" 85 | "proportionaltoparent" "1" 86 | } 87 | 88 | "FadeTransition" 89 | { 90 | "ControlName" "EditablePanel" 91 | "fieldName" "FadeTransition" 92 | "xpos" "cs-0.5" 93 | "ypos" "0" 94 | "zpos" "1" 95 | "wide" "f0" 96 | "tall" "f0" 97 | "visible" "1" 98 | "enabled" "1" 99 | "scaleImage" "1" 100 | "proportionaltoparent" "1" 101 | "mouseinputenabled" "0" 102 | 103 | "bgcolor_override" "0 0 0 255" 104 | } 105 | 106 | } -------------------------------------------------------------------------------- /resource/ui/econ/messageboxdialog.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/MessageBoxDialog.res" 2 | { 3 | "ConfirmDialog" 4 | { 5 | "ControlName" "Frame" 6 | "fieldName" "ConfirmDialog" 7 | "xpos" "c-150" 8 | "ypos" "140" 9 | "wide" "300" 10 | "tall" "230" 11 | "autoResize" "0" 12 | "pinCorner" "0" 13 | "visible" "1" 14 | "enabled" "1" 15 | "tabPosition" "0" 16 | "settitlebarvisible" "0" 17 | "PaintBackgroundType" "0" 18 | "paintbackground" "1" 19 | "bgcolor_override" "ahudDarkerGrey" 20 | 21 | "BackColor" 22 | { 23 | "ControlName" "EditablePanel" 24 | "fieldName" "BackColor" 25 | "xpos" "0" 26 | "ypos" "0" 27 | "zpos" "-1" 28 | "wide" "300" 29 | "tall" "230" 30 | "visible" "1" 31 | "enabled" "1" 32 | "pinCorner" "0" 33 | "autoResize" "0" 34 | "PaintBackgroundType" "2" 35 | "border" "ahudPanelBorder" 36 | "bgcolor_override" "ahudDarkerGrey" 37 | } 38 | } 39 | 40 | "TitleLabel" 41 | { 42 | "ControlName" "CExLabel" 43 | "fieldName" "TitleLabel" 44 | "font" "aBold16" 45 | "labelText" "#ConfirmTitle" 46 | "textAlignment" "north" 47 | "xpos" "0" 48 | "ypos" "15" 49 | "zpos" "1" 50 | "wide" "300" 51 | "tall" "30" 52 | "autoResize" "1" 53 | "pinCorner" "0" 54 | "visible" "1" 55 | "enabled" "1" 56 | } 57 | 58 | "ExplanationLabel" 59 | { 60 | "ControlName" "CExLabel" 61 | "fieldName" "ExplanationLabel" 62 | "font" "EconFontSmall" 63 | "labelText" "%text%" 64 | "textAlignment" "north" 65 | "xpos" "10" 66 | "ypos" "50" 67 | "zpos" "1" 68 | "wide" "280" 69 | "tall" "170" 70 | "autoResize" "0" 71 | "pinCorner" "0" 72 | "visible" "1" 73 | "enabled" "1" 74 | "centerwrap" "1" 75 | "fgcolor_override" "200 80 60 255" 76 | } 77 | 78 | "ConfirmButton" 79 | { 80 | "ControlName" "CExButton" 81 | "fieldName" "ConfirmButton" 82 | "xpos" "62" 83 | "ypos" "190" 84 | "zpos" "20" 85 | "wide" "175" 86 | "tall" "25" 87 | "autoResize" "0" 88 | "pinCorner" "0" 89 | "visible" "1" 90 | "enabled" "1" 91 | "tabPosition" "0" 92 | "labelText" "#ConfirmButtonText" 93 | "font" "EconFontSmall" 94 | "textAlignment" "center" 95 | "textinsetx" "50" 96 | "dulltext" "0" 97 | "brighttext" "0" 98 | "Command" "confirm" 99 | "sound_depressed" "UI/buttonclick.wav" 100 | "sound_released" "UI/buttonclickrelease.wav" 101 | "border_default" "Econ.Button.Border.Default" 102 | "border_armed" "Econ.Button.Border.Armed" 103 | "armedBgColor_override" "Econ.Button.ArmedBgColor" 104 | "armedFgColor_override" "Econ.Button.ArmedFgColor" 105 | "depressedBgColor_override" "Econ.Button.DepressedBgColor" 106 | "depressedFgColor_override" "Econ.Button.DepressedFgColor" 107 | } 108 | } -------------------------------------------------------------------------------- /resource/ui/econ/store/v2/storepage_maps.res: -------------------------------------------------------------------------------- 1 | #base "StorePage.res" 2 | 3 | "Resource/UI/StorePage_Maps.res" 4 | { 5 | "StorePage" 6 | { 7 | "modelpanels_kv" 8 | { 9 | "model_xpos" "6" 10 | "model_ypos" "-3" 11 | "model_wide" "100" 12 | "model_tall" "70" 13 | 14 | "itemmodelpanel" 15 | { 16 | "force_square_image" "1" 17 | } 18 | } 19 | } 20 | 21 | "ClassFilterLabel" 22 | { 23 | "visible" "0" 24 | } 25 | 26 | "ClassFilterNavPanel" 27 | { 28 | "visible" "0" 29 | } 30 | 31 | "ClassFilterLabel" 32 | { 33 | "visible" "0" 34 | } 35 | 36 | "NameFilterLabel" 37 | { 38 | "visible" "0" 39 | } 40 | 41 | "NameFilterTextEntry" 42 | { 43 | "visible" "0" 44 | } 45 | 46 | "SortFilterLabel" 47 | { 48 | "visible" "0" 49 | } 50 | 51 | "SortFilterComboBox" 52 | { 53 | "visible" "0" 54 | } 55 | 56 | "TitleLabel" 57 | { 58 | "ControlName" "CExLabel" 59 | "fieldName" "TitleLabel" 60 | "font" "aRegular14" 61 | "labelText" "Support Community Map Makers and Get a Hat!" 62 | "textAlignment" "north-west" 63 | "xpos" "c-292" 64 | "ypos" "20" 65 | "zpos" "5" 66 | "wide" "500" 67 | "tall" "25" 68 | "autoResize" "1" 69 | "pinCorner" "0" 70 | "visible" "1" 71 | "enabled" "1" 72 | } 73 | 74 | "SubTitleLabel" 75 | { 76 | "ControlName" "CExLabel" 77 | "fieldName" "SubTitleLabel" 78 | "font" "FontStoreOriginalPrice" 79 | "labelText" "#Store_Maps_SubTitle" 80 | "textAlignment" "south-west" 81 | "xpos" "c-292" 82 | "ypos" "30" 83 | "zpos" "5" 84 | "wide" "500" 85 | "tall" "25" 86 | "autoResize" "1" 87 | "pinCorner" "0" 88 | "visible" "1" 89 | "enabled" "1" 90 | "fgcolor" "ahudDullWhite" 91 | } 92 | 93 | "LearnMoreButton" 94 | { 95 | "ControlName" "CExButton" 96 | "fieldName" "LearnMoreButton" 97 | "xpos" "c175" 98 | "ypos" "20" 99 | "zpos" "5" 100 | "wide" "120" 101 | "tall" "25" 102 | "autoResize" "0" 103 | "pinCorner" "0" 104 | "visible" "1" 105 | "enabled" "1" 106 | "tabPosition" "0" 107 | "labelText" "Learn More" 108 | "font" "aRegular14" 109 | "textAlignment" "center" 110 | "dulltext" "0" 111 | "brighttext" "0" 112 | "Command" "maps_learnmore" 113 | "sound_depressed" "UI/buttonclick.wav" 114 | "sound_released" "UI/buttonclickrelease.wav" 115 | } 116 | } -------------------------------------------------------------------------------- /resource/ui/enemycountpanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/EnemyCountPanel.res" 2 | { 3 | "EnemyCountPanel" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "EnemyCountPanel" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "zpos" "3" 10 | "wide" "20" 11 | "tall" "34" 12 | "visible" "0" 13 | "enabled" "1" 14 | } 15 | 16 | "EnemyCountImage" 17 | { 18 | "ControlName" "CTFImagePanel" 19 | "fieldName" "EnemyCountImage" 20 | "xpos" "3" 21 | "ypos" "2" 22 | "zpos" "3" 23 | "wide" "12" 24 | "tall" "12" 25 | "visible" "1" 26 | "enabled" "1" 27 | "scaleImage" "1" 28 | } 29 | 30 | "EnemyCountImageBG" 31 | { 32 | "ControlName" "Panel" 33 | "fieldName" "EnemyCountImageBG" 34 | "xpos" "2" 35 | "ypos" "1" 36 | "zpos" "2" 37 | "wide" "14" 38 | "tall" "14" 39 | "visible" "1" 40 | "enabled" "1" 41 | "scaleImage" "1" 42 | "PaintBackgroundType" "0" 43 | "bgcolor_override" "ahudWhite" 44 | } 45 | 46 | "EnemyCountCritImageBG" 47 | { 48 | "ControlName" "CTFImagePanel" 49 | "fieldName" "EnemyCountCritImageBG" 50 | "xpos" "1" 51 | "ypos" "0" 52 | "zpos" "1" 53 | "wide" "16" 54 | "tall" "16" 55 | "visible" "1" 56 | "enabled" "1" 57 | "scaleImage" "1" 58 | "PaintBackgroundType" "0" 59 | "image" "../hud/leaderboard_class_critical" 60 | } 61 | 62 | "EnemyCount" 63 | { 64 | "ControlName" "CExLabel" 65 | "fieldName" "EnemyCount" 66 | "font" "aRegular11" 67 | "fgcolor" "ahudWhite" 68 | "xpos" "0" 69 | "ypos" "18" 70 | "zpos" "3" 71 | "wide" "20" 72 | "tall" "14" 73 | "visible" "1" 74 | "enabled" "1" 75 | "textAlignment" "center" 76 | "labelText" "%enemy_count%" 77 | } 78 | } -------------------------------------------------------------------------------- /resource/ui/flagstatus.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/FlagStatus.res" 2 | { 3 | "Arrow" 4 | { 5 | "ControlName" "CTFArrowPanel" 6 | "fieldName" "Arrow" 7 | "xpos" "55" 8 | "ypos" "21" 9 | "zpos" "1" 10 | "wide" "52" 11 | "tall" "52" 12 | "visible" "1" 13 | "enabled" "1" 14 | "scaleImage" "1" 15 | 16 | "if_mvm" 17 | { 18 | "ypos" "0" 19 | } 20 | } 21 | "Briefcase" 22 | { 23 | "ControlName" "CTFImagePanel" 24 | "fieldName" "Briefcase" 25 | "xpos" "68" 26 | "ypos" "34" 27 | "zpos" "2" 28 | "wide" "0" 29 | "tall" "0" 30 | "visible" "1" 31 | "enabled" "1" 32 | "image" "../hud/objectives_flagpanel_briefcase" 33 | "scaleImage" "1" 34 | 35 | "if_mvm" 36 | { 37 | "ypos" "14" 38 | "wide" "24" 39 | "tall" "24" 40 | } 41 | } 42 | "StatusIcon" 43 | { 44 | "ControlName" "CTFImagePanel" 45 | "fieldName" "StatusIcon" 46 | "xpos" "65" 47 | "ypos" "31" 48 | "zpos" "3" 49 | "wide" "32" 50 | "tall" "32" 51 | "visible" "1" 52 | "enabled" "1" 53 | "image" "../hud/objectives_flagpanel_ico_flag_home" 54 | "scaleImage" "1" 55 | 56 | "if_mvm" 57 | { 58 | "visible" "0" 59 | } 60 | } 61 | } -------------------------------------------------------------------------------- /resource/ui/freezepanelkillerhealth.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/FreezePanelKillerHealth.res" 2 | { 3 | "PlayerStatusHealthImage" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "PlayerStatusHealthImage" 7 | "xpos" "9999" 8 | "ypos" "9999" 9 | "zpos" "4" 10 | "wide" "18" 11 | "tall" "18" 12 | "visible" "1" 13 | "enabled" "1" 14 | "scaleImage" "1" 15 | } 16 | "PlayerStatusHealthImageBG" 17 | { 18 | "ControlName" "ImagePanel" 19 | "fieldName" "PlayerStatusHealthImageBG" 20 | "xpos" "9999" 21 | "ypos" "9999" 22 | "zpos" "3" 23 | "wide" "22" 24 | "tall" "22" 25 | "visible" "1" 26 | "enabled" "1" 27 | "image" "../hud/health_bg" 28 | "scaleImage" "1" 29 | } 30 | "BuildingStatusHealthImageBG" 31 | { 32 | "ControlName" "ImagePanel" 33 | "fieldName" "PlayerStatusHealthImageBG" 34 | "xpos" "9999" 35 | "ypos" "9999" 36 | "zpos" "3" 37 | "wide" "28" 38 | "tall" "28" 39 | "visible" "1" 40 | "enabled" "1" 41 | "image" "../hud/health_equip_bg" 42 | "scaleImage" "1" 43 | } 44 | "PlayerStatusHealthBonusImage" 45 | { 46 | "ControlName" "ImagePanel" 47 | "fieldName" "PlayerStatusHealthBonusImage" 48 | "xpos" "9999" 49 | "ypos" "9999" 50 | "zpos" "3" 51 | "wide" "22" 52 | "tall" "22" 53 | "visible" "0" 54 | "enabled" "1" 55 | "image" "../hud/health_over_bg" 56 | "scaleImage" "1" 57 | } 58 | "PlayerStatusHealthValueFreezePanel" 59 | { 60 | "ControlName" "CExLabel" 61 | "fieldName" "PlayerStatusHealthValueFreezePanel" 62 | "xpos" "0" 63 | "ypos" "4" 64 | "zpos" "5" 65 | "wide" "44" 66 | "tall" "22" 67 | "visible" "1" 68 | "enabled" "1" 69 | "textAlignment" "center" 70 | "font" "aRegular24" 71 | "fgcolor" "HP" 72 | "labeltext" "%Health%" 73 | } 74 | "PlayerStatusHealthValueFreezePanelShadow" 75 | { 76 | "ControlName" "CExLabel" 77 | "fieldName" "PlayerStatusHealthValueFreezePanelShadow" 78 | "xpos" "-1" 79 | "ypos" "-1" 80 | "zpos" "5" 81 | "wide" "44" 82 | "tall" "22" 83 | "visible" "1" 84 | "enabled" "1" 85 | "textAlignment" "center" 86 | "font" "aRegular24" 87 | "fgcolor" "ShadowBlack" 88 | "labeltext" "%Health%" 89 | 90 | "pin_to_sibling" "PlayerStatusHealthValueFreezePanel" 91 | "pin_corner_to_sibling" "PIN_TOPLEFT" 92 | "pin_to_sibling_corner" "PIN_TOPLEFT" 93 | } 94 | "HealthBoxBG" 95 | { 96 | "ControlName" "EditablePanel" 97 | "fieldName" "HealthBoxBG" 98 | "xpos" "0" 99 | "ypos" "-5" 100 | "zpos" "1" 101 | "wide" "44" 102 | "tall" "12" 103 | "visible" "1" 104 | "enabled" "1" 105 | "bgcolor_override" "Blank" 106 | "PaintBackgroundType" "0" 107 | 108 | "pin_to_sibling" "PlayerStatusHealthValueFreezePanel" 109 | "pin_corner_to_sibling" "PIN_TOPLEFT" 110 | "pin_to_sibling_corner" "PIN_TOPLEFT" 111 | } 112 | } -------------------------------------------------------------------------------- /resource/ui/globalchat.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/GlobalChat.res" 2 | { 3 | "partychat" 4 | { 5 | "fieldName" "partychat" 6 | "visible" "1" 7 | "enabled" "1" 8 | "xpos" "0" 9 | "ypos" "10" 10 | "zpos" "1001" 11 | "wide" "170" 12 | "tall" "221" 13 | "proportionaltoparent" "1" 14 | "keyboardinputenabled" "1" 15 | "mouseinputenabled" "1" 16 | "border" "ahudPanelBorderLight" 17 | 18 | "log_font_small" "HudFontSmall" 19 | "log_font_medium" "HudFontMediumSmallSecondary" 20 | "log_font_large" "HudFontMediumSecondary" 21 | 22 | "chat_color_default" "255 255 255 255" 23 | "chat_color_player_name" "255 255 0 255" 24 | "chat_color_chat_text" "255 255 255 255" 25 | "chat_color_party_event" "Orange" 26 | 27 | "collapsed_height" "0" 28 | "expanded_height" "221" 29 | "resize_time" "0.3" 30 | "invalidate_parent_on_resize" "0" 31 | } 32 | 33 | "chatlog" 34 | { 35 | // "ControlName" "richtext" 36 | "fieldName" "chatlog" 37 | "xpos" "cs-0.5" 38 | "ypos" "5" 39 | "zpos" "1" 40 | "wide" "f0" 41 | "tall" "f20" 42 | "visible" "1" 43 | "proportionaltoparent" "1" 44 | "RoundedCorners" "0" 45 | "font" "HudFontSmallest" 46 | 47 | "bgcolor_override" "0 0 0 50" 48 | 49 | "pinCorner" "2" 50 | "autoResize" "1" 51 | 52 | "ScrollBar" 53 | { 54 | "FieldName" "ScrollBar" 55 | "xpos" "rs1-1" 56 | "ypos" "0" 57 | "tall" "f0" 58 | "wide" "5" // This gets slammed from client schme. GG. 59 | "zpos" "1000" 60 | "nobuttons" "1" 61 | "proportionaltoparent" "1" 62 | 63 | "Slider" 64 | { 65 | "fgcolor_override" "TanLight" 66 | } 67 | 68 | "UpButton" 69 | { 70 | "ControlName" "Button" 71 | "FieldName" "UpButton" 72 | "visible" "0" 73 | } 74 | 75 | "DownButton" 76 | { 77 | "ControlName" "Button" 78 | "FieldName" "DownButton" 79 | "visible" "0" 80 | } 81 | } 82 | } 83 | 84 | "chatentry" 85 | { 86 | // "ControlName" "TextEntry" 87 | "fieldName" "chatentry" 88 | "xpos" "cs-0.5" 89 | "ypos" "rs1+19" 90 | "zpos" "1" 91 | "wide" "f2" 92 | "tall" "13" 93 | "visible" "1" 94 | "proportionaltoparent" "1" 95 | "bgcolor_override" "0 0 0 255" 96 | "RoundedCorners" "0" 97 | "font" "HudFontSmallest" 98 | "alpha" "0" 99 | "mouseinputenabled" "0" 100 | 101 | "pinCorner" "2" 102 | //"autoResize" "1" 103 | } 104 | 105 | "EntryShadow" 106 | { 107 | "ControlName" "Panel" 108 | "fieldName" "EntryShadow" 109 | "xpos" "cs-0.5" 110 | "ypos" "rs1" 111 | "zpos" "2" 112 | "wide" "f0" 113 | "tall" "15" 114 | "visible" "1" 115 | "proportionaltoparent" "1" 116 | "bgcolor_override" "0 0 0 0" 117 | "RoundedCorners" "0" 118 | "border" "ahudPanelBorderLight" 119 | 120 | "keyboardinputenabled" "0" 121 | "mouseinputenabled" "0" 122 | 123 | "pinCorner" "2" 124 | } 125 | } -------------------------------------------------------------------------------- /resource/ui/healthiconpanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HealthIconPanel.res" 2 | { 3 | "HealthIcon" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "HealthIcon" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "wide" "44" 10 | "tall" "32" 11 | "visible" "1" 12 | "enabled" "1" 13 | "TFFont" "HudFontSmall" 14 | "TextColor" "HudOffWhite" 15 | "autoResize" "1" 16 | } 17 | 18 | "SpectatorGUIHealth" 19 | { 20 | "ControlName" "EditablePanel" 21 | "fieldName" "SpectatorGUIHealth" 22 | "xpos" "0" 23 | "ypos" "0" 24 | "wide" "128" 25 | "tall" "128" 26 | "visible" "1" 27 | "enabled" "1" 28 | "TFFont" "HudFontSmall" 29 | "TextColor" "HudOffWhite" 30 | "autoResize" "1" 31 | } 32 | } -------------------------------------------------------------------------------- /resource/ui/hudaccountpanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudAccountPanel.res" 2 | { 3 | "CHudAccountPanel" 4 | { 5 | "delta_item_x" "35" 6 | "delta_item_start_y" "54" 7 | "delta_item_end_y" "34" 8 | "PositiveColor" "HP Buff" 9 | "NegativeColor" "HP Low" 10 | "delta_lifetime" "1.5" 11 | "delta_item_font" "aRegular18" 12 | } 13 | 14 | "AccountBG" 15 | { 16 | "ControlName" "CTFImagePanel" 17 | "fieldName" "AccountBG" 18 | "xpos" "5" 19 | "ypos" "103" 20 | "zpos" "0" 21 | "wide" "84" 22 | "tall" "42" 23 | "visible" "0" 24 | "enabled" "0" 25 | "image" "../hud/misc_ammo_area_blue" 26 | "scaleImage" "1" 27 | "teambg_2" "../hud/misc_ammo_area_red" 28 | "teambg_3" "../hud/misc_ammo_area_blue" 29 | } 30 | 31 | "AccountValue" 32 | { 33 | "ControlName" "CExLabel" 34 | "fieldName" "AccountValue" 35 | "xpos" "26" 36 | "ypos" "68" 37 | "zpos" "2" 38 | "wide" "50" 39 | "tall" "20" 40 | "autoResize" "1" 41 | "pinCorner" "2" 42 | "visible" "1" 43 | "enabled" "1" 44 | "tabPosition" "0" 45 | "labelText" "%metal%" 46 | "textAlignment" "center" 47 | "dulltext" "0" 48 | "brighttext" "0" 49 | "font" "aRegular20" 50 | "fgcolor" "Metal" 51 | } 52 | 53 | "AccountValueShadow" 54 | { 55 | "ControlName" "CExLabel" 56 | "fieldName" "AccountValueShadow" 57 | "xpos" "-1" 58 | "ypos" "-1" 59 | "zpos" "2" 60 | "wide" "50" 61 | "tall" "20" 62 | "autoResize" "1" 63 | "pinCorner" "2" 64 | "visible" "1" 65 | "enabled" "1" 66 | "tabPosition" "0" 67 | "labelText" "%metal%" 68 | "textAlignment" "center" 69 | "dulltext" "0" 70 | "brighttext" "0" 71 | "font" "aRegular20" 72 | "fgcolor" "ShadowBlack" 73 | 74 | "pin_to_sibling" "AccountValue" 75 | "pin_corner_to_sibling" "PIN_TOPLEFT" 76 | "pin_to_sibling_corner" "PIN_TOPLEFT" 77 | } 78 | } -------------------------------------------------------------------------------- /resource/ui/hudarenacappointcountdown.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudArenaCapPointCountdown.res" 2 | { 3 | "CapCountdownLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "CapCountdownLabel" 7 | "font" "aRegular14" 8 | "xpos" "0" 9 | "ypos" "3" 10 | "zpos" "-1" 11 | "wide" "30" 12 | "tall" "30" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "1" 16 | "enabled" "1" 17 | "wrap" "0" 18 | "labelText" "%capturetime%" 19 | "textAlignment" "center" 20 | "fgcolor" "235 226 202 255" 21 | "bgcolor" "235 226 202 255" 22 | } 23 | } -------------------------------------------------------------------------------- /resource/ui/hudarenanotification.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudArenaNotification.res" 2 | { 3 | "HudArenaNotificationBG" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "HudArenaNotificationBG" 7 | "xpos" "15" 8 | "ypos" "35" 9 | "zpos" "-1" 10 | "wide" "290" 11 | "tall" "75" 12 | "autoResize" "0" 13 | "pinCorner" "0" 14 | "visible" "1" 15 | "enabled" "1" 16 | "fillcolor" "HudBlack" 17 | "scaleImage" "1" 18 | "teambg_2" "../hud/death_panel_red_bg" 19 | "teambg_3" "../hud/death_panel_blue_bg" 20 | } 21 | 22 | "WarningLabel" 23 | { 24 | "ControlName" "Label" 25 | "fieldName" "WarningLabel" 26 | "font" "ScoreboardTeamScore" 27 | "xpos" "40" 28 | "ypos" "40" 29 | "zpos" "1" 30 | "wide" "50" 31 | "tall" "50" 32 | "wide" "230" [$WIN32] 33 | "tall" "55" 34 | "autoResize" "0" 35 | "pinCorner" "0" 36 | "visible" "1" 37 | "enabled" "1" 38 | "wrap" "1" 39 | "labelText" "!" 40 | "textAlignment" "north" 41 | } 42 | "BalanceLabel" 43 | { 44 | "ControlName" "Label" 45 | "fieldName" "BalanceLabel" 46 | "font" "aRegular14" 47 | "xpos" "75" 48 | "ypos" "30" 49 | "ypos_hidef" "23" 50 | "ypos_lodef" "20" 51 | "zpos" "1" 52 | "wide" "230" 53 | "tall" "55" 54 | "autoResize" "0" 55 | "pinCorner" "0" 56 | "visible" "1" 57 | "enabled" "1" 58 | "wrap" "1" 59 | "labelText" "" 60 | "textAlignment" "west" 61 | } 62 | 63 | "BalanceLabelTip" 64 | { 65 | "ControlName" "Label" 66 | "fieldName" "BalanceLabelTip" 67 | "font" "aRegular10" 68 | "xpos" "75" 69 | "ypos" "75" 70 | "ypos_hidef" "23" 71 | "ypos_lodef" "20" 72 | "zpos" "1" 73 | "wide" "230" [$WIN32] 74 | "tall" "30" 75 | "autoResize" "0" 76 | "pinCorner" "0" 77 | "visible" "1" 78 | "enabled" "1" 79 | "wrap" "1" 80 | "labelText" "%notificationtip%" 81 | "textAlignment" "west" 82 | } 83 | "SwitchImage" 84 | { 85 | "ControlName" "CTFImagePanel" 86 | "fieldName" "SwitchImage" 87 | "xpos" "25" 88 | "ypos" "23" 89 | "zpos" "1" 90 | "wide" "50" 91 | "tall" "50" 92 | "autoResize" "0" 93 | "pinCorner" "0" 94 | "visible" "0" 95 | "enabled" "1" 96 | "image" "../hud/ico_teambalance" 97 | "scaleImage" "1" 98 | } 99 | } -------------------------------------------------------------------------------- /resource/ui/hudcurrencyaccount.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudCurrencyAccount.res" 2 | { 3 | "CurrencyBG" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "CurrencyBG" 7 | "xpos" "0" 8 | "ypos" "2" 9 | "zpos" "0" 10 | "wide" "100" 11 | "tall" "16" 12 | "autoResize" "0" 13 | "pinCorner" "0" 14 | "visible" "1" 15 | "enabled" "1" 16 | "fillcolor" "HudBlack" 17 | } 18 | 19 | "CurrencyLabel" 20 | { 21 | "ControlName" "CExLabel" 22 | "fieldName" "CurrencyLabel" 23 | "font" "aRegular12" 24 | "fgcolor" "ahudWhite" 25 | "xpos" "4" 26 | "ypos" "0" 27 | "zpos" "3" 28 | "wide" "50" 29 | "tall" "19" 30 | "visible" "1" 31 | "enabled" "1" 32 | "textAlignment" "west" 33 | "labelText" "Currency" 34 | } 35 | 36 | "Currency" 37 | { 38 | "ControlName" "CExLabel" 39 | "fieldName" "Currency" 40 | "font" "aRegular12" 41 | "fgcolor" "CreditsGreen" 42 | "xpos" "47" 43 | "ypos" "0" 44 | "zpos" "3" 45 | "wide" "50" 46 | "tall" "19" 47 | "visible" "1" 48 | "enabled" "1" 49 | "textAlignment" "east" 50 | "labelText" "%currency%" 51 | } 52 | } -------------------------------------------------------------------------------- /resource/ui/huddamageaccount.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudDamageAccount.res" 2 | { 3 | "CDamageAccountPanel" 4 | { 5 | "fieldName" "CDamageAccountPanel" 6 | "text_x" "0" 7 | "text_y" "0" 8 | "delta_item_end_y" "0" 9 | "PositiveColor" "Healing Numbers" //Heal 10 | "NegativeColor" "Damage Numbers" //Damage 11 | "delta_lifetime" "2" 12 | "delta_item_font" "aRegular20Outline" 13 | "delta_item_font_big" "aRegular20Outline" 14 | } 15 | 16 | "DamageAccountValue" 17 | { 18 | "ControlName" "CExLabel" 19 | "fieldName" "DamageAccountValue" 20 | "xpos" "c-119" 21 | "ypos" "312" 22 | "zpos" "2" 23 | "wide" "100" 24 | "tall" "26" 25 | "visible" "1" 26 | "enabled" "1" 27 | "labelText" "%metal%" 28 | "textAlignment" "west" 29 | "fgcolor" "Damage Numbers" 30 | "font" "aRegular20" 31 | } 32 | 33 | "DamageAccountValueShadow" 34 | { 35 | "ControlName" "CExLabel" 36 | "fieldName" "DamageAccountValueShadow" 37 | "xpos" "-1" 38 | "ypos" "-1" 39 | "zpos" "2" 40 | "wide" "100" 41 | "tall" "26" 42 | "visible" "1" 43 | "enabled" "1" 44 | "labelText" "%metal%" 45 | "textAlignment" "west" 46 | "fgcolor" "ShadowBlack" 47 | "font" "aRegular20" 48 | 49 | "pin_to_sibling" "DamageAccountValue" 50 | "pin_corner_to_sibling" "PIN_TOPLEFT" 51 | "pin_to_sibling_corner" "PIN_TOPLEFT" 52 | } 53 | } -------------------------------------------------------------------------------- /resource/ui/huddemomancharge.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudDemomanCharge.res" 2 | { 3 | "ChargeMeter" 4 | { 5 | "ControlName" "ContinuousProgressBar" 6 | "fieldName" "ChargeMeter" 7 | "font" "aRegular10" 8 | "xpos" "15" 9 | "ypos" "89" 10 | "zpos" "2" 11 | "wide" "120" 12 | "tall" "6" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "1" 16 | "enabled" "1" 17 | "textAlignment" "center" 18 | "dulltext" "0" 19 | "brighttext" "0" 20 | "fgcolor_override" "White" 21 | "bgcolor_override" "0 0 0 100" 22 | } 23 | "ItemEffectMeterLabel" 24 | { 25 | "ControlName" "CExLabel" 26 | "fieldName" "ItemEffectMeterLabel" 27 | "xpos" "0" 28 | "ypos" "89" 29 | "zpos" "3" 30 | "wide" "150" 31 | "tall" "6" 32 | "autoResize" "1" 33 | "pinCorner" "2" 34 | "visible" "1" 35 | "enabled" "0" 36 | "tabPosition" "0" 37 | "labelText" "#TF_Charge" 38 | "textAlignment" "center" 39 | "dulltext" "0" 40 | "brighttext" "0" 41 | "font" "aRegular8" 42 | "fgcolor_override" "150 150 150 255" 43 | } 44 | } -------------------------------------------------------------------------------- /resource/ui/hudhealthaccount.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudHealthAccount.res" 2 | { 3 | "CHealthAccountPanel" 4 | { 5 | "fieldName" "CHealthAccountPanel" 6 | "delta_item_x" "16" 7 | "delta_item_start_y" "48" 8 | "delta_item_end_y" "28" 9 | "PositiveColor" "HP Buff" 10 | "NegativeColor" "HP Low" 11 | "delta_lifetime" "1.5" 12 | "delta_item_font" "aRegular20" 13 | } 14 | } -------------------------------------------------------------------------------- /resource/ui/hudinspectpanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudInspectPanel.res" 2 | { 3 | "itempanel" 4 | { 5 | "ControlName" "CItemModelPanel" 6 | "fieldName" "itempanel" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "zpos" "10" 10 | "wide" "190" 11 | "tall" "100" 12 | "visible" "0" 13 | "bgcolor_override" "HudBlack" 14 | "paintbackground" "1" 15 | "PaintBackgroundType" "0" 16 | 17 | "model_ypos" "10" 18 | "model_center_x" "1" 19 | "model_wide" "90" 20 | "model_tall" "60" 21 | 22 | "text_xpos" "10" 23 | "text_ypos" "10" 24 | "text_wide" "170" 25 | "text_center" "1" 26 | 27 | "max_text_height" "100" 28 | "padding_height" "10" 29 | "resize_to_text" "1" 30 | "text_forcesize" "2" 31 | 32 | "itemmodelpanel" 33 | { 34 | "fieldName" "itemmodelpanel" 35 | "use_item_rendertarget" "0" 36 | "useparentbg" "1" 37 | "inventory_image_type" "1" 38 | } 39 | 40 | "ItemLabel" 41 | { 42 | "ControlName" "Label" 43 | "fieldName" "ItemLabel" 44 | "font" "aRegular9" 45 | "xpos" "10" 46 | "ypos" "3" 47 | "zpos" "1" 48 | "wide" "270" 49 | "tall" "9" 50 | "autoResize" "0" 51 | "pinCorner" "0" 52 | "visible" "1" 53 | "enabled" "1" 54 | "labelText" "#FreezePanel_Item" 55 | "textAlignment" "Left" 56 | "dulltext" "0" 57 | "brighttext" "0" 58 | } 59 | } 60 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudItemEffectMeter.res" 2 | { 3 | HudItemEffectMeter 4 | { 5 | "fieldName" "HudItemEffectMeter" 6 | "visible" "1" 7 | "enabled" "1" 8 | "xpos" "c-75" 9 | "ypos" "c123" 10 | "wide" "150" 11 | "tall" "8" 12 | "MeterFG" "TanLight" 13 | "MeterBG" "Gray" 14 | } 15 | 16 | "ItemEffectMeterLabel" 17 | { 18 | "ControlName" "CExLabel" 19 | "fieldName" "ItemEffectMeterLabel" 20 | "xpos" "0" 21 | "ypos" "0" 22 | "zpos" "2" 23 | "wide" "150" 24 | "tall" "8" 25 | "autoResize" "0" 26 | "pinCorner" "0" 27 | "visible" "1" 28 | "enabled" "0" 29 | "labelText" "#TF_Ball" 30 | "textAlignment" "center" 31 | "dulltext" "0" 32 | "brighttext" "0" 33 | "font" "aRegular8" 34 | "fgcolor_override" "150 150 150 255" 35 | } 36 | 37 | "ItemEffectMeter" 38 | { 39 | "ControlName" "ContinuousProgressBar" 40 | "fieldName" "ItemEffectMeter" 41 | "font" "Default" 42 | "xpos" "15" 43 | "ypos" "1" 44 | "zpos" "2" 45 | "wide" "120" 46 | "tall" "6" 47 | "autoResize" "0" 48 | "pinCorner" "0" 49 | "visible" "1" 50 | "enabled" "1" 51 | "textAlignment" "Center" 52 | "dulltext" "0" 53 | "brighttext" "0" 54 | } 55 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_cleaver.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Cleaver.res" 4 | { 5 | "HudItemEffectMeter" 6 | { 7 | "ypos" "c103" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_demoman.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudItemEffectMeter_Demoman.res" 2 | { 3 | HudItemEffectMeter 4 | { 5 | "fieldName" "HudItemEffectMeter" 6 | "visible" "1" 7 | "enabled" "1" 8 | "xpos" "c122" 9 | "ypos" "374" 10 | "wide" "75" 11 | "tall" "20" 12 | "MeterFG" "TanLight" 13 | "MeterBG" "Gray" 14 | } 15 | 16 | "ItemEffectMeterLabel" 17 | { 18 | "ControlName" "CExLabel" 19 | "fieldName" "ItemEffectMeterLabel" 20 | "xpos" "0" 21 | "ypos" "7" 22 | "zpos" "2" 23 | "wide" "40" 24 | "tall" "8" 25 | "autoResize" "1" 26 | "pinCorner" "2" 27 | "visible" "1" 28 | "enabled" "1" 29 | "tabPosition" "0" 30 | "labelText" "#TF_Ball" 31 | "textAlignment" "east" 32 | "dulltext" "0" 33 | "brighttext" "0" 34 | "font" "aRegular10" 35 | "fgcolor_override" "ahudWhite" 36 | } 37 | 38 | "ItemEffectMeter" 39 | { 40 | "ControlName" "ContinuousProgressBar" 41 | "fieldName" "ItemEffectMeter" 42 | "font" "Default" 43 | "xpos" "25" 44 | "ypos" "23" 45 | "zpos" "2" 46 | "wide" "40" 47 | "tall" "6" 48 | "autoResize" "0" 49 | "pinCorner" "0" 50 | "visible" "0" 51 | "enabled" "0" 52 | "textAlignment" "Center" 53 | "dulltext" "0" 54 | "brighttext" "0" 55 | } 56 | 57 | "ItemEffectMeterCount" 58 | { 59 | "ControlName" "CExLabel" 60 | "fieldName" "ItemEffectMeterCount" 61 | "xpos" "46" 62 | "ypos" "0" 63 | "zpos" "2" 64 | "wide" "40" 65 | "tall" "20" 66 | "pinCorner" "2" 67 | "visible" "1" 68 | "enabled" "1" 69 | "tabPosition" "0" 70 | "labelText" "%progresscount%" 71 | "textAlignment" "west" 72 | "dulltext" "0" 73 | "brighttext" "0" 74 | "font" "aRegular20" 75 | "fgcolor" "ahudWhite" 76 | } 77 | "ItemEffectMeterCountShadow" 78 | { 79 | "ControlName" "CExLabel" 80 | "fieldName" "ItemEffectMeterCountShadow" 81 | "xpos" "-1" 82 | "ypos" "-1" 83 | "zpos" "2" 84 | "wide" "40" 85 | "tall" "20" 86 | "pinCorner" "2" 87 | "visible" "1" 88 | "enabled" "1" 89 | "tabPosition" "0" 90 | "labelText" "%progresscount%" 91 | "textAlignment" "west" 92 | "dulltext" "0" 93 | "brighttext" "0" 94 | "font" "aRegular20" 95 | "fgcolor" "ShadowBlack" 96 | 97 | "pin_to_sibling" "ItemEffectMeterCount" 98 | "pin_corner_to_sibling" "PIN_TOPLEFT" 99 | "pin_to_sibling_corner" "PIN_TOPLEFT" 100 | } 101 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_engineer.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter_demoman.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Engineer.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_heavy.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Scout.res" 4 | { 5 | "HudItemEffectMeter" 6 | { 7 | "ypos" "c113" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_kartcharge.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudItemEffectMeter_Scout.res" 2 | { 3 | HudItemEffectMeter 4 | { 5 | "fieldName" "HudItemEffectMeter" 6 | "visible" "1" 7 | "enabled" "1" 8 | "xpos" "c-75" 9 | "ypos" "c156" 10 | "wide" "500" 11 | "tall" "500" 12 | "MeterFG" "ahudWhite" 13 | "MeterBG" "Gray" 14 | } 15 | 16 | "ItemEffectMeterLabel" 17 | { 18 | "ControlName" "CExLabel" 19 | "fieldName" "ItemEffectMeterLabel" 20 | "xpos" "0" 21 | "ypos" "20" 22 | "zpos" "2" 23 | "wide" "150" 24 | "tall" "8" 25 | "autoResize" "1" 26 | "pinCorner" "2" 27 | "visible" "1" 28 | "enabled" "1" 29 | "tabPosition" "0" 30 | "labelText" "#TF_KART" 31 | "textAlignment" "center" 32 | "dulltext" "0" 33 | "brighttext" "0" 34 | "font" "aRegular8" 35 | "fgcolor_override" "150 150 150 255" 36 | } 37 | 38 | "ItemEffectMeter" 39 | { 40 | "ControlName" "ContinuousProgressBar" 41 | "fieldName" "ItemEffectMeter" 42 | "font" "Default" 43 | "xpos" "0" 44 | "ypos" "21" 45 | "zpos" "2" 46 | "wide" "150" 47 | "tall" "6" 48 | "autoResize" "0" 49 | "pinCorner" "0" 50 | "visible" "1" 51 | "enabled" "1" 52 | "textAlignment" "Center" 53 | "dulltext" "0" 54 | "brighttext" "0" 55 | "bgcolor_override" "0 0 0 100" 56 | } 57 | 58 | "ItemEffectMeterCount" 59 | { 60 | "ControlName" "CExLabel" 61 | "fieldName" "ItemEffectMeterCount" 62 | "xpos" "0" 63 | "ypos" "0" 64 | "zpos" "2" 65 | "wide" "150" 66 | "tall" "20" 67 | "pinCorner" "2" 68 | "visible" "1" 69 | "enabled" "1" 70 | "tabPosition" "0" 71 | "labelText" "%progresscount%" 72 | "textAlignment" "center" 73 | "dulltext" "0" 74 | "brighttext" "0" 75 | "font" "HudFontMediumSmall" 76 | } 77 | 78 | "ItemEffectMeterCountShadow" 79 | { 80 | "ControlName" "CExLabel" 81 | "fieldName" "ItemEffectMeterCountShadow" 82 | "xpos" "-1" 83 | "ypos" "-1" 84 | "zpos" "2" 85 | "wide" "150" 86 | "tall" "20" 87 | "pinCorner" "2" 88 | "visible" "1" 89 | "enabled" "1" 90 | "tabPosition" "0" 91 | "labelText" "%progresscount%" 92 | "textAlignment" "center" 93 | "dulltext" "0" 94 | "brighttext" "0" 95 | "font" "HudFontMediumSmall" 96 | "fgcolor" "ShadowBlack" 97 | 98 | "pin_to_sibling" "ItemEffectMeterCount" 99 | "pin_corner_to_sibling" "PIN_TOPLEFT" 100 | "pin_to_sibling_corner" "PIN_TOPLEFT" 101 | } 102 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_killstreak.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudItemEffectMeter_Killstreak.res" 2 | { 3 | HudItemEffectMeter 4 | { 5 | "fieldName" "HudItemEffectMeter" 6 | "visible" "1" 7 | "enabled" "1" 8 | "xpos" "0" 9 | "ypos" "r36" 10 | "wide" "36" 11 | "tall" "36" 12 | "MeterFG" "TanLight" 13 | "MeterBG" "Gray" 14 | } 15 | 16 | "ItemEffectMeterLabel" 17 | { 18 | "ControlName" "CExLabel" 19 | "fieldName" "ItemEffectMeterLabel" 20 | "xpos" "9999" 21 | "ypos" "9999" 22 | "zpos" "2" 23 | "wide" "35" 24 | "tall" "8" 25 | "autoResize" "1" 26 | "pinCorner" "2" 27 | "visible" "0" 28 | "enabled" "0" 29 | "tabPosition" "0" 30 | "labelText" "#TF_KillStreak" 31 | "textAlignment" "center" 32 | "dulltext" "0" 33 | "brighttext" "0" 34 | "font" "aRegular10" 35 | "fgcolor" "ahudWhite" 36 | } 37 | 38 | "ItemEffectMeter" 39 | { 40 | "ControlName" "ContinuousProgressBar" 41 | "fieldName" "ItemEffectMeter" 42 | "font" "Default" 43 | "xpos" "25" 44 | "ypos" "23" 45 | "zpos" "2" 46 | "wide" "40" 47 | "tall" "6" 48 | "autoResize" "0" 49 | "pinCorner" "0" 50 | "visible" "0" 51 | "enabled" "0" 52 | "textAlignment" "Left" 53 | "dulltext" "0" 54 | "brighttext" "0" 55 | } 56 | 57 | "ItemEffectMeterCount" 58 | { 59 | "ControlName" "CExLabel" 60 | "fieldName" "ItemEffectMeterCount" 61 | "xpos" "2" 62 | "ypos" "10" 63 | "zpos" "2" 64 | "wide" "30" 65 | "tall" "20" 66 | "pinCorner" "2" 67 | "visible" "1" 68 | "enabled" "1" 69 | "tabPosition" "0" 70 | "labelText" "%progresscount%" 71 | "textAlignment" "center" 72 | "dulltext" "0" 73 | "brighttext" "0" 74 | "font" "aRegular20" 75 | "fgcolor" "Killstreak" 76 | } 77 | 78 | "ItemEffectMeterCountShadow" 79 | { 80 | "ControlName" "CExLabel" 81 | "fieldName" "ItemEffectMeterCountShadow" 82 | "xpos" "-1" 83 | "ypos" "-1" 84 | "zpos" "1" 85 | "wide" "30" 86 | "tall" "20" 87 | "pinCorner" "2" 88 | "visible" "1" 89 | "enabled" "1" 90 | "tabPosition" "0" 91 | "labelText" "%progresscount%" 92 | "textAlignment" "center" 93 | "dulltext" "0" 94 | "brighttext" "0" 95 | "font" "aRegular20" 96 | "fgcolor" "ShadowBlack" 97 | 98 | "pin_to_sibling" "ItemEffectMeterCount" 99 | "pin_corner_to_sibling" "PIN_TOPLEFT" 100 | "pin_to_sibling_corner" "PIN_TOPLEFT" 101 | } 102 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_organs.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter_demoman.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Scout.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_particlecannon.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_ParticleCannon.res" 4 | { 5 | "HudItemEffectMeter" 6 | { 7 | "ypos" "c113" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_pomson.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Pomson.res" 4 | { 5 | "HudItemEffectMeter" 6 | { 7 | "ypos" "c113" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_powerupbottle.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudItemEffectMeter_PowerupBottles.res" 2 | { 3 | HudItemEffectMeter 4 | { 5 | "fieldName" "HudItemEffectMeter" 6 | "visible" "1" 7 | "enabled" "1" 8 | "xpos" "c-218" 9 | "ypos" "r42" 10 | "wide" "16" 11 | "tall" "16" 12 | "MeterFG" "TanLight" 13 | "MeterBG" "Gray" 14 | } 15 | 16 | "PowerupBG" 17 | { 18 | "ControlName" "ImagePanel" 19 | "fieldName" "PowerupBG" 20 | "xpos" "0" 21 | "ypos" "2" 22 | "zpos" "0" 23 | "wide" "100" 24 | "tall" "16" 25 | "autoResize" "0" 26 | "pinCorner" "0" 27 | "visible" "1" 28 | "enabled" "1" 29 | "fillcolor" "ahudYellow" 30 | } 31 | 32 | "ItemEffectMeterLabel" 33 | { 34 | "ControlName" "CExLabel" 35 | "fieldName" "ItemEffectMeterLabel" 36 | "xpos" "9999" 37 | "ypos" "9999" 38 | "zpos" "2" 39 | "wide" "80" 40 | "tall" "40" 41 | "autoResize" "1" 42 | "pinCorner" "2" 43 | "visible" "1" 44 | "enabled" "1" 45 | "tabPosition" "0" 46 | "labelText" "#TF_Ball" 47 | "textAlignment" "center" 48 | "centerwrap" "1" 49 | "dulltext" "0" 50 | "brighttext" "0" 51 | "font" "aRegular10" 52 | } 53 | 54 | "CanteenLabel" 55 | { 56 | "ControlName" "CExLabel" 57 | "fieldName" "CanteenLabel" 58 | "font" "aRegular12" 59 | "fgcolor" "ahudBlack" 60 | "xpos" "4" 61 | "ypos" "0" 62 | "zpos" "3" 63 | "wide" "60" 64 | "tall" "20" 65 | "visible" "0" 66 | "enabled" "0" 67 | "textAlignment" "west" 68 | "labelText" "Powerups" 69 | } 70 | 71 | "ItemEffectMeter" 72 | { 73 | "ControlName" "ContinuousProgressBar" 74 | "fieldName" "ItemEffectMeter" 75 | "font" "Default" 76 | "xpos" "25" 77 | "ypos" "23" 78 | "zpos" "2" 79 | "wide" "40" 80 | "tall" "6" 81 | "autoResize" "0" 82 | "pinCorner" "0" 83 | "visible" "0" 84 | "enabled" "0" 85 | "textAlignment" "Left" 86 | "dulltext" "0" 87 | "brighttext" "0" 88 | } 89 | 90 | "ItemEffectMeterCount" 91 | { 92 | "ControlName" "CExLabel" 93 | "fieldName" "ItemEffectMeterCount" 94 | "xpos" "0" 95 | "ypos" "0" 96 | "zpos" "2" 97 | "wide" "16" 98 | "tall" "19" 99 | "pinCorner" "2" 100 | "visible" "1" 101 | "enabled" "1" 102 | "tabPosition" "0" 103 | "labelText" "%progresscount%" 104 | "textAlignment" "center" 105 | "dulltext" "0" 106 | "brighttext" "0" 107 | "font" "aRegular12" 108 | "fgcolor" "ahudWhite" 109 | } 110 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_pyro.res: -------------------------------------------------------------------------------- 1 | #base "HudItemEffectMeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Pyro.res" 4 | { 5 | "HudItemEffectMeter" 6 | { 7 | "ypos" "c113" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_raygun.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Raygun.res" 4 | { 5 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_sapper.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Sapper.res" 4 | { 5 | "HudItemEffectMeter" 6 | { 7 | "ypos" "c103" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_scout.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Scout.res" 4 | { 5 | "HudItemEffectMeter" 6 | { 7 | "ypos" "c103" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_sniper.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter_demoman.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Sniper.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_sniperfocus.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_SniperFocus.res" 4 | { 5 | "HudItemEffectMeter" 6 | { 7 | "ypos" "c113" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_sodapopper.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_SodaPopper.res" 4 | { 5 | "HudItemEffectMeter" 6 | { 7 | "ypos" "c113" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_spy.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter_demoman.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_Spy.res" 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /resource/ui/huditemeffectmeter_spyknife.res: -------------------------------------------------------------------------------- 1 | #base "huditemeffectmeter.res" 2 | 3 | "Resource/UI/HudItemEffectMeter_SpyKnife.res" 4 | { 5 | "HudItemEffectMeter" 6 | { 7 | "ypos" "c113" 8 | } 9 | } -------------------------------------------------------------------------------- /resource/ui/hudkillstreaknotice.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudKillStreakNotice.res" 2 | { 3 | "Background" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "Background" 7 | "xpos" "c-250" 8 | "ypos" "50" 9 | "zpos" "0" 10 | "wide" "500" 11 | "tall" "50" 12 | "autoResize" "0" 13 | "visible" "1" 14 | "enabled" "1" 15 | "PaintBackgroundType" "0" 16 | "bgcolor_override" "0 0 0 127" 17 | } 18 | 19 | "SplashLabel" 20 | { 21 | "ControlName" "CExLabel" 22 | "fieldName" "SplashLabel" 23 | "font" "HudFontSmallestBold" 24 | "labelText" "" 25 | "textAlignment" "center" 26 | "xpos" "c-250" 27 | "ypos" "50" 28 | "zpos" "2" 29 | "wide" "500" 30 | "tall" "50" 31 | "autoResize" "0" 32 | "fgcolor" "ahudWhite" 33 | } 34 | } -------------------------------------------------------------------------------- /resource/ui/hudminigame_soccersuddendeath.res: -------------------------------------------------------------------------------- 1 | #base "HudMiniGame_Soccer.res" 2 | 3 | "Resource/UI/HudMiniGame_SuddenDeath.res" 4 | { 5 | "PlayingTo" 6 | { 7 | "labelText" "#game_SuddenDeath" 8 | } 9 | 10 | "RedScore" 11 | { 12 | "visible" "0" 13 | } 14 | 15 | "RedScoreShadow" 16 | { 17 | "visible" "0" 18 | } 19 | 20 | "BlueScore" 21 | { 22 | "visible" "0" 23 | } 24 | 25 | "BlueScoreShadow" 26 | { 27 | "visible" "0" 28 | } 29 | 30 | "RedSkullImage" 31 | { 32 | "ControlName" "ImagePanel" 33 | "fieldName" "RedSkullImage" 34 | "xpos" "c50" 35 | "ypos" "r22" 36 | "zpos" "5" 37 | "wide" "20" 38 | "tall" "20" 39 | "visible" "1" 40 | "enabled" "1" 41 | "image" "../effects/skull001_hud" 42 | "scaleImage" "1" 43 | "proportionaltoparent" "1" 44 | } 45 | 46 | "BlueSkullImage" 47 | { 48 | "ControlName" "ImagePanel" 49 | "fieldName" "BlueSkullImage" 50 | "xpos" "c-72" 51 | "ypos" "r22" 52 | "zpos" "5" 53 | "wide" "20" 54 | "tall" "20" 55 | "visible" "1" 56 | "enabled" "1" 57 | "image" "../effects/skull001_hud" 58 | "scaleImage" "1" 59 | "proportionaltoparent" "1" 60 | } 61 | } -------------------------------------------------------------------------------- /resource/ui/hudobjectivekothtimepanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudObjectiveKothTimePanel.res" 2 | { 3 | "HudKothTimeStatus" 4 | { 5 | if_match 6 | { 7 | "zpos" "5" 8 | } 9 | } 10 | 11 | "BlueTimer" 12 | { 13 | "ControlName" "CTFHudTimeStatus" 14 | "fieldName" "BlueTimer" 15 | "xpos" "0" 16 | "ypos" "0" 17 | "zpos" "2" 18 | "wide" "100" 19 | "tall" "50" 20 | "visible" "1" 21 | "enabled" "1" 22 | 23 | if_match 24 | { 25 | "proportionaltoparent" "1" 26 | "xpos" "cs-0.5" 27 | "ypos" "0" 28 | "delta_item_x" "10" 29 | "delta_item_start_y" "12" 30 | "delta_item_end_y" "50" 31 | "PositiveColor" "0 255 0 255" 32 | "NegativeColor" "255 0 0 255" 33 | "delta_lifetime" "2" 34 | "delta_item_font" "aRegular14" 35 | } 36 | 37 | "TimePanelValue" 38 | { 39 | "ControlName" "CExLabel" 40 | "fieldName" "TimePanelValue" 41 | "font" "aRegular14" 42 | "fgcolor" "ahudWhite" 43 | "xpos" "0" 44 | "ypos" "0" 45 | "zpos" "3" 46 | "wide" "100" 47 | "tall" "15" 48 | "visible" "1" 49 | "enabled" "1" 50 | "textAlignment" "center" 51 | "labelText" "0:00" 52 | 53 | if_match 54 | { 55 | "proportionaltoparent" "1" 56 | "xpos" "13" 57 | "ypos" "9" 58 | "tall" "15" 59 | "wide" "35" 60 | } 61 | } 62 | } 63 | 64 | "RedTimer" 65 | { 66 | "ControlName" "CTFHudTimeStatus" 67 | "fieldName" "RedTimer" 68 | "xpos" "100" 69 | "ypos" "0" 70 | "zpos" "2" 71 | "wide" "100" 72 | "tall" "50" 73 | "visible" "1" 74 | "enabled" "1" 75 | 76 | if_match 77 | { 78 | "proportionaltoparent" "1" 79 | "xpos" "cs-0.5" 80 | "ypos" "0" 81 | "delta_item_x" "50" 82 | "delta_item_start_y" "12" 83 | "delta_item_end_y" "50" 84 | "PositiveColor" "0 255 0 255" 85 | "NegativeColor" "255 0 0 255" 86 | "delta_lifetime" "2" 87 | "delta_item_font" "aRegular14" 88 | } 89 | 90 | "TimePanelValue" 91 | { 92 | "ControlName" "CExLabel" 93 | "fieldName" "TimePanelValue" 94 | "font" "aRegular14" 95 | "fgcolor" "ahudWhite" 96 | "xpos" "0" 97 | "ypos" "0" 98 | "zpos" "3" 99 | "wide" "100" 100 | "tall" "15" 101 | "visible" "1" 102 | "enabled" "1" 103 | "textAlignment" "center" 104 | "labelText" "0:00" 105 | 106 | if_match 107 | { 108 | "proportionaltoparent" "1" 109 | "xpos" "rs1-13" 110 | "ypos" "9" 111 | "wide" "35" 112 | "tall" "15" 113 | } 114 | } 115 | } 116 | 117 | "ActiveTimerBG" 118 | { 119 | "ControlName" "ImagePanel" 120 | "fieldName" "ActiveTimerBG" 121 | "xpos" "0" 122 | "ypos" "14" 123 | "zpos" "2" 124 | "wide" "38" 125 | "tall" "2" 126 | "visible" "0" 127 | "enabled" "1" 128 | "fillcolor" "ahudWhite" 129 | } 130 | } -------------------------------------------------------------------------------- /resource/ui/hudobjectivestatus.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudObjectiveStatus.res" 2 | { } -------------------------------------------------------------------------------- /resource/ui/hudpvewinpanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/hudpvewinpanel.res" 2 | { 3 | "WinPanelBG" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "WinPanelBG" 7 | "xpos" "0" 8 | "ypos" "50" 9 | "zpos" "0" 10 | "wide" "300" 11 | "tall" "90" 12 | "fillcolor" "HudBlack" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | 16 | "visible" "1" 17 | "enabled" "1" 18 | 19 | "src_corner_height" "22" // pixels inside the image 20 | "src_corner_width" "22" 21 | 22 | "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional 23 | "draw_corner_height" "0" 24 | } 25 | 26 | "WaveCompleteContainer" 27 | { 28 | "ControlName" "EditablePanel" 29 | "fieldName" "WaveCompleteContainer" 30 | "xpos" "0" 31 | "ypos" "50" 32 | "wide" "300" 33 | "tall" "30" 34 | "visible" "1" 35 | "PaintBackgroundType" "0" 36 | "paintborder" "1" 37 | "border" "ahudDarkBlueTeamBorder" 38 | "bgcolor_override" "ahudBlue" 39 | 40 | "WinningTeamLabelDropshadow" 41 | { 42 | "ControlName" "CExLabel" 43 | "fieldName" "WinningTeamLabelDropshadow" 44 | "font" "HudFontMediumSmallBold" 45 | "fgcolor" "ShadowBlack" 46 | "xpos" "0" 47 | "ypos" "0" 48 | "wide" "300" 49 | "tall" "31" 50 | "autoResize" "0" 51 | "pinCorner" "0" 52 | "visible" "1" 53 | "enabled" "1" 54 | "labelText" "#Winpanel_PVE_Evil_Wins" 55 | "textAlignment" "Center" 56 | "dulltext" "0" 57 | "brighttext" "0" 58 | 59 | // blue Background 60 | "PaintBackgroundType" "0" 61 | "fgcolor_override" "ShadowBlack" 62 | "bgcolor_override" "0 0 0" 63 | } 64 | 65 | "WinningTeamLabel" 66 | { 67 | "ControlName" "CExLabel" 68 | "fieldName" "WinningTeamLabel" 69 | "font" "HudFontMediumSmallBold" 70 | "xpos" "2" 71 | "ypos" "-1" 72 | "wide" "295" 73 | "tall" "30" 74 | "autoResize" "0" 75 | "pinCorner" "0" 76 | "visible" "1" 77 | "enabled" "1" 78 | "labelText" "#Winpanel_PVE_Evil_Wins" 79 | "textAlignment" "Center" 80 | "fgcolor" "ahudWhite" 81 | } 82 | } 83 | 84 | "WinReasonLabel" 85 | { 86 | "ControlName" "CExLabel" 87 | "fieldName" "WinReasonLabel" 88 | "font" "HudFontSmall" 89 | "xpos" "0" 90 | "ypos" "85" 91 | "zpos" "1" 92 | "wide" "292" 93 | "tall" "20" 94 | "autoResize" "0" 95 | "pinCorner" "0" 96 | "visible" "1" 97 | "enabled" "1" 98 | "labelText" "%WinReasonLabel%" 99 | "textAlignment" "Center" 100 | "dulltext" "0" 101 | "brighttext" "0" 102 | } 103 | 104 | "DetailsLabel" 105 | { 106 | "ControlName" "CExLabel" 107 | "fieldName" "DetailsLabel" 108 | "font" "HudFontSmallest" 109 | "xpos" "15" 110 | "ypos" "105" 111 | "zpos" "1" 112 | "wide" "265" 113 | "tall" "30" 114 | "autoResize" "0" 115 | "pinCorner" "0" 116 | "visible" "1" 117 | "enabled" "1" 118 | "labelText" "%DetailsLabel%" 119 | "textAlignment" "Center" 120 | "dulltext" "0" 121 | "brighttext" "0" 122 | "wrap" "1" 123 | "centerwrap" "1" 124 | } 125 | } -------------------------------------------------------------------------------- /resource/ui/hudrocketpack.res: -------------------------------------------------------------------------------- 1 | #base "HudItemEffectMeter.res" 2 | 3 | "Resource/UI/HudRocketPack.res" 4 | { 5 | HudItemEffectMeter 6 | { 7 | "fieldName" "HudItemEffectMeter" 8 | "visible" "1" 9 | "enabled" "1" 10 | "xpos" "c102" 11 | "ypos" "374" 12 | "wide" "100" 13 | "tall" "30" 14 | } 15 | 16 | "ItemEffectMeterBG" 17 | { 18 | "ControlName" "CTFImagePanel" 19 | "fieldName" "ItemEffectMeterBG" 20 | "xpos" "9999" 21 | } 22 | 23 | "ItemEffectIcon" 24 | { 25 | "ControlName" "CTFImagePanel" 26 | "fieldName" "ItemEffectIcon" 27 | "xpos" "0" 28 | "ypos" "0" 29 | "zpos" "2" 30 | "wide" "32" 31 | "tall" "32" 32 | "visible" "0" 33 | "enabled" "0" 34 | "image" "../hud/pyro_jetpack_off2" 35 | "scaleImage" "1" 36 | } 37 | 38 | "ItemEffectMeterLabel" 39 | { 40 | "ControlName" "CExLabel" 41 | "fieldName" "ItemEffectMeterLabel" 42 | "xpos" "0" 43 | "ypos" "7" 44 | "zpos" "2" 45 | "wide" "100" 46 | "tall" "8" 47 | "autoResize" "1" 48 | "pinCorner" "2" 49 | "visible" "1" 50 | "enabled" "1" 51 | "tabPosition" "0" 52 | "labelText" "#TF_RocketPack_Disabled" 53 | "textAlignment" "center" 54 | "dulltext" "0" 55 | "brighttext" "0" 56 | "font" "aRegular10" 57 | "fgcolor" "ahudWhite" 58 | } 59 | 60 | "ItemEffectMeter" 61 | { 62 | "ControlName" "ContinuousProgressBar" 63 | "fieldName" "ItemEffectMeter" 64 | "font" "Default" 65 | "xpos" "28" 66 | "ypos" "19" 67 | "zpos" "2" 68 | "wide" "20" 69 | "tall" "6" 70 | "autoResize" "0" 71 | "pinCorner" "0" 72 | "visible" "1" 73 | "enabled" "1" 74 | "textAlignment" "center" 75 | "dulltext" "0" 76 | "brighttext" "0" 77 | "fgcolor" "White" 78 | "bgcolor_override" "0 0 0 100" 79 | } 80 | 81 | "ItemEffectMeter2" 82 | { 83 | "ControlName" "ContinuousProgressBar" 84 | "fieldName" "ItemEffectMeter2" 85 | "font" "Default" 86 | "xpos" "52" 87 | "ypos" "19" 88 | "zpos" "2" 89 | "wide" "20" 90 | "tall" "6" 91 | "autoResize" "0" 92 | "pinCorner" "0" 93 | "visible" "1" 94 | "enabled" "1" 95 | "textAlignment" "center" 96 | "dulltext" "0" 97 | "brighttext" "0" 98 | "fgcolor" "White" 99 | "bgcolor_override" "0 0 0 100" 100 | } 101 | } -------------------------------------------------------------------------------- /resource/ui/hudroundcounter.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudRoundCounter.res" 2 | { 3 | "RoundCounter" 4 | { 5 | "fieldName" "RoundCounter" 6 | "xpos" "cs-0.5" 7 | "ypos" "-2" 8 | "zpos" "2" 9 | "wide" "300" 10 | "tall" "25" 11 | "visible" "1" 12 | "enabled" "1" 13 | "proportionaltoparent" "1" 14 | 15 | "starting_width" "20" 16 | "width_per_round" "24" 17 | "indicator_start_offset" "4" 18 | "indicator_max_wide" "30" 19 | 20 | "RoundIndicatorPanel_kv" 21 | { 22 | "ypos" "3" 23 | "wide" "6" 24 | "tall" "6" 25 | "zpos" "7" 26 | "image" "../hud/comp_round_counter_dot_bg" 27 | "scaleimage" "1" 28 | } 29 | 30 | "RoundWinPanelRed_kv" 31 | { 32 | "ypos" "-3" 33 | "wide" "17" 34 | "tall" "17" 35 | "zpos" "8" 36 | "image" "../hud/comp_round_counter_light_red" 37 | "scaleimage" "1" 38 | } 39 | 40 | "RoundWinPanelBlue_kv" 41 | { 42 | "ypos" "-3" 43 | "wide" "17" 44 | "tall" "17" 45 | "zpos" "8" 46 | "image" "../hud/comp_round_counter_light_blue" 47 | "scaleimage" "1" 48 | } 49 | } 50 | 51 | "Background" 52 | { 53 | "ControlName" "EditablePanel" 54 | "fieldName" "Background" 55 | "xpos" "c-40" 56 | "ypos" "11" 57 | "zpos" "5" 58 | "wide" "80" 59 | "tall" "14" 60 | "proportionaltoparent" "1" 61 | "bgcolor_override" "HudBlack" 62 | } 63 | "BlueTeamBackground" 64 | { 65 | "ControlName" "EditablePanel" 66 | "fieldName" "BlueTeamBackground" 67 | "xpos" "c-40" 68 | "ypos" "0" 69 | "zpos" "5" 70 | "wide" "40" 71 | "tall" "11" 72 | "proportionaltoparent" "1" 73 | "bgcolor_override" "ahudBlue" 74 | 75 | "BlueTeamBackground2" 76 | { 77 | "ControlName" "EditablePanel" 78 | "fieldName" "BlueTeamBackground2" 79 | "xpos" "0" 80 | "ypos" "rs1" 81 | "wide" "f0" 82 | "tall" "2" 83 | "proportionaltoparent" "1" 84 | "bgcolor_override" "ahudDarkBlue" 85 | } 86 | } 87 | "RedTeamBackground" 88 | { 89 | "ControlName" "EditablePanel" 90 | "fieldName" "RedTeamBackground" 91 | "xpos" "c0" 92 | "ypos" "0" 93 | "zpos" "5" 94 | "wide" "40" 95 | "tall" "11" 96 | "proportionaltoparent" "1" 97 | "bgcolor_override" "ahudRed" 98 | 99 | "RedTeamBackground2" 100 | { 101 | "ControlName" "EditablePanel" 102 | "fieldName" "RedTeamBackground2" 103 | "xpos" "0" 104 | "ypos" "rs1" 105 | "wide" "f0" 106 | "tall" "2" 107 | "proportionaltoparent" "1" 108 | "bgcolor_override" "ahudDarkRed" 109 | } 110 | } 111 | } -------------------------------------------------------------------------------- /resource/ui/hudspellselection.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudSpellSelection.res" 2 | { 3 | "ItemEffectMeterBG" 4 | { 5 | "ControlName" "CTFImagePanel" 6 | "fieldName" "ItemEffectMeterBG" 7 | "xpos" "0" 8 | "ypos" "10" 9 | "wide" "80" 10 | "tall" "40" 11 | "visible" "0" 12 | "enabled" "0" 13 | "image" "../hud/ammo_blue_bg" 14 | "scaleImage" "1" 15 | "teambg_2" "../hud/ammo_red_bg" 16 | "teambg_3" "../hud/ammo_blue_bg" 17 | } 18 | 19 | "Spellbook" 20 | { 21 | "ControlName" "CTFImagePanel" 22 | "fieldName" "Spellbook" 23 | "xpos" "10" 24 | "ypos" "0" 25 | "zpos" "0" 26 | "wide" "64" 27 | "tall" "56" 28 | "visible" "0" 29 | "enabled" "0" 30 | "image" "spellbook_book" 31 | "scaleImage" "1" 32 | } 33 | 34 | "SpellIcon" 35 | { 36 | "ControlName" "ImagePanel" 37 | "fieldName" "SpellIcon" 38 | "xpos" "16" 39 | "ypos" "15" 40 | "xpos_minmode" "16" 41 | "ypos_minmode" "35" 42 | "zpos" "7" 43 | "wide" "24" 44 | "tall" "24" 45 | "visible" "1" 46 | "enabled" "1" 47 | "scaleImage" "1" 48 | "image" "../signs/death_wheel_whammy" 49 | "fgcolor" "ahudWhite" 50 | } 51 | 52 | "ActionText" 53 | { 54 | "ControlName" "CExLabel" 55 | "fieldName" "ActionText" 56 | "font" "Default" 57 | "labelText" "%actiontext%" 58 | "textAlignment" "west" 59 | "xpos" "18" 60 | "ypos" "43" 61 | "wide" "100" 62 | "tall" "10" 63 | "fgcolor" "ahudWhite" 64 | "visible" "1" 65 | } 66 | 67 | "SpellText" 68 | { 69 | "ControlName" "CExLabel" 70 | "fieldName" "SpellText" 71 | "font" "Default" 72 | "labelText" "%selectedspell%" 73 | "textAlignment" "west" 74 | "xpos" "35" 75 | "ypos" "25" 76 | "wide" "100" 77 | "tall" "10" 78 | "fgcolor" "tanlight" 79 | "visible" "0" 80 | } 81 | 82 | "CountText" 83 | { 84 | "ControlName" "CExLabel" 85 | "fieldName" "CountText" 86 | "font" "aRegular20" 87 | "labelText" "%counttext%" 88 | "textAlignment" "center" 89 | "xpos" "42" 90 | "ypos" "17" 91 | "zpos" "1" 92 | "xpos_minmode" "42" 93 | "ypos_minmode" "37" 94 | "wide" "20" 95 | "tall" "19" 96 | "fgcolor" "ahudWhite" 97 | } 98 | 99 | "CountTextShadow" 100 | { 101 | "ControlName" "CExLabel" 102 | "fieldName" "CountTextShadow" 103 | "font" "aRegular20" 104 | "labelText" "%counttext%" 105 | "textAlignment" "center" 106 | "xpos" "-1" 107 | "ypos" "-1" 108 | "zpos" "0" 109 | "wide" "20" 110 | "tall" "20" 111 | "fgcolor" "ShadowBlack" 112 | 113 | "pin_to_sibling" "CountText" 114 | "pin_corner_to_sibling" "PIN_TOPLEFT" 115 | "pin_to_sibling_corner" "PIN_TOPLEFT" 116 | } 117 | } -------------------------------------------------------------------------------- /resource/ui/hudstopwatch.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudStopWatch.res" 2 | { 3 | "HudStopWatchBG" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "HudStopWatchBG" 7 | "xpos" "c19" 8 | "ypos" "0" 9 | "zpos" "-1" 10 | "wide" "109" 11 | "tall" "14" 12 | "autoResize" "0" 13 | "pinCorner" "0" 14 | "visible" "1" 15 | "enabled" "1" 16 | "fillcolor" "HudBlack" 17 | 18 | if_comp 19 | { 20 | "xpos" "c-54" 21 | "ypos" "31" 22 | "visible" "0" 23 | } 24 | } 25 | 26 | "StopWatchImageCaptureTime" 27 | { 28 | "ControlName" "ImagePanel" 29 | "fieldName" "StopWatchImageCaptureTime" 30 | "xpos" "9999" 31 | } 32 | 33 | "ObjectiveStatusTimePanel" 34 | { 35 | "ControlName" "EditablePanel" 36 | "fieldName" "ObjectiveStatusTimePanel" 37 | "xpos" "c20" 38 | "ypos" "0" 39 | "zpos" "1" 40 | "wide" "110" 41 | "tall" "150" 42 | "visible" "1" 43 | "enabled" "1" 44 | 45 | if_comp 46 | { 47 | "xpos" "c-52" 48 | "ypos" "31" 49 | } 50 | 51 | "TimePanelValue" 52 | { 53 | "ControlName" "CExLabel" 54 | "fieldName" "TimePanelValue" 55 | "font" "aRegular14" 56 | "fgcolor" "ahudWhite" 57 | "xpos" "0" 58 | "ypos" "0" 59 | "zpos" "3" 60 | "wide" "55" 61 | "tall" "15" 62 | "visible" "1" 63 | "enabled" "1" 64 | "textAlignment" "center" 65 | } 66 | } 67 | 68 | "StopWatchScoreToBeat" 69 | { 70 | "ControlName" "CExLabel" 71 | "fieldName" "StopWatchScoreToBeat" 72 | "font" "aRegular14" 73 | "labelText" "%scoretobeat%" 74 | "textAlignment" "west" 75 | "xpos" "c70" 76 | "ypos" "0" 77 | "zpos" "4" 78 | "wide" "93" 79 | "tall" "15" 80 | "autoResize" "0" 81 | "pinCorner" "0" 82 | "visible" "0" 83 | "enabled" "1" 84 | "fgcolor" "ahudWhite" 85 | 86 | if_comp 87 | { 88 | "xpos" "c-3" 89 | "ypos" "31" 90 | } 91 | } 92 | 93 | "StopWatchPointsLabel" 94 | { 95 | "ControlName" "CExLabel" 96 | "fieldName" "StopWatchPointsLabel" 97 | "font" "aRegular12" 98 | "labelText" "%pointslabel%" 99 | "textAlignment" "west" 100 | "xpos" "c80" 101 | "ypos" "0" 102 | "zpos" "4" 103 | "wide" "120" 104 | "tall" "14" 105 | "autoResize" "0" 106 | "pinCorner" "0" 107 | "visible" "1" 108 | "enabled" "1" 109 | "wrap" "0" 110 | "fgcolor" "ahudWhite" 111 | 112 | if_comp 113 | { 114 | "xpos" "c7" 115 | "ypos" "31" 116 | } 117 | } 118 | 119 | "StopWatchLabel" 120 | { 121 | "ControlName" "CExLabel" 122 | "fieldName" "StopWatchLabel" 123 | "font" "aRegular10" 124 | "labelText" "%stopwatchlabel%" 125 | "textAlignment" "center" 126 | "xpos" "c10" 127 | "ypos" "0" 128 | "zpos" "4" 129 | "wide" "125" 130 | "tall" "15" 131 | "autoResize" "0" 132 | "pinCorner" "0" 133 | "visible" "0" 134 | "enabled" "1" 135 | "wrap" "0" 136 | "fgcolor" "ahudWhite" 137 | 138 | if_comp 139 | { 140 | "xpos" "c-62" 141 | "ypos" "31" 142 | } 143 | } 144 | 145 | "HudStopWatchDescriptionBG" 146 | { 147 | "ControlName" "ScalableImagePanel" 148 | "fieldName" "HudStopWatchDescriptionBG" 149 | "xpos" "9999" 150 | } 151 | 152 | "StopWatchDescriptionLabel" 153 | { 154 | "ControlName" "CExLabel" 155 | "fieldName" "StopWatchDescriptionLabel" 156 | "xpos" "9999" 157 | } 158 | } -------------------------------------------------------------------------------- /resource/ui/hudteamgoal.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudTeamGoal.res" 2 | { 3 | "HudTeamGoalBG" 4 | { 5 | "ControlName" "CTFImagePanel" 6 | "fieldName" "HudTeamGoalBG" 7 | "xpos" "9999" 8 | "ypos" "9999" 9 | "zpos" "-1" 10 | "wide" "320" 11 | "tall" "150" 12 | "autoResize" "0" 13 | "pinCorner" "0" 14 | "visible" "1" 15 | "enabled" "1" 16 | "image" "../hud/death_panel_blue_bg" 17 | "scaleImage" "1" 18 | "teambg_2" "../hud/death_panel_red_bg" 19 | "teambg_3" "../hud/death_panel_blue_bg" 20 | } 21 | "SwitchLabel" 22 | { 23 | "ControlName" "Label" 24 | "fieldName" "SwitchLabel" 25 | "font" "HudFontSmallBold" 26 | "xpos" "9999" 27 | "ypos" "9999" 28 | "zpos" "1" 29 | "wide" "220" 30 | "tall" "15" 31 | "autoResize" "0" 32 | "pinCorner" "0" 33 | "visible" "1" 34 | "enabled" "1" 35 | "wrap" "1" 36 | "labelText" "#TF_teamswitch_attackers" 37 | "textAlignment" "North" 38 | } 39 | "GoalLabel" 40 | { 41 | "ControlName" "Label" 42 | "fieldName" "GoalLabel" 43 | "font" "HudFontSmall" 44 | "xpos" "99999" 45 | "ypos" "9999" 46 | "zpos" "1" 47 | "wide" "220" 48 | "tall" "55" 49 | "autoResize" "0" 50 | "pinCorner" "0" 51 | "visible" "1" 52 | "enabled" "1" 53 | "wrap" "1" 54 | "labelText" "" 55 | "textAlignment" "North" 56 | } 57 | "GoalImage" 58 | { 59 | "ControlName" "CTFImagePanel" 60 | "fieldName" "GoalImage" 61 | "xpos" "99999" 62 | "ypos" "9999" 63 | "zpos" "1" 64 | "wide" "45" 65 | "tall" "45" 66 | "autoResize" "0" 67 | "pinCorner" "0" 68 | "visible" "1" 69 | "enabled" "1" 70 | "image" "../hud/hud_icon_attack" 71 | "scaleImage" "1" 72 | } 73 | } -------------------------------------------------------------------------------- /resource/ui/hudtournamentsetup.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/HudTournamentSetup.res" 2 | { 3 | "HudTournamentSetupBG" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "HudTournamentSetupBG" 7 | "xpos" "50" 8 | "ypos" "0" 9 | "zpos" "-1" 10 | "wide" "80" 11 | "tall" "14" 12 | "autoResize" "0" 13 | "pinCorner" "0" 14 | "visible" "1" 15 | "enabled" "1" 16 | "fillcolor" "HudBlack" 17 | } 18 | 19 | "TournamentSetupLabel" 20 | { 21 | "ControlName" "Label" 22 | "fieldName" "TournamentLabel" 23 | "xpos" "9999" 24 | } 25 | 26 | "TournamentTeamNameLabel" 27 | { 28 | "ControlName" "Label" 29 | "fieldName" "TournamentTeamNameLabel" 30 | "xpos" "9999" 31 | } 32 | 33 | "TournamentNameEdit" 34 | { 35 | "ControlName" "TextEntry" 36 | "fieldName" "TournamentNameEdit" 37 | "xpos" "52" 38 | "ypos" "0" 39 | "zpos" "2" 40 | "wide" "76" 41 | "tall" "14" 42 | "autoResize" "0" 43 | "pinCorner" "0" 44 | "visible" "1" 45 | "enabled" "1" 46 | "tabPosition" "0" 47 | "textHidden" "0" 48 | "editable" "1" 49 | "maxchars" "5" 50 | "NumericInputOnly" "0" 51 | "unicode" "0" 52 | "wrap" "0" 53 | "fgcolor_override" "ahudWhite" 54 | "bgcolor_override" "Blank" 55 | "selectionColor_override" "ahudWhite" 56 | "selectionTextColor_override" "ahudBlack" 57 | "labelText" "%teamname%" 58 | "textAlignment" "west" 59 | } 60 | 61 | "HudTournamentNameBG" 62 | { 63 | "ControlName" "CTFImagePanel" 64 | "fieldName" "HudTournamentNameBG" 65 | "xpos" "9999" 66 | } 67 | 68 | "TournamentNotReadyButton" 69 | { 70 | "ControlName" "CExButton" 71 | "fieldName" "TournamentNotReadyButton" 72 | "xpos" "50" 73 | "ypos" "14" 74 | "wide" "40" 75 | "tall" "14" 76 | "zpos" "0" 77 | "autoResize" "0" 78 | "pinCorner" "2" 79 | "visible" "1" 80 | "enabled" "1" 81 | "labelText" "NO" 82 | "textAlignment" "center" 83 | "dulltext" "0" 84 | "brighttext" "0" 85 | "command" "teamnotready" 86 | "default" "1" 87 | "font" "aRegular10" 88 | "fgcolor" "Red" 89 | 90 | "defaultBgColor_override" "ahudBlack" 91 | "defaultFgColor_override" "ahudWhite" 92 | "armedBgColor_override" "RedSolid" 93 | "armedFgColor_override" "ahudWhite" 94 | "depressedBgColor_override" "RedSolid" 95 | "depressedFgColor_override" "ahudWhite" 96 | } 97 | 98 | "TournamentReadyButton" 99 | { 100 | "ControlName" "CExButton" 101 | "fieldName" "TournamentReadyButton" 102 | "xpos" "90" 103 | "ypos" "14" 104 | "wide" "40" 105 | "tall" "14" 106 | "zpos" "0" 107 | "autoResize" "0" 108 | "pinCorner" "2" 109 | "visible" "1" 110 | "enabled" "1" 111 | "labelText" "YES" 112 | "textAlignment" "center" 113 | "dulltext" "0" 114 | "brighttext" "0" 115 | "command" "teamready" 116 | "default" "1" 117 | "font" "aRegular10" 118 | "fgcolor" "FooterBGBlack" 119 | 120 | "defaultBgColor_override" "ahudBlack" 121 | "defaultFgColor_override" "ahudWhite" 122 | "armedBgColor_override" "CreditsGreen" 123 | "armedFgColor_override" "ahudWhite" 124 | "depressedBgColor_override" "CreditsGreen" 125 | "depressedFgColor_override" "ahudWhite" 126 | } 127 | } -------------------------------------------------------------------------------- /resource/ui/itemoptionspanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/LoadoutParticleSlider.res" 2 | { 3 | "PanelListPanel" 4 | { 5 | "ControlName" "CPanelListPanel" 6 | "fieldName" "PanelListPanel" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "wide" "f-19" 10 | "tall" "f0" 11 | "autoResize" "0" 12 | "pinCorner" "0" 13 | "visible" "1" 14 | "enabled" "1" 15 | "tabPosition" "0" 16 | "proportionalToParent" "1" 17 | "autohide_scrollbar" "1" 18 | "bgcolor_override" "0 0 0 0" 19 | 20 | "HatUseHeadCheckButton" 21 | { 22 | "ControlName" "CheckButton" 23 | "fieldName" "HatUseHeadCheckButton" 24 | "xpos" "0" 25 | "ypos" "0" 26 | "wide" "140" 27 | "tall" "20" 28 | "autoResize" "0" 29 | "pinCorner" "0" 30 | "RoundedCorners" "15" 31 | "pin_corner_to_sibling" "0" 32 | "pin_to_sibling_corner" "0" 33 | "visible" "0" 34 | "enabled" "1" 35 | "tabPosition" "0" 36 | "labelText" "#GameUI_ParticleHatUseHead" 37 | "textAlignment" "west" 38 | "dulltext" "0" 39 | "brighttext" "1" 40 | "wrap" "0" 41 | "centerwrap" "0" 42 | "textinsetx" "6" 43 | "textinsety" "0" 44 | "auto_wide_tocontents" "0" 45 | "use_proportional_insets" "0" 46 | "Default" "0" 47 | "Command" "particle_use_head_clicked" 48 | } 49 | 50 | "HatParticleSlider" 51 | { 52 | "ControlName" "CCvarSlider" 53 | "fieldName" "HatParticleSlider" 54 | "xpos" "0" 55 | "ypos" "0" 56 | "wide" "140" 57 | "tall" "14" 58 | "autoResize" "0" 59 | "RoundedCorners" "15" 60 | "visible" "0" 61 | "enabled" "1" 62 | "tabPosition" "0" 63 | "fgcolor_override" "TanLight" 64 | } 65 | 66 | "SetStyleButton" 67 | { 68 | "ControlName" "CExButton" 69 | "fieldName" "SetStyleButton" 70 | "xpos" "0" 71 | "ypos" "0" 72 | "wide" "140" 73 | "tall" "14" 74 | "autoResize" "0" 75 | "pinCorner" "3" 76 | "visible" "0" 77 | "enabled" "1" 78 | "tabPosition" "0" 79 | "labelText" "#TF_Item_SelectStyle" 80 | "font" "aRegular10" 81 | "textAlignment" "center" 82 | "dulltext" "0" 83 | "brighttext" "0" 84 | "default" "1" 85 | "sound_depressed" "UI/buttonclick.wav" 86 | "sound_released" "UI/buttonclickrelease.wav" 87 | "Command" "set_style" 88 | } 89 | } 90 | } -------------------------------------------------------------------------------- /resource/ui/loadoutpresetpanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/LoadoutPresetPanel.res" 2 | { 3 | "loadout_preset_panel" 4 | { 5 | "ControlName" "CLoadoutPresetPanel" 6 | "fieldName" "loadout_preset_panel" 7 | 8 | "presetbutton_kv" 9 | { 10 | "zpos" "20" 11 | "wide" "25" 12 | "tall" "25" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "0" 16 | "enabled" "1" 17 | "tabPosition" "0" 18 | "font" "aRegular18" 19 | "textAlignment" "center" 20 | "textinsetx" "0" 21 | "dulltext" "0" 22 | "brighttext" "0" 23 | "Command" "" 24 | "sound_depressed" "UI/buttonclick.wav" 25 | "sound_released" "UI/buttonclickrelease.wav" 26 | "centerwrap" "1" 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /resource/ui/lobbypanel_mvm.res: -------------------------------------------------------------------------------- 1 | #base "LobbyPanel.res" 2 | 3 | "Resource/UI/LobbyPanel.res" 4 | { 5 | "LobbyPanel" 6 | { 7 | "ControlName" "Frame" 8 | "fieldName" "LobbyPanel" 9 | "xpos" "0" 10 | "ypos" "50" 11 | "wide" "f0" 12 | "tall" "480" 13 | "autoResize" "0" 14 | "pinCorner" "0" 15 | "visible" "0" 16 | "enabled" "1" 17 | "tabPosition" "0" 18 | "settitlebarvisible" "0" 19 | "PaintBackgroundType" "0" 20 | "bgcolor_override" "ahudDarkGrey" 21 | 22 | "NavToRelay" "MvMTourOfDutyGroupBox" 23 | "NavDown" "MvMEconItemsGroupBox" 24 | } 25 | 26 | "criteria" 27 | { 28 | "fieldname" "criteria" 29 | "xpos" "c-305" 30 | "ypos" "10" 31 | "zpos" "1000" 32 | "wide" "400" 33 | "tall" "350" 34 | "visible" "1" 35 | "enabled" "1" 36 | } 37 | } -------------------------------------------------------------------------------- /resource/ui/matchmakingdashboardcasualcriteria.res: -------------------------------------------------------------------------------- 1 | #base "MatchMakingDashboardSidePanel.res" 2 | 3 | "Resource/UI/MatchMakingDashboardCasualCriteria.res" 4 | { 5 | "CasualCriteria" 6 | { 7 | "fieldName" "CasualCriteria" 8 | "xpos" "r0" 9 | "ypos" "10" 10 | "zpos" "1002" 11 | "wide" "270" 12 | "tall" "f70" 13 | "visible" "1" 14 | "proportionaltoparent" "1" 15 | } 16 | 17 | "Title" 18 | { 19 | "ControlName" "Label" 20 | "fieldName" "Title" 21 | "xpos" "8" 22 | "ypos" "23" 23 | "zpos" "99" 24 | "wide" "f0" 25 | "tall" "20" 26 | "proportionaltoparent" "1" 27 | "labeltext" "#TF_Matchmaking_HeaderCasual" 28 | "textAlignment" "west" 29 | "font" "aBold24" 30 | "fgcolor_override" "ahudWhite" 31 | 32 | "mouseinputenabled" "0" 33 | } 34 | 35 | "criteria" 36 | { 37 | "ControlName" "CCasualCriteriaPanel" 38 | "fieldName" "criteria" 39 | "xpos" "-3" 40 | "ypos" "40" 41 | "zpos" "100" 42 | "wide" "f0" 43 | "tall" "f73" 44 | "visible" "1" 45 | "proportionaltoparent" "1" 46 | } 47 | 48 | "ToolTipButtonHack" 49 | { 50 | "ControlName" "EditablePanel" 51 | "fieldName" "ToolTipButtonHack" 52 | "xpos" "cs-0.5" 53 | "ypos" "rs1-8" 54 | "zpos" "101" 55 | "wide" "f20" 56 | "tall" "20" 57 | "visible" "0" 58 | "enabled" "1" 59 | "mouseinputenabled" "1" 60 | "eatmouseinput" "0" 61 | "showtooltipswhenmousedisabled" "1" 62 | "proportionaltoparent" "1" 63 | } 64 | 65 | "QueueButton" 66 | { 67 | "ControlName" "CExButton" 68 | "fieldName" "QueueButton" 69 | "xpos" "cs-0.5" 70 | "ypos" "rs1-8" 71 | "zpos" "100" 72 | "wide" "f20" 73 | "tall" "20" 74 | "autoResize" "0" 75 | "pinCorner" "3" 76 | "visible" "1" 77 | "enabled" "1" 78 | "tabPosition" "0" 79 | "font" "HudFontMediumSmallBold" 80 | "textAlignment" "center" 81 | "dulltext" "0" 82 | "brighttext" "0" 83 | "Command" "find_game" 84 | "proportionaltoparent" "1" 85 | "labeltext" "#TF_Matchmaking_StartSearch" 86 | "mouseinputenabled" "1" 87 | "keyboardinputenabled" "0" 88 | "actionsignallevel" "1" 89 | 90 | "sound_depressed" "UI/buttonclick.wav" 91 | "sound_released" "UI/buttonclickrelease.wav" 92 | 93 | "armedBgColor_override" "CreditsGreen" 94 | "defaultBgColor_override" "GreenSolid" 95 | } 96 | } -------------------------------------------------------------------------------- /resource/ui/matchmakingdashboardcomp.res: -------------------------------------------------------------------------------- 1 | #base "MatchMakingDashboardSidePanel.res" 2 | 3 | "Resource/UI/MatchMakingDashboardComp.res" 4 | { 5 | "CompStats" 6 | { 7 | "fieldName" "CompStats" 8 | "xpos" "r0" 9 | "ypos" "10" 10 | "zpos" "1002" 11 | "wide" "270" 12 | "tall" "f70" 13 | "visible" "1" 14 | "proportionaltoparent" "1" 15 | } 16 | 17 | "Title" 18 | { 19 | "ControlName" "Label" 20 | "fieldName" "Title" 21 | "xpos" "8" 22 | "ypos" "23" 23 | "zpos" "99" 24 | "wide" "f0" 25 | "tall" "20" 26 | "proportionaltoparent" "1" 27 | "labeltext" "#TF_Matchmaking_HeaderCompetitive" 28 | "textAlignment" "west" 29 | "font" "aBold24" 30 | "fgcolor_override" "ahudWhite" 31 | 32 | "mouseinputenabled" "0" 33 | } 34 | 35 | "ShowExplanationsButton" 36 | { 37 | "ControlName" "CExButton" 38 | "fieldName" "ShowExplanationsButton" 39 | "xpos" "rs1-21" 40 | "ypos" "20" 41 | "zpos" "100" 42 | "wide" "15" 43 | "tall" "o1" 44 | "autoResize" "0" 45 | "pinCorner" "0" 46 | "visible" "1" 47 | "enabled" "1" 48 | "tabPosition" "0" 49 | "labelText" "?" 50 | "font" "HudFontSmallBold" 51 | "textAlignment" "center" 52 | "dulltext" "0" 53 | "brighttext" "0" 54 | "default" "0" 55 | "Command" "show_explanations" 56 | "sound_depressed" "UI/buttonclick.wav" 57 | "sound_released" "UI/buttonclickrelease.wav" 58 | "actionsignallevel" "1" 59 | "proportionaltoparent" "1" 60 | } 61 | 62 | "RankTooltipPanel" 63 | { 64 | "ControlName" "ImagePanel" 65 | "fieldName" "RankTooltipPanel" 66 | "xpos" "5" 67 | "ypos" "44" 68 | "zpos" "1000" 69 | "wide" "8" 70 | "tall" "8" 71 | "visible" "1" 72 | "proportionaltoparent" "1" 73 | "mouseinputenabled" "1" 74 | "image" "info" 75 | "scaleImage" "1" 76 | "alpha" "75" 77 | } 78 | 79 | "stats" 80 | { 81 | "fieldName" "stats" 82 | "xpos" "-1" 83 | "ypos" "40" 84 | "zpos" "100" 85 | "wide" "305" 86 | "tall" "f80" 87 | "visible" "1" 88 | "proportionaltoparent" "1" 89 | } 90 | 91 | "ToolTipButtonHack" 92 | { 93 | "ControlName" "EditablePanel" 94 | "fieldName" "ToolTipButtonHack" 95 | "xpos" "cs-0.5" 96 | "ypos" "rs1-8" 97 | "zpos" "101" 98 | "wide" "f20" 99 | "tall" "20" 100 | "visible" "0" 101 | "enabled" "1" 102 | "mouseinputenabled" "1" 103 | "eatmouseinput" "0" 104 | "showtooltipswhenmousedisabled" "1" 105 | "proportionaltoparent" "1" 106 | } 107 | 108 | "QueueButton" 109 | { 110 | "ControlName" "CExButton" 111 | "fieldName" "QueueButton" 112 | "xpos" "cs-0.5" 113 | "ypos" "rs1-8" 114 | "zpos" "100" 115 | "wide" "f20" 116 | "tall" "20" 117 | "autoResize" "0" 118 | "pinCorner" "3" 119 | "visible" "1" 120 | "enabled" "1" 121 | "tabPosition" "0" 122 | "font" "HudFontMediumSmallBold" 123 | "textAlignment" "center" 124 | "dulltext" "0" 125 | "brighttext" "0" 126 | "Command" "find_game" 127 | "proportionaltoparent" "1" 128 | "labeltext" "#TF_Matchmaking_StartSearch" 129 | "mouseinputenabled" "1" 130 | "keyboardinputenabled" "0" 131 | "actionsignallevel" "1" 132 | 133 | "sound_depressed" "UI/buttonclick.wav" 134 | "sound_released" "UI/buttonclickrelease.wav" 135 | 136 | "armedBgColor_override" "CreditsGreen" 137 | "defaultBgColor_override" "GreenSolid" 138 | } 139 | } -------------------------------------------------------------------------------- /resource/ui/matchmakingdashboardplaylist.res: -------------------------------------------------------------------------------- 1 | #base "MatchMakingDashboardSidePanel.res" 2 | 3 | "Resource/UI/MatchMakingDashboardPlayList.res" 4 | { 5 | "ExpandableList" 6 | { 7 | "fieldName" "ExpandableList" 8 | "xpos" "r0" 9 | "ypos" "10" 10 | "zpos" "1001" 11 | "wide" "280" 12 | "tall" "f70" 13 | "visible" "1" 14 | "proportionaltoparent" "1" 15 | } 16 | 17 | "Title" 18 | { 19 | "ControlName" "Label" 20 | "fieldName" "Title" 21 | "xpos" "8" 22 | "ypos" "23" 23 | "zpos" "99" 24 | "wide" "f0" 25 | "tall" "20" 26 | "proportionaltoparent" "1" 27 | "labeltext" "#TF_Matchmaking_HeaderModeSelect" 28 | "textAlignment" "west" 29 | "font" "aBold24" 30 | "fgcolor_override" "ahudWhite" 31 | 32 | "mouseinputenabled" "0" 33 | } 34 | 35 | "playlist" 36 | { 37 | // "ControlName" "CTFPlaylistPanel" 38 | "fieldName" "playlist" 39 | "xpos" "8" 40 | "ypos" "50" 41 | "zpos" "100" 42 | "wide" "255" 43 | "tall" "365" 44 | "visible" "1" 45 | "proportionaltoparent" "1" 46 | } 47 | 48 | "PlayListDropShadow" 49 | { 50 | "ControlName" "EditablePanel" 51 | "fieldName" "PlayListDropShadow" 52 | "xpos" "8" 53 | "ypos" "50" 54 | "zpos" "1000" 55 | "wide" "255" 56 | "tall" "298" 57 | "visible" "0" 58 | "PaintBackgroundType" "2" 59 | "border" "InnerShadowBorder" 60 | "proportionaltoparent" "1" 61 | "mouseinputenabled" "0" 62 | } 63 | } -------------------------------------------------------------------------------- /resource/ui/matchmakingdashboardpopup_nextmapwinner.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/MatchMakingDashboardPopup_NextMapWinner.res" 2 | { 3 | "NextMapWinner" 4 | { 5 | "ControlName" "CExpandablePanel" 6 | "fieldName" "NextMapWinner" 7 | "xpos" "cs-0.5" 8 | "ypos" "0" 9 | "zpos" "10000" 10 | "wide" "260" 11 | "tall" "80" 12 | "visible" "1" 13 | "proportionaltoparent" "1" 14 | "keyboardinputenabled" "0" 15 | "mouseinputenabled" "1" 16 | 17 | "collapsed_height" "0" 18 | "expanded_height" "80" 19 | 20 | "pinCorner" "2" 21 | "autoResize" "1" 22 | 23 | "OuterShadow" 24 | { 25 | "ControlName" "EditablePanel" 26 | "fieldName" "OuterShadow" 27 | "xpos" "0" 28 | "ypos" "rs1" 29 | "zpos" "-2" 30 | "wide" "f0" 31 | "tall" "f0" 32 | "visible" "0" 33 | "PaintBackgroundType" "0" 34 | "border" "OuterShadowBorder" 35 | "proportionaltoparent" "1" 36 | 37 | "pinCorner" "0" 38 | "autoResize" "2" 39 | } 40 | 41 | "BGPanel" 42 | { 43 | "ControlName" "EditablePanel" 44 | "fieldName" "BGPanel" 45 | "xpos" "cs-0.5" 46 | "ypos" "cs-0.5" 47 | "zpos" "-1" 48 | "wide" "f5" 49 | "tall" "f5" 50 | "visible" "1" 51 | "PaintBackgroundType" "0" 52 | "border" "ahudPanelBorder" 53 | "bgcolor_override" "ahudDarkGrey" 54 | "proportionaltoparent" "1" 55 | "pinCorner" "2" 56 | 57 | "DescLabel" 58 | { 59 | "ControlName" "Label" 60 | "fieldName" "DescLabel" 61 | "xpos" "0" 62 | "ypos" "3" 63 | "wide" "f0" 64 | "zpos" "100" 65 | "tall" "20" 66 | "visible" "1" 67 | "enabled" "1" 68 | "font" "HudFontSmallBold" 69 | "fgcolor_override" "TanLight" 70 | "textAlignment" "center" 71 | "labelText" "#TF_Matchmaking_RollingQueue_NextMapWinner" 72 | "proportionaltoparent" "1" 73 | } 74 | 75 | "MapImageClip" 76 | { 77 | "ControlName" "EditablePanel" 78 | "fieldName" "MapImageClip" 79 | "xpos" "cs-0.5" 80 | "ypos" "22" 81 | "wide" "50" 82 | "tall" "o0.75" 83 | "zpos" "1" 84 | "proportionaltoparent" "1" 85 | "mouseinputenabled" "0" 86 | 87 | "MapImage" 88 | { 89 | "ControlName" "ScalableImagePanel" 90 | "fieldName" "MapImage" 91 | "xpos" "cs-0.5" 92 | "ypos" "0" 93 | "wide" "f0" 94 | "tall" "o1" 95 | "zpos" "0" 96 | "image" "..\vgui\maps\menu_thumb_pl_goldrush" 97 | "proportionaltoparent" "1" 98 | "mouseinputenabled" "0" 99 | } 100 | } 101 | 102 | "NameLabel" 103 | { 104 | "ControlName" "Label" 105 | "fieldName" "NameLabel" 106 | "xpos" "0" 107 | "ypos" "rs1-2" 108 | "wide" "f0" 109 | "zpos" "10" 110 | "tall" "20" 111 | "visible" "1" 112 | "enabled" "1" 113 | "font" "MapVotesPercentage" 114 | "fgcolor_override" "TanLight" 115 | "textAlignment" "south" 116 | "labelText" "%mapname%" 117 | "proportionaltoparent" "1" 118 | "mouseinputenabled" "0" 119 | } 120 | } 121 | } 122 | } -------------------------------------------------------------------------------- /resource/ui/matchmakingtooltip.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/MatchMakingTooltip.res" 2 | { 3 | "TooltipPanel" 4 | { 5 | // "ControlName" "EditablePanel" 6 | "fieldName" "TooltipPanel" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "zpos" "30000" 10 | "wide" "300" 11 | "tall" "100" 12 | "visible" "0" 13 | "PaintBackgroundType" "2" 14 | "border" "MainMenuBGBorder" 15 | "mouseinputenabled" "0" 16 | 17 | "TipLabel" 18 | { 19 | "ControlName" "CExLabel" 20 | "fieldName" "TipLabel" 21 | 22 | if_small 23 | { 24 | "font" "FontStoreOriginalPrice" 25 | } 26 | 27 | if_medium 28 | { 29 | "font" "HudFontSmall" 30 | } 31 | 32 | if_large 33 | { 34 | "font" "HudFontSmallBold" 35 | } 36 | 37 | "labelText" "%tiptext%" 38 | "textAlignment" "center" 39 | "xpos" "10" 40 | "ypos" "10" 41 | "zpos" "2" 42 | "wide" "140" 43 | "tall" "30" 44 | "autoResize" "0" 45 | "pinCorner" "0" 46 | "visible" "1" 47 | "enabled" "1" 48 | "fgcolor_override" "ahudWhite" 49 | "auto_wide_tocontents" "1" 50 | "auto_tall_tocontents" "1" 51 | "wrap" "1" 52 | } 53 | } 54 | } -------------------------------------------------------------------------------- /resource/ui/mvmcreditspendpanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/MvMCreditSpendPanel.res" 2 | { 3 | "HeaderLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "HeaderLabel" 7 | "font" "aRegular14" 8 | "labelText" "%header%" 9 | "textAlignment" "north-west" 10 | "xpos" "0" 11 | "ypos" "0" 12 | "wide" "300" 13 | "tall" "15" 14 | "fgcolor" "ahudWhite" 15 | } 16 | 17 | "TableBackground" 18 | { 19 | "ControlName" "EditablePanel" 20 | "fieldName" "TableBackground" 21 | "xpos" "0" 22 | "ypos" "14" 23 | "zpos" "-1" 24 | "wide" "190" 25 | "tall" "42" 26 | "visible" "1" 27 | "bgcolor_override" "0 0 0 0" 28 | } 29 | 30 | "UpgradesLabel" 31 | { 32 | "ControlName" "CExLabel" 33 | "fieldName" "UpgradesLabel" 34 | "font" "aRegular12" 35 | "labelText" "#TF_PVE_Upgrades" 36 | "textAlignment" "north-west" 37 | "xpos" "0" 38 | "ypos" "15" 39 | "wide" "70" 40 | "tall" "20" 41 | "fgcolor" "ahudWhite" 42 | } 43 | 44 | "UpgradesCountLabel" 45 | { 46 | "ControlName" "CExLabel" 47 | "fieldName" "UpgradesCountLabel" 48 | "font" "aRegular12" 49 | "labelText" "%upgrades%" 50 | "textAlignment" "north-east" 51 | "xpos" "75" 52 | "ypos" "15" 53 | "wide" "30" 54 | "tall" "20" 55 | "fgcolor" "ahudWhite" 56 | } 57 | 58 | "BuyBackLabel" 59 | { 60 | "ControlName" "CExLabel" 61 | "fieldName" "BuyBackLabel" 62 | "font" "aRegular12" 63 | "labelText" "#TF_PVE_Buybacks" 64 | "textAlignment" "north-west" 65 | "xpos" "0" 66 | "ypos" "27" 67 | "wide" "70" 68 | "tall" "20" 69 | "fgcolor" "ahudWhite" 70 | } 71 | 72 | "BuyBackCountLabel" 73 | { 74 | "ControlName" "CExLabel" 75 | "fieldName" "BuyBackCountLabel" 76 | "font" "aRegular12" 77 | "labelText" "%buybacks%" 78 | "textAlignment" "north-east" 79 | "xpos" "75" 80 | "ypos" "27" 81 | "wide" "30" 82 | "tall" "20" 83 | "fgcolor" "ahudWhite" 84 | } 85 | 86 | "BottleLabel" 87 | { 88 | "ControlName" "CExLabel" 89 | "fieldName" "BottleLabel" 90 | "font" "aRegular12" 91 | "labelText" "#TF_PVE_Bottles" 92 | "textAlignment" "north-west" 93 | "xpos" "0" 94 | "ypos" "39" 95 | "wide" "70" 96 | "tall" "20" 97 | "fgcolor" "ahudWhite" 98 | } 99 | 100 | "BottleCountLabel" 101 | { 102 | "ControlName" "CExLabel" 103 | "fieldName" "BottleCountLabel" 104 | "font" "aRegular12" 105 | "labelText" "%bottles%" 106 | "textAlignment" "north-east" 107 | "xpos" "75" 108 | "ypos" "39" 109 | "wide" "30" 110 | "tall" "20" 111 | "fgcolor" "ahudWhite" 112 | } 113 | } -------------------------------------------------------------------------------- /resource/ui/mvmcreditsubpanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/MvMCreditSubPanel.res" 2 | { 3 | "HeaderLabel" 4 | { 5 | "ControlName" "CExLabel" 6 | "fieldName" "HeaderLabel" 7 | "font" "aRegular14" 8 | "labelText" "%header%" 9 | "textAlignment" "north-west" 10 | "xpos" "0" 11 | "ypos" "0" 12 | "wide" "300" 13 | "tall" "15" 14 | "fgcolor" "ahudWhite" 15 | } 16 | 17 | "TableBackground" 18 | { 19 | "ControlName" "EditablePanel" 20 | "fieldName" "TestBackground" 21 | "xpos" "0" 22 | "ypos" "14" 23 | "zpos" "-1" 24 | "wide" "190" 25 | "tall" "42" 26 | "visible" "1" 27 | "bgcolor_override" "0 0 0 0" 28 | } 29 | 30 | "CreditCollectedTextLabel" 31 | { 32 | "ControlName" "CExLabel" 33 | "fieldName" "CreditCollectedTextLabel" 34 | "font" "aRegular12" 35 | "labelText" "#TF_PVE_Collected" 36 | "textAlignment" "north-west" 37 | "xpos" "0" 38 | "ypos" "15" 39 | "wide" "70" 40 | "tall" "12" 41 | "fgcolor" "ahudWhite" 42 | } 43 | 44 | "CreditCollectedCountLabel" 45 | { 46 | "ControlName" "CExLabel" 47 | "fieldName" "CreditCollectedCountLabel" 48 | "font" "aRegular12" 49 | "labelText" "%creditscollected%" 50 | "textAlignment" "north-east" 51 | "xpos" "75" 52 | "ypos" "15" 53 | "wide" "30" 54 | "tall" "12" 55 | "fgcolor" "CreditsGreen" 56 | } 57 | 58 | "CreditMissedTextLabel" 59 | { 60 | "ControlName" "CExLabel" 61 | "fieldName" "CreditMissedTextLabel" 62 | "font" "aRegular12" 63 | "labelText" "#TF_PVE_Missed" 64 | "textAlignment" "north-west" 65 | "xpos" "0" 66 | "ypos" "27" 67 | "wide" "70" 68 | "tall" "12" 69 | "fgcolor" "ahudWhite" 70 | } 71 | 72 | "CreditMissedCountLabel" 73 | { 74 | "ControlName" "CExLabel" 75 | "fieldName" "CreditMissedCountLabel" 76 | "font" "aRegular12" 77 | "labelText" "%creditsmissed%" 78 | "textAlignment" "north-east" 79 | "xpos" "75" 80 | "ypos" "27" 81 | "wide" "30" 82 | "tall" "12" 83 | "fgcolor" "RedSolid" 84 | } 85 | 86 | "CreditBonusTextLabel" 87 | { 88 | "ControlName" "CExLabel" 89 | "fieldName" "CreditCollectedTextLabel" 90 | "font" "aRegular12" 91 | "labelText" "#TF_PVE_Bonus" 92 | "textAlignment" "north-west" 93 | "xpos" "0" 94 | "ypos" "39" 95 | "wide" "70" 96 | "tall" "12" 97 | "fgcolor" "ahudWhite" 98 | } 99 | 100 | "CreditBonusCountLabel" 101 | { 102 | "ControlName" "CExLabel" 103 | "fieldName" "CreditCollectedCountLabel" 104 | "font" "aRegular12" 105 | "labelText" "%creditbonus%" 106 | "textAlignment" "north-east" 107 | "xpos" "75" 108 | "ypos" "39" 109 | "wide" "30" 110 | "tall" "12" 111 | "fgcolor" "CreditsGreen" 112 | } 113 | 114 | "CreditRatingLabelShadow" 115 | { 116 | "ControlName" "CExLabel" 117 | "fieldName" "CreditRatingLabelShadow" 118 | "font" "aRegular16" 119 | "labelText" "%ratingshadow%" 120 | "textAlignment" "center" 121 | "xpos" "67" 122 | "ypos" "-2" 123 | "wide" "70" 124 | "tall" "20" 125 | "fgcolor" "Black" 126 | } 127 | 128 | "CreditRatingLabel" 129 | { 130 | "ControlName" "CExLabel" 131 | "fieldName" "CreditCollectedTextLabel" 132 | "font" "aRegular16" 133 | "labelText" "%rating%" 134 | "textAlignment" "center" 135 | "xpos" "66" 136 | "ypos" "-3" 137 | "wide" "70" 138 | "tall" "20" 139 | "fgcolor" "ahudWhite" 140 | } 141 | } -------------------------------------------------------------------------------- /resource/ui/mvminworldcurrency.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/MvMInWorldCurrency.res" 2 | { 3 | "CurrencyBG" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "CurrencyBG" 7 | "xpos" "0" 8 | "ypos" "2" 9 | "zpos" "0" 10 | "wide" "100" 11 | "tall" "16" 12 | "autoResize" "0" 13 | "pinCorner" "0" 14 | "visible" "1" 15 | "enabled" "1" 16 | "fillcolor" "ahudWhite" 17 | } 18 | 19 | "CurrencyLabel" 20 | { 21 | "ControlName" "CExLabel" 22 | "fieldName" "CurrencyLabel" 23 | "font" "aRegular12" 24 | "fgcolor" "ahudBlack" 25 | "xpos" "4" 26 | "ypos" "0" 27 | "zpos" "3" 28 | "wide" "80" 29 | "tall" "20" 30 | "visible" "1" 31 | "enabled" "1" 32 | "textAlignment" "west" 33 | "labelText" "Remaining" 34 | } 35 | 36 | "CurrencyGood" 37 | { 38 | "ControlName" "CExLabel" 39 | "fieldName" "CurrencyGood" 40 | "font" "aRegular12" 41 | "fgcolor" "CreditsGreen" 42 | "xpos" "47" 43 | "ypos" "0" 44 | "zpos" "4" 45 | "wide" "50" 46 | "tall" "19" 47 | "visible" "1" 48 | "enabled" "1" 49 | "textAlignment" "east" 50 | "labelText" "%currency%" 51 | } 52 | 53 | "CurrencyBad" 54 | { 55 | "ControlName" "CExLabel" 56 | "fieldName" "CurrencyBad" 57 | "font" "aRegular12" 58 | "fgcolor" "225 30 30 255" 59 | "xpos" "47" 60 | "ypos" "0" 61 | "zpos" "4" 62 | "wide" "50" 63 | "tall" "19" 64 | "visible" "1" 65 | "enabled" "1" 66 | "textAlignment" "east" 67 | "labelText" "%currency%" 68 | } 69 | } -------------------------------------------------------------------------------- /resource/ui/mvmvictorycontainer.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/MvMVictoryContainer.res" 2 | { 3 | "Background" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "Background" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "zpos" "-2" 10 | "wide" "f0" 11 | "tall" "480" 12 | "visible" "1" 13 | "bgcolor_override" "20 20 20 245" 14 | } 15 | 16 | "BannerContainer" 17 | { 18 | "ControlName" "EditablePanel" 19 | "fieldName" "BannerContainer" 20 | "xpos" "c-265" 21 | "ypos" "20" 22 | "wide" "530" 23 | "tall" "50" 24 | "visible" "1" 25 | "enabled" "1" 26 | 27 | "BannerImage" 28 | { 29 | "ControlName" "ImagePanel" 30 | "fieldName" "BannerImage" 31 | "xpos" "0" 32 | "ypos" "0" 33 | "wide" "530" 34 | "tall" "36" 35 | "visible" "1" 36 | "enabled" "1" 37 | "fillcolor" "ahudRed" 38 | "scaleImage" "1" 39 | 40 | "src_corner_height" "40" // pixels inside the image 41 | "src_corner_width" "40" 42 | 43 | "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional 44 | "draw_corner_height" "0" 45 | } 46 | 47 | "BannerTextDropShadow" 48 | { 49 | "ControlName" "CExLabel" 50 | "fieldName" "BannerTextDropShadow" 51 | "font" "HudFontBiggerBold" 52 | "labelText" "#TF_MVM_Victory_Complete" 53 | "textAlignment" "center" 54 | "xpos" "2" 55 | "ypos" "2" 56 | "wide" "530" 57 | "tall" "35" 58 | "fgcolor" "ShadowBlack" 59 | } 60 | 61 | "BannerText" 62 | { 63 | "ControlName" "CExLabel" 64 | "fieldName" "BannerTextDropShadow" 65 | "font" "HudFontBiggerBold" 66 | "labelText" "#TF_MVM_Victory_Complete" 67 | "textAlignment" "center" 68 | "xpos" "0" 69 | "ypos" "0" 70 | "wide" "530" 71 | "tall" "35" 72 | "fgcolor" "ahudWhite" 73 | } 74 | } 75 | 76 | "VictoryPanelNormal" 77 | { 78 | "ControlName" "CVictoryPanel" 79 | "fieldName" "VictoryPanelNormal" 80 | "xpos" "0" 81 | "ypos" "0" 82 | "wide" "f0" 83 | "tall" "480" 84 | "visible" "0" 85 | "enabled" "1" 86 | } 87 | 88 | "VictoryPanelMannUp" 89 | { 90 | "ControlName" "CMvMVictoryMannUpPanel" 91 | "fieldName" "VictoryPanelMannUp" 92 | "xpos" "0" 93 | "ypos" "20" 94 | "zpos" "50" 95 | "wide" "f0" 96 | "tall" "480" 97 | "visible" "0" 98 | "enabled" "1" 99 | } 100 | } -------------------------------------------------------------------------------- /resource/ui/mvmvictorysplash.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/MvMVictoryPanel.res" 2 | { 3 | "SplashContainer" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "SplashContainer" 7 | "xpos" "c-150" 8 | "ypos" "c-20" 9 | "wide" "300" 10 | "tall" "300" 11 | "visible" "1" 12 | 13 | "SplashBackground" 14 | { 15 | "ControlName" "ImagePanel" 16 | "fieldName" "SplashBackground" 17 | "xpos" "25" 18 | "ypos" "16" 19 | "wide" "250" 20 | "tall" "42" 21 | "autoResize" "0" 22 | "pinCorner" "0" 23 | "visible" "1" 24 | "enabled" "1" 25 | "fillcolor" "ahudRed" 26 | } 27 | 28 | "SplashLabelShadow" 29 | { 30 | "ControlName" "CExLabel" 31 | "fieldName" "SplashLabelShadow" 32 | "font" "HudFontGiantBold" 33 | "labelText" "#TF_MVM_Victory" 34 | "textAlignment" "center" 35 | "xpos" "2" 36 | "ypos" "14" 37 | "wide" "300" 38 | "tall" "50" 39 | "fgcolor" "ShadowBlack" 40 | } 41 | 42 | "SplashLabel" 43 | { 44 | "ControlName" "CExLabel" 45 | "fieldName" "SplashLabel" 46 | "font" "HudFontGiantBold" 47 | "labelText" "#TF_MVM_Victory" 48 | "textAlignment" "center" 49 | "xpos" "0" 50 | "ypos" "12" 51 | "wide" "300" 52 | "tall" "50" 53 | "fgcolor" "ahudWhite" 54 | } 55 | } 56 | } -------------------------------------------------------------------------------- /resource/ui/notifications/base_notification.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/notifications/base_notification.res" 2 | { 3 | "Notification_Background" 4 | { 5 | "ControlName" "CImagePanel" 6 | "fieldName" "Notification_Background" 7 | "xpos" "9999" 8 | "ypos" "9999" 9 | "zpos" "-1" 10 | "wide" "0" 11 | "tall" "0" 12 | "autoResize" "0" 13 | "pinCorner" "0" 14 | "visible" "0" 15 | "enabled" "0" 16 | "image" "" 17 | "scaleImage" "1" 18 | } 19 | 20 | "Notification_Icon" 21 | { 22 | "ControlName" "CIconPanel" 23 | "fieldName" "Notification_Icon" 24 | "xpos" "7" 25 | "ypos" "9" 26 | "wide" "20" 27 | "tall" "20" 28 | "visible" "1" 29 | "enabled" "1" 30 | "scaleImage" "1" 31 | "icon" "" 32 | } 33 | 34 | "Notification_Label" 35 | { 36 | "ControlName" "CExLabel" 37 | "fieldName" "Notification_Label" 38 | "font" "Default" 39 | "xpos" "30" 40 | "ypos" "9" 41 | "wide" "200" 42 | "tall" "20" 43 | "autoResize" "0" 44 | "pinCorner" "0" 45 | "visible" "1" 46 | "enabled" "1" 47 | "labelText" "" 48 | "textAlignment" "West" 49 | "dulltext" "0" 50 | "brighttext" "0" 51 | } 52 | } -------------------------------------------------------------------------------- /resource/ui/objectivestatusmultipleescort.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/ObjectiveStatusMultipleEscort.res" 2 | { 3 | "ObjectiveStatusMultipleEscort" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "ObjectiveStatusMultipleEscort" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "wide" "f0" 10 | "tall" "480" 11 | "visible" "1" 12 | "enabled" "1" 13 | } 14 | 15 | "BlueEscortPanel" 16 | { 17 | "ControlName" "CTFHudEscort" 18 | "fieldName" "BlueEscortPanel" 19 | "xpos" "c-145" 20 | "ypos" "r160" 21 | "zpos" "1" 22 | "wide" "400" 23 | "tall" "200" 24 | "visible" "1" 25 | "enabled" "1" 26 | "progress_xpos" "79" 27 | "progress_wide" "270" 28 | 29 | "if_blue_is_top" 30 | { 31 | "ypos" "r176" 32 | } 33 | } 34 | 35 | "RedEscortPanel" 36 | { 37 | "ControlName" "CTFHudEscort" 38 | "fieldName" "RedEscortPanel" 39 | "xpos" "c-145" 40 | "ypos" "r160" 41 | "zpos" "1" 42 | "wide" "400" 43 | "tall" "200" 44 | "visible" "1" 45 | "enabled" "1" 46 | "progress_xpos" "79" 47 | "progress_wide" "270" 48 | 49 | "if_red_is_top" 50 | { 51 | "ypos" "r176" 52 | } 53 | } 54 | } -------------------------------------------------------------------------------- /resource/ui/replaybrowser/basepage.res: -------------------------------------------------------------------------------- 1 | "resource/ui/basepage.res" 2 | { 3 | "BasePage" 4 | { 5 | "ControlName" "Frame" 6 | "fieldName" "BasePage" 7 | "xpos" "0" 8 | "ypos" "40" 9 | "wide" "f0" 10 | "tall" "480" 11 | "autoResize" "0" 12 | "pinCorner" "0" 13 | "visible" "0" 14 | "enabled" "1" 15 | "tabPosition" "0" 16 | "settitlebarvisible" "0" 17 | "PaintBackgroundType" "0" 18 | "bgcolor_override" "ahudDarkGrey" 19 | } 20 | 21 | "SearchTextEntry" 22 | { 23 | "ControlName" "TextEntry" 24 | "fieldName" "SearchTextEntry" 25 | "maxchars" "255" 26 | "textHidden" "0" 27 | "textAlignment" "west" 28 | "unicode" "1" 29 | "wrap" "0" 30 | "xpos" "c+80" 31 | "ypos" "5" 32 | "tall" "15" 33 | "wide" "160" 34 | "autoResize" "0" 35 | "pinCorner" "0" 36 | "visible" "1" 37 | "enabled" "1" 38 | "tabPosition" "0" 39 | "fgcolor_override" "ahudWhite" 40 | "bgcolor_override" "ahudBlack" 41 | "Font" "HudFontSmallest" 42 | } 43 | 44 | "ReplayList" 45 | { 46 | "ControlName" "PanelListPanel" 47 | "fieldName" "ReplayList" 48 | "xpos" "c-300" 49 | "ypos" "20" 50 | "wide" "605" 51 | "tall" "350" 52 | "visible" "1" 53 | "enabled" "1" 54 | "tabPosition" "0" 55 | "paintbackground" "1" 56 | "bgcolor_override" "0 0 0 0" 57 | "autohide_scrollbar" "1" 58 | } 59 | } -------------------------------------------------------------------------------- /resource/ui/replaybrowser/thumbnailrow.res: -------------------------------------------------------------------------------- 1 | "resource/UI/ThumbnailRow.res" 2 | { 3 | "ThumbnailRow" 4 | { 5 | "ControlName" "Panel" 6 | "fieldName" "ThumbnailRow" 7 | "wide" "f0" 8 | "tall" "70" 9 | "autoResize" "0" 10 | "pinCorner" "0" 11 | "visible" "1" 12 | "enabled" "1" 13 | "zpos" "2" 14 | "tabPosition" "0" 15 | "settitlebarvisible" "1" 16 | "bgcolor_override" "0 0 0 0" 17 | } 18 | } -------------------------------------------------------------------------------- /resource/ui/spectatorguihealth.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/SpectatorGUIHealth.res" 2 | { 3 | "PlayerStatusHealthImage" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "PlayerStatusHealthImage" 7 | "xpos" "9999" 8 | "wide" "0" 9 | "tall" "0" 10 | } 11 | 12 | "PlayerStatusHealthImageBG" 13 | { 14 | "ControlName" "ImagePanel" 15 | "fieldName" "PlayerStatusHealthImageBG" 16 | "xpos" "9999" 17 | "wide" "0" 18 | "tall" "0" 19 | } 20 | 21 | "BuildingStatusHealthImageBG" 22 | { 23 | "ControlName" "ImagePanel" 24 | "fieldName" "BuildingStatusHealthImageBG" 25 | "xpos" "9999" 26 | "wide" "0" 27 | "tall" "0" 28 | } 29 | 30 | "PlayerStatusHealthBonusImage" 31 | { 32 | "ControlName" "ImagePanel" 33 | "fieldName" "PlayerStatusHealthBonusImage" 34 | "xpos" "12" 35 | "ypos" "5" 36 | "zpos" "3" 37 | "wide" "20" 38 | "tall" "20" 39 | "visible" "0" 40 | "enabled" "0" 41 | "image" "../hud/health_over_bg" 42 | "scaleImage" "1" 43 | } 44 | "PlayerStatusHealthValueSpec" 45 | { 46 | "ControlName" "CExLabel" 47 | "fieldName" "PlayerStatusHealthValueSpec" 48 | "xpos" "0" 49 | "ypos" "4" 50 | "zpos" "5" 51 | "wide" "44" 52 | "tall" "22" 53 | "visible" "1" 54 | "enabled" "1" 55 | "textAlignment" "center" 56 | "font" "aRegular24" 57 | "fgcolor" "HP" 58 | "labeltext" "%Health%" 59 | } 60 | 61 | "PlayerStatusHealthValueSpecShadow" 62 | { 63 | "ControlName" "CExLabel" 64 | "fieldName" "PlayerStatusHealthValueSpecShadow" 65 | "xpos" "-1" 66 | "ypos" "-1" 67 | "zpos" "5" 68 | "wide" "44" 69 | "tall" "22" 70 | "visible" "1" 71 | "enabled" "1" 72 | "textAlignment" "center" 73 | "font" "aRegular24" 74 | "fgcolor" "ShadowBlack" 75 | "labeltext" "%Health%" 76 | 77 | "pin_to_sibling" "PlayerStatusHealthValueSpec" 78 | "pin_corner_to_sibling" "PIN_TOPLEFT" 79 | "pin_to_sibling_corner" "PIN_TOPLEFT" 80 | } 81 | 82 | "PlayerStatusPlayerLevel" 83 | { 84 | "ControlName" "CExLabel" 85 | "fieldName" "PlayerStatusPlayerLevel" 86 | "xpos" "9999" 87 | "wide" "0" 88 | "tall" "0" 89 | } 90 | 91 | "HealthBoxBG" 92 | { 93 | "ControlName" "EditablePanel" 94 | "fieldName" "HealthBoxBG" 95 | "xpos" "0" 96 | "ypos" "-5" 97 | "zpos" "1" 98 | "wide" "44" 99 | "tall" "12" 100 | "visible" "1" 101 | "enabled" "1" 102 | "bgcolor_override" "Blank" 103 | "PaintBackgroundType" "0" 104 | 105 | "pin_to_sibling" "PlayerStatusHealthValueSpec" 106 | "pin_corner_to_sibling" "PIN_TOPLEFT" 107 | "pin_to_sibling_corner" "PIN_TOPLEFT" 108 | } 109 | } -------------------------------------------------------------------------------- /resource/ui/spectatortournamentguihealth.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/SpectatorTournamentGUIHealth.res" 2 | { 3 | "PlayerStatusHealthImage" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "PlayerStatusHealthImage" 7 | "xpos" "-88" 8 | "ypos" "-88" 9 | "zpos" "4" 10 | "wide" "0" 11 | "tall" "0" 12 | "visible" "0" 13 | "enabled" "0" 14 | "scaleImage" "1" 15 | } 16 | "PlayerStatusHealthImageBG" 17 | { 18 | "ControlName" "ImagePanel" 19 | "fieldName" "PlayerStatusHealthImageBG" 20 | "xpos" "-88" 21 | "ypos" "-88" 22 | "zpos" "3" 23 | "wide" "0" 24 | "tall" "0" 25 | "visible" "0" 26 | "enabled" "0" 27 | "image" "../hud/health_bg" 28 | "scaleImage" "1" 29 | } 30 | "BuildingStatusHealthImageBG" 31 | { 32 | "ControlName" "ImagePanel" 33 | "fieldName" "BuildingStatusHealthImageBG" 34 | "xpos" "-88" 35 | "ypos" "-88" 36 | "zpos" "2" 37 | "wide" "0" 38 | "tall" "0" 39 | "visible" "0" 40 | "enabled" "1" 41 | "image" "../hud/health_equip_bg" 42 | "scaleImage" "1" 43 | } 44 | "PlayerStatusHealthBonusImage" 45 | { 46 | "ControlName" "ImagePanel" 47 | "fieldName" "PlayerStatusHealthBonusImage" 48 | "xpos" "-88" //6 49 | "ypos" "-88" //4 50 | "zpos" "3" 51 | "wide" "12" 52 | "tall" "12" 53 | "visible" "0" 54 | "enabled" "0" 55 | "image" "../hud/health_over_bg" 56 | "scaleImage" "1" 57 | } 58 | "PlayerStatusHealthValueSpecgui" 59 | { 60 | "ControlName" "ceXLabel" 61 | "fieldName" "PlayerStatusHealthValueSpecgui" 62 | "xpos" "0" 63 | "ypos" "1" 64 | "zpos" "5" 65 | "wide" "24" 66 | "tall" "16" 67 | "visible" "1" 68 | "enabled" "1" 69 | "textAlignment" "center" 70 | "labeltext" "%Health%" 71 | "font" "aRegular14" 72 | "fgcolor" "HP" 73 | } 74 | "PlayerStatusHealthValueSpecguiShadow" 75 | { 76 | "ControlName" "ceXLabel" 77 | "fieldName" "PlayerStatusHealthValueSpecguiShadow" 78 | "xpos" "-1" 79 | "ypos" "-1" 80 | "zpos" "5" 81 | "wide" "24" 82 | "tall" "16" 83 | "visible" "1" 84 | "enabled" "1" 85 | "textAlignment" "center" 86 | "labeltext" "%Health%" 87 | "font" "aRegular14" 88 | "fgcolor" "ShadowBlack" 89 | 90 | "pin_to_sibling" "PlayerStatusHealthValueSpecgui" 91 | "pin_corner_to_sibling" "PIN_TOPLEFT" 92 | "pin_to_sibling_corner" "PIN_TOPLEFT" 93 | } 94 | "HealthBoxBG" 95 | { 96 | "ControlName" "EditablePanel" 97 | "fieldName" "HealthBoxBG" 98 | "xpos" "0" 99 | "ypos" "0" 100 | "zpos" "1" 101 | "wide" "24" 102 | "tall" "16" 103 | "visible" "1" 104 | "enabled" "1" 105 | "bgcolor_override" "Blank" 106 | "PaintBackgroundType" "0" 107 | } 108 | } -------------------------------------------------------------------------------- /resource/ui/steamfriendpanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/SteamFriendPanel.res" 2 | { 3 | "avatar" 4 | { 5 | "fieldName" "avatar" 6 | "xpos" "1" 7 | "ypos" "1" 8 | "wide" "o1" 9 | "tall" "f2" 10 | "proportionaltoparent" "1" 11 | "mouseinputenabled" "0" 12 | "scaleImage" "1" 13 | } 14 | 15 | "InteractButton" 16 | { 17 | "fieldName" "InteractButton" 18 | "xpos" "0" 19 | "ypos" "0" 20 | "zpos" "-1" 21 | "wide" "f0" 22 | "tall" "f0" 23 | "proportionaltoparent" "1" 24 | "command" "open_menu" 25 | "labeltext" "" 26 | "textalignment" "center" 27 | "stay_armed_on_click" "1" 28 | "roundedcorners" "0" 29 | "paintbackground" "1" 30 | 31 | "defaultBgColor_override" "0 0 0 0" 32 | "armedBgColor_override" "94 150 49 5" 33 | 34 | "border_default" "NoBorder" 35 | "border_armed" "FriendHighlightBorder" 36 | } 37 | 38 | "NameLabel" 39 | { 40 | "ControlName" "Label" 41 | "fieldName" "NameLabel" 42 | "xpos" "rs1" 43 | "ypos" "0" 44 | "zpos" "100" 45 | "wide" "f25" 46 | "tall" "10" 47 | "textAlignment" "north-west" 48 | "visible" "1" 49 | "enabled" "1" 50 | "proportionaltoparent" "1" 51 | "wrap" "0" 52 | "labelText" "%name%" 53 | "proportionaltoparent" "1" 54 | "font" "aRegular10" 55 | "mouseinputenabled" "0" 56 | } 57 | 58 | "StatusLabel" 59 | { 60 | "fieldName" "StatusLabel" 61 | "xpos" "rs1" 62 | "ypos" "10" 63 | "zpos" "100" 64 | "wide" "f25" 65 | "tall" "10" 66 | "textAlignment" "north-west" 67 | "visible" "1" 68 | "enabled" "1" 69 | "proportionaltoparent" "1" 70 | "wrap" "0" 71 | "labelText" "%status%" 72 | "proportionaltoparent" "1" 73 | "font" "QuestObjectiveTracker_Desc" 74 | "fgcolor_override" "TanDark" 75 | "mouseinputenabled" "0" 76 | } 77 | } -------------------------------------------------------------------------------- /resource/ui/steamworkshopitem.res: -------------------------------------------------------------------------------- 1 | "Resource/SteamWorkshopItem.res" 2 | { 3 | "SteamWorkshopItem" 4 | { 5 | "ControlName" "CSteamWorkshopItemPanel" 6 | "fieldName" "SteamWorkshopItem" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "wide" "125" 10 | "tall" "200" 11 | "autoResize" "0" 12 | "pinCorner" "0" 13 | "visible" "1" 14 | "enabled" "1" 15 | "tabPosition" "0" 16 | "bgcolor_override" "HudBlack" 17 | } 18 | 19 | "HighlightPanel" 20 | { 21 | "ControlName" "EditablePanel" 22 | "fieldName" "HighlightPanel" 23 | "xpos" "0" 24 | "ypos" "25" 25 | "wide" "125" 26 | "tall" "125" 27 | "visible" "1" 28 | "mouseinputenabled" "0" 29 | "bgcolor_override" "178 82 22 255" 30 | } 31 | 32 | "PreviewImage" 33 | { 34 | "ControlName" "CBitmapPanel" 35 | "fieldName" "PreviewImage" 36 | "xpos" "2" 37 | "ypos" "27" 38 | "zpos" "1" 39 | "wide" "121" 40 | "tall" "121" 41 | "visible" "1" 42 | "mouseinputenabled" "0" 43 | } 44 | 45 | "LabelTitle" 46 | { 47 | "ControlName" "Label" 48 | "fieldName" "LabelTitle" 49 | "xpos" "0" 50 | "ypos" "155" 51 | "wide" "125" 52 | "tall" "25" 53 | "autoResize" "0" 54 | "pinCorner" "0" 55 | "visible" "1" 56 | "enabled" "1" 57 | "tabPosition" "0" 58 | "labelText" "%title%" 59 | "textAlignment" "north-west" 60 | "dulltext" "0" 61 | "brighttext" "0" 62 | "wrap" "0" 63 | "font" "HudFontSmallest" 64 | "fgcolor_override" "86 78 68 255" 65 | "mouseinputenabled" "0" 66 | } 67 | } -------------------------------------------------------------------------------- /resource/ui/tankprogressbar.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/TankProgressBar.res" 2 | { 3 | "TankProgressBar" 4 | { 5 | "ControlName" "CTankProgressBar" 6 | "fieldName" "TankProgressBar" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "zpos" "3" 10 | "wide" "190" 11 | "tall" "18" 12 | "visible" "0" 13 | "enabled" "1" 14 | } 15 | 16 | "TankImage" 17 | { 18 | "ControlName" "CTFImagePanel" 19 | "fieldName" "TankImage" 20 | "xpos" "5" 21 | "ypos" "-2" 22 | "zpos" "3" 23 | "wide" "22" 24 | "tall" "22" 25 | "visible" "1" 26 | "enabled" "1" 27 | "image" "../hud/leaderboard_class_tank" 28 | "scaleImage" "1" 29 | } 30 | 31 | "ProgressBar" 32 | { 33 | "ControlName" "ScalableImagePanel" 34 | "fieldName" "ProgressBar" 35 | "xpos" "30" 36 | "ypos" "4" 37 | "zpos" "1" 38 | "wide" "153" 39 | "tall" "8" 40 | "visible" "1" 41 | "enabled" "1" 42 | "image" "../HUD/tournament_panel_tan" 43 | 44 | "src_corner_height" "22" // pixels inside the image 45 | "src_corner_width" "22" 46 | 47 | "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional 48 | "draw_corner_height" "0" 49 | } 50 | "NewProgressBarBG" 51 | { 52 | "ControlName" "ImagePanel" 53 | "fieldName" "NewProgressBarBG" 54 | "xpos" "30" 55 | "ypos" "4" 56 | "zpos" "-1" 57 | "wide" "154" 58 | "tall" "8" 59 | "autoResize" "0" 60 | "pinCorner" "0" 61 | "visible" "1" 62 | "enabled" "1" 63 | "fillcolor" "HudBlack" 64 | } 65 | "ProgressBarBG" 66 | { 67 | "ControlName" "ScalableImagePanel" 68 | "fieldName" "ProgressBarBG" 69 | "xpos" "29" 70 | "ypos" "3" 71 | "zpos" "1" 72 | "wide" "155" 73 | "tall" "12" 74 | "visible" "0" 75 | "enabled" "0" 76 | "image" "../HUD/tournament_panel_tan" 77 | 78 | "src_corner_height" "22" // pixels inside the image 79 | "src_corner_width" "22" 80 | 81 | "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional 82 | "draw_corner_height" "0" 83 | } 84 | } -------------------------------------------------------------------------------- /resource/ui/tankstatuspanel.res: -------------------------------------------------------------------------------- 1 | "Resource/UI/TankStatusPanel.res" 2 | { 3 | "Background" 4 | { 5 | "ControlName" "ScalableImagePanel" 6 | "fieldName" "Background" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "zpos" "-1" 10 | "wide" "0" 11 | "tall" "0" 12 | "autoResize" "0" 13 | "pinCorner" "0" 14 | "visible" "0" 15 | "enabled" "0" 16 | "image" "../HUD/tournament_panel_brown" 17 | 18 | "src_corner_height" "22" // pixels inside the image 19 | "src_corner_width" "22" 20 | 21 | "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional 22 | "draw_corner_height" "0" 23 | } 24 | } -------------------------------------------------------------------------------- /resource/ui/training/basictraining/classpanel.res: -------------------------------------------------------------------------------- 1 | "Resource/training/basictraining/classpanel.res" 2 | { 3 | "Image" 4 | { 5 | "ControlName" "ImagePanel" 6 | "fieldName" "Image" 7 | "visible" "1" 8 | "enabled" "1" 9 | "tileImage" "0" 10 | "scaleImage" "1" 11 | "image" "illustrations/training_basic" 12 | } 13 | 14 | "SelectButton" 15 | { 16 | "ControlName" "CExButton" 17 | "fieldName" "SelectButton" 18 | "autoResize" "0" 19 | "pinCorner" "0" 20 | "visible" "1" 21 | "enabled" "1" 22 | "tabPosition" "0" 23 | "labelText" "%selectbuttontext%" 24 | "font" "HudFontSmallBold" 25 | "textAlignment" "center" 26 | "textinsetx" "50" 27 | "dulltext" "0" 28 | "brighttext" "0" 29 | "Command" "%selectcommand%" 30 | "sound_depressed" "UI/buttonclick.wav" 31 | "sound_released" "UI/buttonclickrelease.wav" 32 | } 33 | 34 | "ProgressLabel" 35 | { 36 | "ControlName" "CExLabel" 37 | "fieldName" "ProgressLabel" 38 | "font" "HudFontSmallest" 39 | "labelText" "" 40 | "textAlignment" "center" 41 | "xpos" "0" 42 | "ypos" "241" 43 | "wide" "30" 44 | "tall" "15" 45 | "autoResize" "1" 46 | "pinCorner" "0" 47 | "visible" "0" 48 | "enabled" "1" 49 | "wrap" "0" 50 | "fgcolor_override" "201 79 57 255" 51 | } 52 | } -------------------------------------------------------------------------------- /resource/ui/training/modeselection/modepanel.res: -------------------------------------------------------------------------------- 1 | "Resource/training/modeselection/modepanel.res" 2 | { 3 | "ModeInfoContainer" 4 | { 5 | "ControlName" "EditablePanel" 6 | "fieldName" "ModeInfoContainer" 7 | "xpos" "0" 8 | "ypos" "0" 9 | "wide" "225" 10 | "tall" "205" 11 | "visible" "1" 12 | "enabled" "1" 13 | 14 | "ModeNameLabel" 15 | { 16 | "ControlName" "CExLabel" 17 | "fieldName" "ModeNameLabel" 18 | "font" "HudFontSmallBold" 19 | "labelText" "%modename%" 20 | "textAlignment" "center" 21 | "xpos" "0" 22 | "ypos" "7" 23 | "zpos" "2" 24 | "wide" "225" 25 | "tall" "25" 26 | "autoResize" "0" 27 | "pinCorner" "0" 28 | "visible" "1" 29 | "enabled" "1" 30 | "mouseinputenabled" "0" 31 | "fgcolor_override" "ahudWhite" 32 | } 33 | 34 | "DescLabel" 35 | { 36 | "ControlName" "CExLabel" 37 | "fieldName" "DescLabel" 38 | "font" "HudFontSmallest" 39 | "labelText" "%description%" 40 | "textAlignment" "north" 41 | "xpos" "0" 42 | "ypos" "175" 43 | "zpos" "2" 44 | "wide" "225" 45 | "tall" "55" 46 | "autoResize" "0" 47 | "pinCorner" "0" 48 | "visible" "1" 49 | "enabled" "1" 50 | "fgcolor_override" "ahudWhite" 51 | "auto_wide_tocontents" "0" 52 | "wrap" "1" 53 | "centerwrap" "1" 54 | } 55 | 56 | "ImageFrame" 57 | { 58 | "ControlName" "EditablePanel" 59 | "fieldName" "ImageFrame" 60 | "xpos" "10" 61 | "ypos" "0" 62 | "wide" "205" 63 | "tall" "205" 64 | "visible" "1" 65 | "enabled" "1" 66 | "border" "HoAssBorder" 67 | } 68 | 69 | // Parented to ImageFrame in code. 70 | "Image" 71 | { 72 | "ControlName" "ImagePanel" 73 | "fieldName" "Image" 74 | "xpos" "10" 75 | "ypos" "32" 76 | "wide" "185" 77 | "tall" "185" 78 | "visible" "1" 79 | "enabled" "1" 80 | "tileImage" "0" 81 | "scaleImage" "1" 82 | "image" "" 83 | } 84 | } 85 | 86 | "StartButton" 87 | { 88 | "ControlName" "CExButton" 89 | "fieldName" "StartButton" 90 | "xpos" "48" 91 | "ypos" "215" 92 | "zpos" "100" 93 | "wide" "130" 94 | "tall" "20" 95 | "autoResize" "0" 96 | "pinCorner" "0" 97 | "visible" "1" 98 | "enabled" "1" 99 | "tabPosition" "0" 100 | "labelText" "#TF_Training_SelectMode" 101 | "font" "HudFontSmallBold" 102 | "textAlignment" "center" 103 | "textinsetx" "50" 104 | "dulltext" "0" 105 | "brighttext" "0" 106 | "Command" "%startcommand%" 107 | "sound_depressed" "UI/buttonclick.wav" 108 | "sound_released" "UI/buttonclickrelease.wav" 109 | } 110 | } -------------------------------------------------------------------------------- /scripts/KnucklesCrosses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0kk/ahud/419f0b4bcfd5c086d35525ec24558b6bdb01f587/scripts/KnucklesCrosses.png -------------------------------------------------------------------------------- /scripts/hudanimations_ahud.txt: -------------------------------------------------------------------------------- 1 | //Health Bonus Pulse 2 | event HudHealthBonusPulse 3 | { 4 | Animate PlayerStatusHealthBonusImage Alpha "0" Linear 0.0 0.0 5 | 6 | Animate HealthBoxBG BgColor "HP Buff" Accel 0.0 0.0 7 | Animate HealthBoxBG Alpha "200" Accel 0.0 0.2 8 | Animate HealthBoxBG Alpha "0" Accel 0.2 0.4 9 | 10 | RunEvent HudHealthBonusPulseLoop 0.4 11 | } 12 | 13 | // call to loop HudHealthBonusPulse 14 | event HudHealthBonusPulseLoop 15 | { 16 | RunEvent HudHealthBonusPulse 0.0 17 | } 18 | 19 | event HudHealthBonusPulseStop 20 | { 21 | StopEvent HudHealthBonusPulse 0.0 22 | StopEvent HudHealthBonusPulseLoop 0.0 23 | 24 | Animate HealthBoxBG BgColor "Blank" Accel 0.0 0.0 25 | Animate HealthBoxBG Alpha "0" Accel 0.0 0.0 26 | } 27 | 28 | //Health Dying Pulse 29 | event HudHealthDyingPulse 30 | { 31 | Animate PlayerStatusHealthBonusImage Alpha "0" Linear 0.0 0.0 32 | 33 | Animate HealthBoxBG BgColor "HP Low" Accel 0.0 0.0 34 | Animate HealthBoxBG Alpha "200" Accel 0.0 0.2 35 | Animate HealthBoxBG Alpha "0" Accel 0.2 0.4 36 | 37 | RunEvent HudHealthDyingPulseLoop 0.4 38 | } 39 | 40 | // call to loop HudHealthDyingPulse 41 | event HudHealthDyingPulseLoop 42 | { 43 | RunEvent HudHealthDyingPulse 0.0 44 | } 45 | 46 | event HudHealthDyingPulseStop 47 | { 48 | StopEvent HudHealthDyingPulse 0.0 49 | StopEvent HudHealthDyingPulseLoop 0.0 50 | 51 | Animate HealthBoxBG BgColor "Blank" Accel 0.0 0.0 52 | Animate HealthBoxBG Alpha "0" Accel 0.0 0.0 53 | } 54 | 55 | //Low Ammo Pulse 56 | event HudLowAmmoPulse 57 | { 58 | Animate LowAmmoBG BgColor "LowAmmo1" Accel 0.0 0.0 59 | Animate LowAmmoBG Alpha "200" Accel 0.0 0.2 60 | Animate LowAmmoBG Alpha "0" Accel 0.2 0.4 61 | 62 | RunEvent HudLowAmmoPulseLoop 0.4 63 | } 64 | 65 | // call to loop HudLowAmmoPulse 66 | event HudLowAmmoPulseLoop 67 | { 68 | RunEvent HudLowAmmoPulse 0.0 69 | } 70 | 71 | event HudLowAmmoPulseStop 72 | { 73 | StopEvent HudLowAmmoPulse 0.0 74 | StopEvent HudLowAmmoPulseLoop 0.0 75 | 76 | Animate LowAmmoBG BgColor "Blank" Accel 0.0 0.0 77 | Animate LowAmmoBG Alpha "0" Accel 0.0 0.0 78 | } -------------------------------------------------------------------------------- /scripts/hudanimations_manifest.txt: -------------------------------------------------------------------------------- 1 | hudanimations_manifest 2 | { 3 | "file" "scripts/hudanimations.txt" 4 | "file" "scripts/hudanimations_ahud.txt" 5 | "file" "scripts/hudanimations_mediccharge.txt" 6 | "file" "scripts/hudanimations_misc.txt" 7 | "file" "scripts/hudanimations_tf.txt" 8 | } -------------------------------------------------------------------------------- /scripts/hudanimations_mediccharge.txt: -------------------------------------------------------------------------------- 1 | event HudMedicCharged 2 | { 3 | Animate ChargeLabel FgColor "ChargePercent" Linear 0.0 0.0 4 | Animate ChargeLabel FgColor "ChargePercent" Linear 0.0 0.0 5 | 6 | Animate ChargeMeter FgColor "Ubercharge1" Linear 0.0 0.1 7 | Animate ChargeMeter FgColor "Ubercharge2" Linear 0.3 0.4 8 | 9 | RunEvent HudMedicChargedLoop 0.6 10 | } 11 | 12 | // call to loop HudHealthBonusPulse 13 | event HudMedicChargedLoop 14 | { 15 | RunEvent HudMedicCharged 0.0 16 | } 17 | 18 | event HudMedicChargedStop 19 | { 20 | StopEvent HudMedicCharged 0.0 21 | StopEvent HudMedicChargedLoop 0.0 22 | 23 | Animate ChargeMeter FgColor "Ubercharge Meter" Linear 0.0 0.0001 24 | Animate ChargeLabel FgColor "ChargePercent" Linear 0.0 0.0001 25 | } -------------------------------------------------------------------------------- /scripts/hudanimations_misc.txt: -------------------------------------------------------------------------------- 1 | event DamagedPlayer 2 | { 3 | StopEvent HitMarker 0.0 4 | RunEvent HitMarker 0.01 5 | } 6 | 7 | event HitMarker 8 | { 9 | Animate KnucklesCrosses FgColor "CrosshairDamage" Linear 0.0 0.0 10 | Animate KnucklesCrosses FgColor "Crosshair" Linear 0.15 0.0 11 | } 12 | 13 | event CompetitiveGame_LowerChatWindow 14 | { 15 | } 16 | event CompetitiveGame_RestoreChatWindow 17 | { 18 | } 19 | event HudTournament_MoveChatWindow 20 | { 21 | } --------------------------------------------------------------------------------