maplists and theme

This commit is contained in:
Nathan Rashleigh 2026-02-11 18:26:00 +11:00
parent 81cfced965
commit 90b9faf31a
16 changed files with 9327 additions and 2 deletions

2
.env
View File

@ -28,7 +28,7 @@ SRCDS_WORKSHOP_AUTHKEY=""
SRCDS_CFG="server.cfg"
SRCDS_MAPCYCLE="mapcycle.txt"
SRCDS_ADMINS=[U:1:24540659],[U:1:1589252886]
SRCDS_ADMINS=[U:1:1589252886],[U:1:12270329]
# ----------
# fastdl

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
*.sql.gz
*.tar.gz
.env/
data/
src/mapsdl/credentials

View File

@ -0,0 +1,32 @@
"MapLists"
{
"default"
{
"target" "mapcyclefile"
}
"sm_map menu"
{
"target" "mapcyclefile"
}
"sm_votemap menu"
{
"target" "mapcyclefile"
}
"randomcycle"
{
"target" "mapcyclefile"
}
"mapchooser"
{
"target" "mapcyclefile"
}
"nominations"
{
"target" "mapcyclefile"
}
}

View File

@ -148,6 +148,16 @@ install_surf() {
echo "--------------------------------------------------------------"
fi
# Disable shavit-sounds plugin
if [ -f "$CSTRIKE/addons/sourcemod/plugins/shavit-sounds.smx" ]; then
mkdir -p "$CSTRIKE/addons/sourcemod/plugins/disabled"
mv "$CSTRIKE/addons/sourcemod/plugins/shavit-sounds.smx" \
"$CSTRIKE/addons/sourcemod/plugins/disabled/" 2>/dev/null || true
echo "--------------------------------------------------------------"
echo "Disabled shavit-sounds"
echo "--------------------------------------------------------------"
fi
# Install MomSurfFix
if [ ! -f "$CSTRIKE/addons/sourcemod/plugins/momsurffix2.smx" ]; then
cd /tmp
@ -259,6 +269,12 @@ configure_shavit_zones() {
// Shavit Zones Plugin Configuration
// Set to 1 to use SQL zones (default for Surf Timer fork)
shavit_zones_usesql "1"
EOF
# Configure mapchooser to allow all maps from disk
cat > "$CSTRIKE/cfg/sourcemod/plugin.shavit-mapchooser.cfg" <<'EOF'
// 0 = zoned maps from database, 1 = maplist.txt, 2 = maps folder
smc_maplist_type "2"
EOF
# JSON zones temporarily disabled for testing
@ -429,7 +445,9 @@ cfg() {
cd
cp src/cfg/server.cfg cssds/cstrike/cfg/
cp src/cfg/motd.txt cssds/cstrike/
cp src/cfg/maplists.cfg cssds/cstrike/addons/sourcemod/configs/maplists.cfg
cp cfg/mapcycle.txt cssds/cstrike/cfg/
cp cfg/mapcycle.txt cssds/cstrike/addons/sourcemod/configs/adminmenu_maplist.ini
sed -i "s|sv_downloadurl .*|sv_downloadurl \"${FASTDL_URL:-}/cstrike/\"|" "$CSTRIKE/cfg/server.cfg"
sed -i "s|rcon_password .*|rcon_password \"${SRCDS_RCONPW:-changeme}\"|" "$CSTRIKE/cfg/server.cfg"
}

View File

@ -0,0 +1,812 @@
// ______________________
//___________.( h0lmGUI™v4.1 by h0lm ).___________
//¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
///////////////////////////////////////////////////////////
// Object Control Panel scheme resource file
//
// sections:
// Colors - all the colors used by the scheme
// BaseSettings - contains settings for app to use to draw controls
// Fonts - list of all the fonts used by app
// Borders - description of all the borders
//
// hit ctrl-alt-shift-R in the app to reload this file
//
///////////////////////////////////////////////////////////
Scheme
{
//////////////////////// COLORS ///////////////////////////
// color details
// this is a list of all the colors used by the scheme
Colors
{
// base colors
//"BaseText" "48 192 192 255" // used in text windows, lists
//"BrightBaseText" "155 255 255 255" // brightest text
"BaseText" "220 30 30 255"
"BrightBaseText" "255 0 0 255"
"DimBaseText" "220 30 30 255" // dim base text
"LabelDimText" "220 30 30 255" // slight modification on above, used for info text
// could be just removed and use DimBaseText?
"ControlText" "48 192 192 255" // used in all text controls
"BrightControlText" "64 224 224 255" // use for selected controls
"DisabledText1" "32 128 128 255" // disabled text
"DisabledText2" "30 30 30 255" // overlay color for disabled text (to give that inset look)
// background colors
"ControlBG" "76 88 68 255" // background color of controls
"ControlDarkBG" "90 106 80 255" // darker background color; used for background of scrollbars
"WindowBG" "62 70 55 255" // background color of text edit panes (chat, text entries, etc.)
"SelectionBG" "76 88 68 255" // background color of any selected text or menu item
// title colors
"TitleText" "255 255 255 255"
"TitleDimText" "120 132 114 255"
"TitleBG" "76 88 68 0"
"TitleDimBG" "76 88 68 0"
// border colors
"BorderBright" "136 145 128 255" // the lit side of a control
"BorderDark" "45 49 40 255" // the dark/unlit side of a control
"BorderSelection" "0 0 0 255" // the additional border color for displaying the default/selected button
"C4Panel_Armed" "0 128 255 200"
"C4Panel_Defused" "0 255 0 200"
}
///////////////////// BASE SETTINGS ////////////////////////
//
// default settings for all panels
// controls use these to determine their settings
BaseSettings
{
Panel.FgColor "48 192 192 255"
Panel.BgColor "0 0 0 0" //Important! - makes the panels transparent
"FgColor" "ControlText"
"BgColor" "ControlBG"
"LabelBgColor" "ControlBG"
"SubPanelBgColor" "ControlBG"
"DisabledFgColor1" "DisabledText1"
"DisabledFgColor2" "DisabledText2" // set this to the BgColor if you don't want it to draw
"TitleBarFgColor" "TitleText"
"TitleBarDisabledFgColor" "TitleDimText"
"TitleBarBgColor" "TitleBG"
"TitleBarDisabledBgColor" "TitleDimBG"
// "TitleBarIcon" "resource/icon_steam"
// "TitleBarDisabledIcon" "resource/icon_steam_disabled"
"TitleBarIcon" "resource/icon_hlicon1"
"TitleBarDisabledIcon" "resource/icon_hlicon2"
"TitleButtonFgColor" "BorderBright"
"TitleButtonBgColor" "ControlBG"
"TitleButtonDisabledFgColor" "TitleDimText"
"TitleButtonDisabledBgColor" "TitleDimBG"
"TextCursorColor" "BaseText" // color of the blinking text cursor in text entries
"URLTextColor" "BrightBaseText" // color that URL's show up in chat window
Menu
{
"FgColor" "DimBaseText"
"BgColor" "ControlBG"
"ArmedFgColor" "BrightBaseText"
"ArmedBgColor" "SelectionBG"
"DividerColor" "BorderDark"
"TextInset" "6"
}
MenuButton // the little arrow on the side of boxes that triggers drop down menus
{
"ButtonArrowColor" "DimBaseText" // color of arrows
"ButtonBgColor" "WindowBG" // bg color of button. same as background color of text edit panes
"ArmedArrowColor" "BrightBaseText" // color of arrow when mouse is over button
"ArmedBgColor" "DimBaseText" // bg color of button when mouse is over button
}
Slider
{
"SliderFgColor" "ControlText" // handle with which the slider is grabbed
"SliderBgColor" "ControlDarkBG" // area behind handle
"SliderTickColor" "ControlText" // slider tick's color
"SliderTickLabelColor" "ControlText" // color of labels at the ends of the slider tick
}
ScrollBarSlider
{
"BgColor" "ControlBG" // this isn't really used
"ScrollBarSliderFgColor" "ControlBG" // handle with which the slider is grabbed
"ScrollBarSliderBgColor" "ControlDarkBG" // area behind handle
"ButtonFgColor" "DimBaseText" // color of arrows
}
// text edit windows
"WindowFgColor" "BaseText" // off-white
"WindowBgColor" "WindowBG"
"WindowDisabledFgColor" "DimBaseText"
"WindowDisabledBgColor" "66 80 60 255" // background of chat conversation
"SelectionFgColor" "255 255 255 255" // fg color of selected text
"SelectionBgColor" "SelectionBG"
"ListSelectionFgColor" "255 255 255 255" //
"ListBgColor" "62 70 55 255" // background of server browser control, etc
"BuddyListBgColor" "62 70 55 255" // background of buddy list pane
// App-specific stuff
"ChatBgColor" "WindowBgColor"
// status selection
"StatusSelectFgColor" "BrightBaseText"
"StatusSelectFgColor2" "BrightControlText" // this is the color of the friends status
// checkboxes
"CheckButtonBorder1" "BorderDark" // the left checkbutton border
"CheckButtonBorder2" "BorderBright" // the right checkbutton border
"CheckButtonCheck" "0 0 0 255" // color of the check itself
"CheckBgColor" "158 168 150 255"
// buttons (default fg/bg colors are used if these are not set)
// "ButtonArmedFgColor"
// "ButtonArmedBgColor"
// "ButtonDepressedFgColor" "BrightControlText"
// "ButtonDepressedBgColor"
// buddy buttons
BuddyButton
{
"FgColor1" "ControlText"
"FgColor2" "117 134 102 255"
"ArmedFgColor1" "BrightBaseText"
"ArmedFgColor2" "BrightBaseText"
"ArmedBgColor" "SelectionBG"
}
Chat
{
"TextColor" "BrightControlText"
"SelfTextColor" "BaseText"
"SeperatorTextColor" "DimBaseText"
}
"SectionTextColor" "BrightControlText" // text color for IN-GAME, ONLINE, OFFLINE sections of buddy list
"SectionDividerColor" "BorderDark" // color of line that runs under section name in buddy list
}
//
//////////////////////// FONTS /////////////////////////////
//
// describes all the fonts
Fonts
{
// fonts are used in order that they are listed
// fonts listed later in the order will only be used if they fulfill a range not already filled
// if a font fails to load then the subsequent fonts will replace
"Default"
{
"1"
{
"name" "Dead Kansas"
"tall" "45" //45
"weight" "600" //900
"range" "0x0000 0x017F" // Basic Latin, Latin-1 Supplement, Latin Extended-A
"antialias" "1"
}
}
"DefaultUnderline"
{
"1"
{
"name" "Impact"
"tall" "32"
"weight" "900"
"underline" "1"
"range" "0x0000 0x017F" // Basic Latin, Latin-1 Supplement, Latin Extended-A
}
}
"DefaultSmall"
{
"1"
{
"name" "Impact"
"tall" "24"
"weight" "900"
"range" "0x0000 0x017F" // Basic Latin, Latin-1 Supplement, Latin Extended-A
}
}
"DefaultVerySmall"
{
"1"
{
"name" "Impact"
"tall" "18"
"weight" "900"
"range" "0x0000 0x017F" // Basic Latin, Latin-1 Supplement, Latin Extended-A
}
}
"DefaultLarge"
{
"1"
{
"name" "Impact"
"tall" "48"
"weight" "0"
"range" "0x0000 0x017F" // Basic Latin, Latin-1 Supplement, Latin Extended-A
}
}
// this is the symbol font
"Marlett"
{
"1"
{
"name" "Marlett"
"tall" "14"
"weight" "0"
"symbol" "1"
"range" "0x0000 0x007F" // Basic Latin
}
}
}
//
//////////////////// BORDERS //////////////////////////////
//
// describes all the border types
Borders
{
BaseBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "BorderDark"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "BorderBright"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "BorderBright"
"offset" "0 0"
}
}
}
TitleButtonBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "BorderBright"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "BorderDark"
"offset" "1 0"
}
}
Top
{
"4"
{
"color" "BorderBright"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
}
TitleButtonDisabledBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "BgColor"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "BgColor"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "BgColor"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "BgColor"
"offset" "0 0"
}
}
}
TitleButtonDepressedBorder
{
"inset" "1 1 1 1"
Left
{
"1"
{
"color" "BorderDark"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "BorderBright"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "BorderBright"
"offset" "0 0"
}
}
}
ScrollBarButtonBorder
{
"inset" "2 2 0 0"
Left
{
"1"
{
"color" "BorderBright"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "BorderDark"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "BorderBright"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
}
ButtonBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "BorderBright"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
Top
{
"1"
{
"color" "BorderBright"
"offset" "0 1"
}
}
Bottom
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
}
TabBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "BorderBright"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "BorderDark"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "BorderBright"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "BorderBright"
"offset" "0 0"
}
}
}
TabActiveBorder
{
"inset" "0 0 1 0"
Left
{
"1"
{
"color" "BorderBright"
"offset" "0 0"
}
}
Right
{
"1"
{
"color" "BorderDark"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "BorderBright"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "ControlBG"
"offset" "6 2"
}
}
}
ToolTipBorder
{
"inset" "0 0 1 0"
Left
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
Right
{
"1"
{
"color" "BorderDark"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
}
// this is the border used for default buttons (the button that gets pressed when you hit enter)
ButtonKeyFocusBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "BorderSelection"
"offset" "0 0"
}
"2"
{
"color" "BorderBright"
"offset" "0 1"
}
}
Top
{
"1"
{
"color" "BorderSelection"
"offset" "0 0"
}
"2"
{
"color" "BorderBright"
"offset" "1 0"
}
}
Right
{
"1"
{
"color" "BorderSelection"
"offset" "0 0"
}
"2"
{
"color" "BorderDark"
"offset" "1 0"
}
}
Bottom
{
"1"
{
"color" "BorderSelection"
"offset" "0 0"
}
"2"
{
"color" "BorderDark"
"offset" "0 0"
}
}
}
ButtonDepressedBorder
{
"inset" "2 1 1 1"
Left
{
"1"
{
"color" "BorderDark"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "BorderBright"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "BorderBright"
"offset" "0 0"
}
}
}
ComboBoxBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "BorderDark"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "BorderBright"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "BorderBright"
"offset" "0 0"
}
}
}
MenuBorder
{
"inset" "1 1 1 1"
Left
{
"1"
{
"color" "BorderBright"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "BorderDark"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "BorderBright"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "BorderDark"
"offset" "0 0"
}
}
}
}
}
//________________________________________________
//¯¯¯¯¯¯¯¯¯¯¯'( h0lmGUI™v4.1 by h0lm )'¯¯¯¯¯¯¯¯¯¯¯
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

View File

@ -0,0 +1,755 @@
///////////////////////////////////////////////////////////
// Tracker scheme resource file
//
// sections:
// Colors - all the colors used by the scheme
// BaseSettings - contains settings for app to use to draw controls
// Fonts - list of all the fonts used by app
// Borders - description of all the borders
//
///////////////////////////////////////////////////////////
Scheme
{
//////////////////////// COLORS ///////////////////////////
// color details
// this is a list of all the colors used by the scheme
Colors
{
// base colors
"White" "255 255 255 255"
"OffWhite" "216 216 216 255"
"DullWhite" "0 0 0 0"
"Orange" "255 110 0 255"
"TransparentBlack" "0 0 0 0"
"Black" "0 0 0 255"
"Blank" "0 0 0 0"
}
///////////////////// BASE SETTINGS ////////////////////////
//
// default settings for all panels
// controls use these to determine their settings
BaseSettings
{
// vgui_controls color specifications
Border.Bright "0 0 0 0" //"200 200 200 196" // the lit side of a control
Border.Dark "0 0 0 0" //"40 40 40 196" // the dark/unlit side of a control
Border.Selection "0 0 0 0" //"0 0 0 196" // the additional border color for displaying the default/selected button
Button.TextColor "White"
Button.BgColor "Blank"
Button.ArmedTextColor "White"
Button.ArmedBgColor "Blank" [$WIN32]
Button.ArmedBgColor "190 115 0 255" [$X360]
Button.DepressedTextColor "White"
Button.DepressedBgColor "Blank"
Button.FocusBorderColor "Black"
CheckButton.TextColor "OffWhite"
CheckButton.SelectedTextColor "White"
CheckButton.BgColor "TransparentBlack"
CheckButton.Border1 "Border.Dark" // the left checkbutton border
CheckButton.Border2 "Border.Bright" // the right checkbutton border
CheckButton.Check "White" // color of the check itself
ComboBoxButton.ArrowColor "DullWhite"
ComboBoxButton.ArmedArrowColor "White"
ComboBoxButton.BgColor "Blank"
ComboBoxButton.DisabledBgColor "Blank"
"Chat.TypingText" "white"
Frame.TitleTextInsetX 16
Frame.ClientInsetX 8
Frame.ClientInsetY 6
Frame.BgColor "160 160 160 128" [$WIN32]
Frame.BgColor "80 80 80 192" [$X360]
Frame.OutOfFocusBgColor "160 160 160 32" [$WIN32]
Frame.OutOfFocusBgColor "80 80 80 192" [$X360]
Frame.FocusTransitionEffectTime "0.3" // time it takes for a window to fade in/out on focus/out of focus
Frame.TransitionEffectTime "0.3" // time it takes for a window to fade in/out on open/close
Frame.AutoSnapRange "0"
FrameGrip.Color1 "200 200 200 196"
FrameGrip.Color2 "0 0 0 196"
FrameTitleButton.FgColor "200 200 200 196"
FrameTitleButton.BgColor "Blank"
FrameTitleButton.DisabledFgColor "255 255 255 192"
FrameTitleButton.DisabledBgColor "Blank"
FrameSystemButton.FgColor "Blank"
FrameSystemButton.BgColor "Blank"
FrameSystemButton.Icon ""
FrameSystemButton.DisabledIcon ""
FrameTitleBar.Font "UiBold" [$WIN32]
FrameTitleBar.Font "DefaultLarge" [$WIN32]
FrameTitleBar.TextColor "White"
FrameTitleBar.BgColor "Blank"
FrameTitleBar.DisabledTextColor "255 255 255 192"
FrameTitleBar.DisabledBgColor "Blank"
GraphPanel.FgColor "White"
GraphPanel.BgColor "TransparentBlack"
Label.TextDullColor "DullWhite"
Label.TextColor "OffWhite"
Label.TextBrightColor "White"
Label.SelectedTextColor "White"
Label.BgColor "TransparentBlack"
Label.DisabledFgColor1 "117 117 117 255"
Label.DisabledFgColor2 "30 30 30 255"
ListPanel.TextColor "OffWhite"
ListPanel.TextBgColor "Blank"
ListPanel.BgColor "TransparentBlack"
ListPanel.SelectedTextColor "Black"
ListPanel.SelectedBgColor "Orange"
ListPanel.SelectedOutOfFocusBgColor "255 155 0 128"
ListPanel.EmptyListInfoTextColor "OffWhite"
Menu.TextColor "White"
Menu.BgColor "160 160 160 64"
Menu.ArmedTextColor "Black"
Menu.ArmedBgColor "Orange"
Menu.TextInset "6"
Panel.FgColor "Blank"
Panel.BgColor "DullWhite"
ProgressBar.FgColor "White"
ProgressBar.BgColor "TransparentBlack"
PropertySheet.TextColor "OffWhite"
PropertySheet.SelectedTextColor "White"
PropertySheet.TransitionEffectTime "0.25" // time to change from one tab to another
RadioButton.TextColor "DullWhite"
RadioButton.SelectedTextColor "White"
RichText.TextColor "OffWhite"
RichText.BgColor "TransparentBlack"
RichText.SelectedTextColor "Black"
RichText.SelectedBgColor "Orange"
ScrollBar.Wide 11
ScrollBarButton.FgColor "White"
ScrollBarButton.BgColor "Blank"
ScrollBarButton.ArmedFgColor "White"
ScrollBarButton.ArmedBgColor "Blank"
ScrollBarButton.DepressedFgColor "White"
ScrollBarButton.DepressedBgColor "Blank"
ScrollBarSlider.FgColor "Blank" // nob color
ScrollBarSlider.BgColor "0 0 0 0" // slider background color 255 255 255 64
SectionedListPanel.HeaderTextColor "White"
SectionedListPanel.HeaderBgColor "Blank"
SectionedListPanel.DividerColor "Black"
SectionedListPanel.TextColor "DullWhite"
SectionedListPanel.BrightTextColor "White"
SectionedListPanel.BgColor "TransparentBlack"
SectionedListPanel.SelectedTextColor "Black"
SectionedListPanel.SelectedBgColor "Orange"
SectionedListPanel.OutOfFocusSelectedTextColor "Black"
SectionedListPanel.OutOfFocusSelectedBgColor "255 155 0 128"
TextEntry.TextColor "OffWhite"
TextEntry.BgColor "TransparentBlack"
TextEntry.CursorColor "OffWhite"
TextEntry.DisabledTextColor "DullWhite"
TextEntry.DisabledBgColor "Blank"
TextEntry.SelectedTextColor "Black"
TextEntry.SelectedBgColor "Orange"
TextEntry.OutOfFocusSelectedBgColor "255 155 0 128"
TextEntry.FocusEdgeColor "0 0 0 196"
ToggleButton.SelectedTextColor "White"
Tooltip.TextColor "0 0 0 196"
Tooltip.BgColor "Orange"
TreeView.BgColor "TransparentBlack"
WizardSubPanel.BgColor "Blank"
// scheme-specific colors
MainMenu.TextColor "White" [$WIN32]
MainMenu.TextColor "200 200 200 255" [$X360]
MainMenu.ArmedTextColor "200 200 200 255" [$WIN32]
MainMenu.ArmedTextColor "White" [$X360]
MainMenu.DepressedTextColor "192 186 80 255"
MainMenu.MenuItemHeight "16" [$WIN32]
MainMenu.MenuItemHeight "32" [$X360]
MainMenu.Inset "32"
MainMenu.Backdrop "0 0 0 156"
Console.TextColor "OffWhite"
Console.DevTextColor "White"
NewGame.TextColor "White"
NewGame.FillColor "0 0 0 255"
NewGame.SelectionColor "Orange" [$WIN32]
NewGame.SelectionColor "0 0 0 255" [$X360]
NewGame.DisabledColor "128 128 128 196"
}
//////////////////////// BITMAP FONT FILES /////////////////////////////
//
// Bitmap Fonts are ****VERY*** expensive static memory resources so they are purposely sparse
BitmapFontFiles
{
// UI buttons, custom font, (256x64)
//"Buttons" "materials/vgui/fonts/buttons_32.vbf"
}
//////////////////////// FONTS /////////////////////////////
//
// describes all the fonts
Fonts
{
"Default"
{
"1"
{
"name" "Tahoma"
"tall" "12"
"weight" "0"
"range" "0x0000 0x017F"
"yres" "480 599"
}
"2"
{
"name" "Tahoma"
"tall" "13"
"weight" "0"
"range" "0x0000 0x017F"
"yres" "600 767"
}
"3"
{
"name" "Tahoma"
"tall" "14"
"weight" "0"
"range" "0x0000 0x017F"
"yres" "768 1023"
"antialias" "1"
}
"4"
{
"name" "Tahoma"
"tall" "16"
"weight" "0"
"range" "0x0000 0x017F"
"yres" "1024 1280"
"antialias" "1"
}
"5"
{
"name" "Tahoma"
"tall" "20"
"weight" "0"
"range" "0x0000 0x017F"
"yres" "1200 6000"
"antialias" "1"
}
}
// this is the symbol font
"Marlett"
{
"1"
{
"name" "Marlett"
"tall" "10"
"weight" "0"
"yres" "480 599"
"symbol" "1"
}
"2"
{
"name" "Marlett"
"tall" "14"
"weight" "0"
"yres" "600 767"
"symbol" "1"
}
"3"
{
"name" "Marlett"
"tall" "13"
"weight" "0"
"yres" "768 1023"
"symbol" "1"
}
"4"
{
"name" "Marlett"
"tall" "17"
"weight" "0"
"yres" "1024 1199"
"symbol" "1"
}
"5"
{
"name" "Marlett"
"tall" "22"
"weight" "0"
"yres" "1200 10000"
"symbol" "1"
}
}
"ChatFont"
{
"1"
{
"name" "Tahoma"
"tall" "13"
"weight" "1000"
"yres" "480 599"
"outline" "1"
}
"2"
{
"name" "Tahoma"
"tall" "13"
"weight" "1000"
"yres" "600 767"
"outline" "1"
}
"3"
{
"name" "Tahoma"
"tall" "13"
"weight" "1000"
"yres" "768 1023"
"outline" "1"
}
"4"
{
"name" "Tahoma"
"tall" "13"
"weight" "1000"
"yres" "1024 1199"
"outline" "1"
}
"5"
{
"name" "Tahoma"
"tall" "13"
"weight" "1000"
"yres" "1200 10000"
"outline" "1"
}
}
}
//
//////////////////// BORDERS //////////////////////////////
//
// describes all the border types
Borders
{
BaseBorder DepressedBorder
ButtonBorder RaisedBorder
ComboBoxBorder DepressedBorder
MenuBorder RaisedBorder
BrowserBorder DepressedBorder
PropertySheetBorder RaisedBorder
FrameBorder
{
// rounded corners for frames
"backgroundtype" "2"
}
DepressedBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "Border.Dark"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "Border.Bright"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "Border.Dark"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "Border.Bright"
"offset" "0 0"
}
}
}
RaisedBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "Border.Bright"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "Border.Dark"
"offset" "0 0"
}
}
Top
{
"1"
{
"color" "Border.Bright"
"offset" "0 1"
}
}
Bottom
{
"1"
{
"color" "Border.Dark"
"offset" "0 0"
}
}
}
TitleButtonBorder
{
"backgroundtype" "0"
}
TitleButtonDisabledBorder
{
"backgroundtype" "0"
}
TitleButtonDepressedBorder
{
"backgroundtype" "0"
}
ScrollBarButtonBorder
{
"inset" "2 2 0 0"
Left
{
"1"
{
"color" "Border.Bright"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "Border.Dark"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "Border.Bright"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "Border.Dark"
"offset" "0 0"
}
}
}
ScrollBarButtonDepressedBorder
{
"inset" "2 2 0 0"
Left
{
"1"
{
"color" "Border.Dark"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "Border.Bright"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "Border.Dark"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "Border.Bright"
"offset" "0 0"
}
}
}
TabBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "Border.Bright"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "Border.Dark"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "Border.Bright"
"offset" "0 0"
}
}
}
TabActiveBorder
{
"inset" "0 0 1 0"
Left
{
"1"
{
"color" "Border.Bright"
"offset" "0 0"
}
}
Right
{
"1"
{
"color" "Border.Dark"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "Border.Bright"
"offset" "0 0"
}
}
}
ToolTipBorder
{
"inset" "0 0 1 0"
Left
{
"1"
{
"color" "Border.Dark"
"offset" "0 0"
}
}
Right
{
"1"
{
"color" "Border.Dark"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "Border.Dark"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "Border.Dark"
"offset" "0 0"
}
}
}
// this is the border used for default buttons (the button that gets pressed when you hit enter)
ButtonKeyFocusBorder
{
"inset" "0 0 1 1"
Left
{
"1"
{
"color" "Border.Selection"
"offset" "0 0"
}
"2"
{
"color" "Border.Bright"
"offset" "0 1"
}
}
Top
{
"1"
{
"color" "Border.Selection"
"offset" "0 0"
}
"2"
{
"color" "Border.Bright"
"offset" "1 0"
}
}
Right
{
"1"
{
"color" "Border.Selection"
"offset" "0 0"
}
"2"
{
"color" "Border.Dark"
"offset" "1 0"
}
}
Bottom
{
"1"
{
"color" "Border.Selection"
"offset" "0 0"
}
"2"
{
"color" "Border.Dark"
"offset" "0 0"
}
}
}
ButtonDepressedBorder
{
"inset" "2 1 1 1"
Left
{
"1"
{
"color" "Border.Dark"
"offset" "0 1"
}
}
Right
{
"1"
{
"color" "Border.Bright"
"offset" "1 0"
}
}
Top
{
"1"
{
"color" "Border.Dark"
"offset" "0 0"
}
}
Bottom
{
"1"
{
"color" "Border.Bright"
"offset" "0 0"
}
}
}
}
//////////////////////// CUSTOM FONT FILES /////////////////////////////
//
// specifies all the custom (non-system) font files that need to be loaded to service the above described fonts
CustomFontFiles
{
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,64 @@
// ______________________
//___________.( h0lmGUI™v4.1 by h0lm ).___________
//¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
"Resource/UI/BuyMenu.res"
{
"buy"
{
"ControlName" "CBuyMenu"
"fieldName" "buy"
"xpos" "0"
"ypos" "0"
"wide" "640"
"tall" "480"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"setTitleBarVisible" "0"
}
"BuySubMenu"
{
"ControlName" "WizardSubPanel"
"fieldName" "BuySubMenu"
"xpos" "0"
"ypos" "0"
"wide" "640"
"tall" "480"
"autoResize" "3"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
}
"LinePanel2"
{
"ControlName" "ImagePanel"
"fieldName" "LinePanel2"
"xpos" "25"
"ypos" "20"
"zpos" "0"
"wide" "590"
"tall" "53"
"visible" "1"
"PaintBackgroundType" "2"
"fillcolor" "0 0 0 196"
}
"LinePanel"
{
"ControlName" "ImagePanel"
"fieldName" "LinePanel"
"xpos" "25"
"ypos" "78"
"zpos" "0"
"wide" "590"
"tall" "352"
"visible" "1"
"PaintBackgroundType" "2"
"fillcolor" "0 0 0 196"
}
}
//________________________________________________
//¯¯¯¯¯¯¯¯¯¯¯'( h0lmGUI™v4.1 by h0lm )'¯¯¯¯¯¯¯¯¯¯¯
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

View File

@ -0,0 +1,284 @@
// ______________________
//___________.( h0lmGUI™v4.1 by h0lm ).___________
//¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
"Resource/UI/ClassMenu_CT.res"
{
"class_ct"
{
"ControlName" "Frame"
"fieldName" "class_ct"
"xpos" "0"
"ypos" "0"
"wide" "640"
"tall" "480"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
}
"SysMenu"
{
"ControlName" "Menu"
"fieldName" "SysMenu"
"xpos" "0"
"ypos" "0"
"wide" "64"
"tall" "24"
"autoResize" "0"
"pinCorner" "0"
"visible" "0"
"enabled" "0"
"tabPosition" "0"
}
"Backgroundz"
{
"ControlName" "ImagePanel"
"fieldName" "Backgroundz"
"xpos" "115"
"ypos" "c-134"
"zpos" "0"
"wide" "411"
"tall" "40"
"visible" "1"
"fillcolor" "0 0 0 196"
}
"Backgroundx"
{
"ControlName" "ImagePanel"
"fieldName" "Backgroundx"
"xpos" "115"
"ypos" "c-91"
"zpos" "0"
"wide" "411"
"tall" "227"
"visible" "1"
"fillcolor" "0 0 0 196"
}
"HeadlineZ"
{
"ControlName" "Label"
"fieldName" "HeadlineZ"
"xpos" "127"
"ypos" "c-124"
"wide" "200"
"tall" "20"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "PICK A WARRIOR"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"font" "TeamMenuHeadLine"
"fgcolor_override" "255 255 255 255"
//"bgcolor_override" "200 200 200 100"
}
"LOLmlogo"
{
"ControlName" "Label"
"fieldName" "LOLmlogo"
"xpos" "428"
"ypos" "c-124"
"wide" "200"
"tall" "20"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "COUN"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"font" "MenuLogogo"
"fgcolor_override" "255 255 255 20"
}
"joinClass"
{
"ControlName" "Label"
"fieldName" "joinClass"
"xpos" "76"
"ypos" "22"
"wide" "450"
"tall" "48"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_Join_Class"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"font" "MenuTitle"
"fgcolor_override" "255 255 255 0"
}
"classInfoLabel"
{
}
"ClassInfo"
{
"ControlName" "Panel"
"fieldName" "ClassInfo"
"xpos" "290" //"244"
"ypos" "164"
"wide" "0" //"400"
"tall" "0" //"380"
"autoResize" "2" //"3"
"pinCorner" "0"
"visible" "0"
"enabled" "0"
"tabPosition" "0"
}
"urban"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "urban"
"xpos" "132"
"ypos" "162"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_Urban"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "joinclass 5"
}
"gsg9"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "gsg9"
"xpos" "132"
"ypos" "192"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_GSG9"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "joinclass 6"
}
"sas"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "sas"
"xpos" "132"
"ypos" "222"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_SAS"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "joinclass 7"
}
"gign"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "gign"
"xpos" "132"
"ypos" "252"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_GIGN"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "joinclass 8"
}
"autoselect_ct"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "autoselect_ct"
"xpos" "132"
"ypos" "312"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_Auto_Select"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "joinclass 0"
"Default" "1"
}
"deadspec"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "deadspec"
"xpos" "132"
"ypos" "282"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "&5 DEAD SPECTATE"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "vguicancel"
"Default" "1"
}
"CancelButton"
{
"ControlName" "Button"
"fieldName" "CancelButton"
"xpos" "132"
"ypos" "342"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_Cancel"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"Command" "vguicancel"
}
}
//________________________________________________
//¯¯¯¯¯¯¯¯¯¯¯'( h0lmGUI™v4.1 by h0lm )'¯¯¯¯¯¯¯¯¯¯¯
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

View File

@ -0,0 +1,283 @@
// ______________________
//___________.( h0lmGUI™v4.1 by h0lm ).___________
//¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
"Resource/UI/ClassMenu_TER.res"
{
"class_ter"
{
"ControlName" "Frame"
"fieldName" "class_ter"
"xpos" "0"
"ypos" "0"
"wide" "640"
"tall" "480"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
}
"SysMenu"
{
"ControlName" "Menu"
"fieldName" "SysMenu"
"xpos" "0"
"ypos" "0"
"wide" "64"
"tall" "24"
"autoResize" "0"
"pinCorner" "0"
"visible" "0"
"enabled" "0"
"tabPosition" "0"
}
"Backgroundz"
{
"ControlName" "ImagePanel"
"fieldName" "Backgroundz"
"xpos" "115"
"ypos" "c-134"
"zpos" "0"
"wide" "411"
"tall" "40"
"visible" "1"
"fillcolor" "0 0 0 196"
}
"Backgroundx"
{
"ControlName" "ImagePanel"
"fieldName" "Backgroundx"
"xpos" "115"
"ypos" "c-91"
"zpos" "0"
"wide" "411"
"tall" "227"
"visible" "1"
"fillcolor" "0 0 0 196"
}
"HeadlineZ"
{
"ControlName" "Label"
"fieldName" "HeadlineZ"
"xpos" "127"
"ypos" "c-124"
"wide" "200"
"tall" "20"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "PICK A WARRIOR"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"font" "TeamMenuHeadLine"
"fgcolor_override" "255 255 255 255"
//"bgcolor_override" "200 200 200 100"
}
"LOLmlogo"
{
"ControlName" "Label"
"fieldName" "LOLmlogo"
"xpos" "428"
"ypos" "c-124"
"wide" "200"
"tall" "20"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "COUN"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"font" "MenuLogogo"
"fgcolor_override" "255 255 255 20"
}
"joinClass"
{
"ControlName" "Label"
"fieldName" "joinClass"
"xpos" "76"
"ypos" "22"
"wide" "450"
"tall" "48"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_Join_Class"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"font" "MenuTitle"
"fgcolor_override" "255 255 255 0"
}
"classInfoLabel"
{
}
"ClassInfo"
{
"ControlName" "Panel"
"fieldName" "ClassInfo"
"xpos" "290" //"244"
"ypos" "164"
"wide" "0" //"400"
"tall" "0" //"380"
"autoResize" "2" //"3"
"pinCorner" "0"
"visible" "0"
"enabled" "0"
"tabPosition" "0"
}
"terror"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "terror"
"xpos" "132"
"ypos" "162"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_Terror"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "joinclass 1"
}
"leet"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "leet"
"xpos" "132"
"ypos" "192"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_L337_Krew"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "joinclass 2"
}
"arctic"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "arctic"
"xpos" "132"
"ypos" "222"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_Arctic"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "joinclass 3"
}
"guerilla"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "guerilla"
"xpos" "132"
"ypos" "252"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_Guerilla"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "joinclass 4"
}
"autoselect_t"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "autoselect_t"
"xpos" "132"
"ypos" "312"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_Auto_Select"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "joinclass 0"
"Default" "1"
}
"deadspec"
{
"ControlName" "MouseOverPanelButton"
"fieldName" "deadspec"
"xpos" "132"
"ypos" "282"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "&5 DEAD SPECTATE"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "vguicancel"
"Default" "1"
}
"CancelButton"
{
"ControlName" "Button"
"fieldName" "CancelButton"
"xpos" "132"
"ypos" "342"
"wide" "148"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "#Cstrike_Cancel"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"Command" "vguicancel"
}
}
//________________________________________________
//¯¯¯¯¯¯¯¯¯¯¯'( h0lmGUI™v4.1 by h0lm )'¯¯¯¯¯¯¯¯¯¯¯
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

View File

@ -0,0 +1,935 @@
"Resource/UI/ScoreBoard.res"
{
"scores"
{
"ControlName" "CCSClientScoreBoardDialog"
"fieldName" "scores"
"xpos" "0"
"ypos" "0"
"zpos" "90"
"wide" "f0"
"tall" "480"
"settitlebarvisible" "0"
}
"ScoreboardBackground"
{
"ControlName" "ImagePanel"
"fieldName" "ScoreboardBackground"
"xpos" "c-295"
"ypos" "c-158"
"wide" "590"
"tall" "253"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "0"
"fillcolor" "0 0 0 200"
}
"Spec_Label"
{
"ControlName" "Label"
"fieldName" "Spec_Label"
"xpos" "c-288"
"ypos" "c+59"
"zpos" "4"
"wide" "140"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "Broadcast"
"textAlignment" "south-west"
"font" "ScoreboardTeamName"
"fgcolor_override" "255 255 255 255"
}
"HeadLine"
{
"ControlName" "ImagePanel"
"fieldName" "HeadLine"
"xpos" "c-290"
"ypos" "c-144"
"wide" "580"
"tall" "1"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "0"
"fillcolor" "255 255 255 255"
}
"SpecLine"
{
"ControlName" "ImagePanel"
"fieldName" "HeadLine"
"xpos" "c-290"
"ypos" "c+75"
"wide" "580"
"tall" "1"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "0"
"fillcolor" "255 255 255 255"
}
"CTLine"
{
"ControlName" "ImagePanel"
"fieldName" "CTLine"
"xpos" "c-290"
"ypos" "c-125"
"wide" "290"
"tall" "1"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "0"
"fillcolor" "128 206 255 255"
}
"TLine"
{
"ControlName" "ImagePanel"
"fieldName" "TLine"
"xpos" "c+0"
"ypos" "c-125"
"wide" "290"
"tall" "1"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "0"
"fillcolor" "255 26 28 255"
}
"CTScoreBox"
{
"ControlName" "ImagePanel"
"fieldName" "CTScoreBox"
"xpos" "c-60"
"ypos" "c-137"
"wide" "25"
"tall" "12"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "0"
"fillcolor" "128 206 255 255"
}
"TScoreBox"
{
"ControlName" "ImagePanel"
"fieldName" "TScoreBox"
"xpos" "c+35"
"ypos" "c-137"
"wide" "25"
"tall" "12"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "0"
"fillcolor" "255 26 28 255"
}
"CTPlayerBox1"
{
"ControlName" "ImagePanel"
"fieldName" "PlayerBox1"
"xpos" "c-290"
"ypos" "c-105"
"wide" "287"
"tall" "163"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "0"
"fillcolor" "0 0 0 40"
}
"TPlayerBox1"
{
"ControlName" "ImagePanel"
"fieldName" "PlayerBox1"
"xpos" "c+4"
"ypos" "c-105"
"wide" "287"
"tall" "163"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "0"
"fillcolor" "0 0 0 40"
}
"ServerNameLabel"
{
"ControlName" "Label"
"fieldName" "ServerNameLabel"
"xpos" "c-288"
"ypos" "c-157"
"zpos" "4"
"wide" "100"
"tall" "15"
"visible" "1"
"enabled" "1"
"labelText" ""
"auto_wide_tocontents" "1"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "1"
"font" "ScoreboardHeader"
"fgcolor_override" "255 255 255 255"
}
"DividerLabel1"
{
"ControlName" "Label"
"fieldName" "DividerLabel1"
"xpos" "10"
"ypos" "0"
"zpos" "4"
"wide" "5"
"tall" "15"
"visible" "1"
"enabled" "1"
"labelText" "-"
"auto_wide_tocontents" "1"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "1"
"font" "ScoreboardHeader"
"fgcolor_override" "255 255 255 255"
"pin_to_sibling" "ServerNameLabel"
"pin_corner_to_sibling" "2"
"pin_to_sibling_corner" "3"
}
"MapName"
{
"ControlName" "Label"
"fieldName" "MapName"
"xpos" "10"
"ypos" "0"
"zpos" "4"
"wide" "30"
"tall" "15"
"visible" "1"
"enabled" "1"
"labelText" "%mapname%"
"auto_wide_tocontents" "1"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "1"
"font" "ScoreboardHeader"
"fgcolor_override" "255 255 255 255"
"pin_to_sibling" "DividerLabel1"
"pin_corner_to_sibling" "2"
"pin_to_sibling_corner" "3"
}
"DividerLabel2"
{
"ControlName" "Label"
"fieldName" "DividerLabel2"
"xpos" "1"
"ypos" "0"
"zpos" "4"
"wide" "5"
"tall" "15"
"visible" "1"
"enabled" "1"
"labelText" "/"
"auto_wide_tocontents" "1"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "1"
"font" "ScoreboardHeader"
"fgcolor_override" "255 255 255 255"
"pin_to_sibling" "MapName"
"pin_corner_to_sibling" "2"
"pin_to_sibling_corner" "3"
}
"StatsStatus"
{
"ControlName" "Label"
"fieldName" "StatsStatus"
"xpos" "1"
"ypos" "0"
"zpos" "4"
"wide" "65"
"tall" "15"
"visible" "1"
"enabled" "1"
"labelText" "%statsstatus%"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "1"
"font" "ScoreboardHeader"
"fgcolor_override" "255 255 255 255"
"pin_to_sibling" "DividerLabel2"
"pin_corner_to_sibling" "2"
"pin_to_sibling_corner" "3"
}
"PositionLabel"
{
"ControlName" "Label"
"fieldName" "PositionLabel"
"xpos" "c+287"
"ypos" "c-157"
"zpos" "4"
"wide" "1"
"tall" "15"
"visible" "1"
"enabled" "1"
"labelText" ""
"auto_wide_tocontents" "1"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "1"
"font" "ScoreboardHeader"
"fgcolor_override" "0 0 0 0"
}
"WinConditionLabel"
{
"ControlName" "Label"
"fieldName" "WinConditionLabel"
"xpos" "0"
"ypos" "0"
"zpos" "4"
"wide" "80"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" ""
"auto_wide_tocontents" "1"
"textAlignment" "east"
"font" "ScoreboardHeader"
"fgcolor_override" "255 255 255 255"
"pin_to_sibling" "PositionLabel"
"pin_corner_to_sibling" "3"
"pin_to_sibling_corner" "2"
}
"CT_Label"
{
"ControlName" "Label"
"fieldName" "CT_Label"
"xpos" "c-288"
"ypos" "c-138"
"zpos" "4"
"wide" "140"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "Counter-Terrorists" //"%ct_teamname%"
"auto_wide_tocontents" "1"
"textAlignment" "west"
"font" "ScoreboardTeamName"
"fgcolor_override" "128 206 255 255"
}
"CTSeperator"
{
"ControlName" "Label"
"fieldName" "CTSeperator"
"xpos" "10"
"ypos" "0"
"zpos" "4"
"wide" "5"
"tall" "15"
"visible" "1"
"enabled" "1"
"labelText" "-"
"auto_wide_tocontents" "1"
"textAlignment" "west"
"font" "ScoreboardPlayersAlive"
"fgcolor_override" "128 206 255 255"
"pin_to_sibling" "CT_Label"
"pin_corner_to_sibling" "2"
"pin_to_sibling_corner" "3"
}
"CTPlayersAlive"
{
"ControlName" "Label"
"fieldName" "CTPlayersAlive"
"xpos" "10"
"ypos" "0"
"zpos" "4"
"wide" "45"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "%ct_alivecount%"
"auto_wide_tocontents" "1"
"textAlignment" "west"
"font" "ScoreboardPlayersAlive"
"fgcolor_override" "128 206 255 255"
"pin_to_sibling" "CTSeperator"
"pin_corner_to_sibling" "2"
"pin_to_sibling_corner" "3"
}
"CTPlayersAliveSuffix"
{
"ControlName" "Label"
"xpos" "4"
"ypos" "0"
"zpos" "4"
"wide" "80"
"tall" "15"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_Scoreboard_PlayersAlive"
"textAlignment" "west"
"font" "ScoreboardPlayersAliveSuffix"
"fgcolor_override" "128 206 255 255"
"pin_to_sibling" "CTPlayersAlive"
"pin_corner_to_sibling" "2"
"pin_to_sibling_corner" "3"
}
"CTTeamScore"
{
"ControlName" "Label"
"fieldName" "CTTeamScore"
"xpos" "c-97"
"ypos" "c-138"
"zpos" "4"
"wide" "100"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "%ct_totalteamscore%"
"textAlignment" "center"
"font" "ScoreboardScore"
"fgcolor_override" "255 255 255 255"
}
"T_Label"
{
"ControlName" "Label"
"fieldName" "T_Label"
"xpos" "c+256"
"ypos" "c-138"
"zpos" "4"
"wide" "140"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "Terrorists" //"%t_teamname%"
"auto_wide_tocontents" "1"
"textAlignment" "east"
"font" "ScoreboardTeamName"
"fgcolor_override" "255 26 28 255"
}
"TSeperator"
{
"ControlName" "Label"
"fieldName" "TSeperator"
"xpos" "10"
"ypos" "0"
"zpos" "4"
"wide" "5"
"tall" "15"
"visible" "1"
"enabled" "1"
"labelText" "-"
"auto_wide_tocontents" "1"
"textAlignment" "east"
"font" "ScoreboardPlayersAlive"
"fgcolor_override" "255 26 28 255"
"pin_to_sibling" "T_Label"
"pin_corner_to_sibling" "3"
"pin_to_sibling_corner" "2"
}
"TPlayersAlive"
{
"ControlName" "Label"
"fieldName" "TPlayersAlive"
"xpos" "10"
"ypos" "0"
"zpos" "4"
"wide" "45"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "%t_alivecount%"
"auto_wide_tocontents" "1"
"textAlignment" "east"
"font" "ScoreboardPlayersAlive"
"fgcolor_override" "255 26 28 255"
"pin_to_sibling" "TSeperator"
"pin_corner_to_sibling" "3"
"pin_to_sibling_corner" "2"
}
"TPlayersAliveSuffix"
{
"ControlName" "Label"
"xpos" "4"
"ypos" "0"
"zpos" "4"
"wide" "80"
"tall" "15"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_Scoreboard_PlayersAlive"
"textAlignment" "east"
"font" "ScoreboardPlayersAliveSuffix"
"fgcolor_override" "255 26 28 255"
"pin_to_sibling" "TPlayersAlive"
"pin_corner_to_sibling" "3"
"pin_to_sibling_corner" "2"
}
"TTeamScore"
{
"ControlName" "Label"
"fieldName" "TTeamScore"
"xpos" "c-3"
"ypos" "c-138"
"zpos" "4"
"wide" "100"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "%t_totalteamscore%"
"textAlignment" "center"
"font" "ScoreboardScore"
"fgcolor_override" "255 255 255 255"
}
"CTClanLabel"
{
"ControlName" "Label"
"fieldName" "CTClanLabel"
"xpos" "c-275"
"ypos" "c-125"
"zpos" "4"
"wide" "45"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "Clan"
"textAlignment" "center"
"font" "ScoreboardColumns"
"fgcolor_override" "128 206 255 255"
}
"CTPlayerLabel"
{
"ControlName" "Label"
"fieldName" "CTPlayerLabel"
"xpos" "c-228"
"ypos" "c-125"
"zpos" "4"
"wide" "60"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_SB_PlayerName"
"textAlignment" "west"
"font" "ScoreboardColumns"
"fgcolor_override" "128 206 255 255"
}
"CTPlayerScoreLabel"
{
"ControlName" "Label"
"fieldName" "CTPlayerScoreLabel"
"xpos" "c-93"
"ypos" "c-125"
"zpos" "4"
"wide" "30"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_SB_Score"
"textAlignment" "center"
"font" "ScoreboardColumns"
"fgcolor_override" "128 206 255 255"
}
"CTPlayerDeathsLabel"
{
"ControlName" "Label"
"fieldName" "CTPlayerDeathsLabel"
"xpos" "c-68"
"ypos" "c-125"
"zpos" "4"
"wide" "37"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_SB_Deaths"
"textAlignment" "center"
"font" "ScoreboardColumns"
"fgcolor_override" "128 206 255 255"
}
"CTPlayerLatencyLabel"
{
"ControlName" "Label"
"fieldName" "CTPlayerLatencyLabel"
"xpos" "c-39"
"ypos" "c-125"
"zpos" "4"
"wide" "42"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_SB_Latency"
"textAlignment" "center"
"font" "ScoreboardColumns"
"fgcolor_override" "128 206 255 255"
}
"TClanLabel"
{
"ControlName" "Label"
"fieldName" "TClanLabel"
"xpos" "c+20"
"ypos" "c-125"
"zpos" "4"
"wide" "45"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "Clan"
"textAlignment" "center"
"font" "ScoreboardColumns"
"fgcolor_override" "255 26 28 255"
}
"TPlayerLabel"
{
"ControlName" "Label"
"fieldName" "TPlayerLabel"
"xpos" "c+67"
"ypos" "c-125"
"zpos" "4"
"wide" "60"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_SB_PlayerName"
"textAlignment" "west"
"font" "ScoreboardColumns"
"fgcolor_override" "255 26 28 255"
}
"TPlayerScoreLabel"
{
"ControlName" "Label"
"fieldName" "TPlayerScoreLabel"
"xpos" "c+200"
"ypos" "c-125"
"zpos" "4"
"wide" "30"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_SB_Score"
"textAlignment" "center"
"font" "ScoreboardColumns"
"fgcolor_override" "255 26 28 255"
}
"TPlayerDeathsLabel"
{
"ControlName" "Label"
"fieldName" "TPlayerDeathsLabel"
"xpos" "c+225"
"ypos" "c-125"
"zpos" "4"
"wide" "37"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_SB_Deaths"
"textAlignment" "center"
"font" "ScoreboardColumns"
"fgcolor_override" "255 26 28 255"
}
"TPlayerLatencyLabel"
{
"ControlName" "Label"
"fieldName" "TPlayerLatencyLabel"
"xpos" "c+252"
"ypos" "c-125"
"zpos" "4"
"wide" "42"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_SB_Latency"
"textAlignment" "center"
"font" "ScoreboardColumns"
"fgcolor_override" "255 26 28 255"
}
"CTPlayerArea"
{
"ControlName" "ImagePanel"
"fieldName" "CTPlayerArea"
"xpos" "c-286"
"ypos" "c-105"
"zpos" "10"
"wide" "283"
"tall" "210"
"visible" "0"
"fillcolor" "222 222 222 190"
}
"TPlayerArea"
{
"ControlName" "ImagePanel"
"fieldName" "TPlayerArea"
"xpos" "c+4"
"ypos" "c-105"
"zpos" "10"
"wide" "283"
"tall" "210"
"visible" "0"
"fillcolor" "0 222 222 190"
}
"CTPlayerAvatar0"
{
"ControlName" "ImagePanel"
"fieldName" "CTPlayerAvatar0"
"xpos" "c-289"
"ypos" "c-99"
"zpos" "10"
"wide" "10"
"tall" "10"
"visible" "0"
"fillcolor" "222 0 0 64"
}
"CTPlayerClan0"
{
"ControlName" "ImagePanel"
"fieldName" "CTPlayerClan0"
"xpos" "c-274"
"ypos" "c-99"
"zpos" "10"
"wide" "45"
"tall" "10"
"visible" "0"
"fillcolor" "0 222 0 64"
}
"CTPlayerName0"
{
"ControlName" "ImagePanel"
"fieldName" "CTPlayerName0"
"xpos" "c-228"
"ypos" "c-99"
"zpos" "10"
"wide" "135"
"tall" "10"
"visible" "0"
"fillcolor" "0 222 0 64"
}
"CTPlayerStatus0"
{
"ControlName" "ImagePanel"
"fieldName" "CTPlayerStatus0"
"xpos" "c-104"
"ypos" "c-99"
"zpos" "10"
"wide" "10"
"tall" "10"
"visible" "0"
"fillcolor" "222 0 0 64"
}
"CTPlayerScore0"
{
"ControlName" "ImagePanel"
"fieldName" "CTPlayerScore0"
"xpos" "c-95"
"ypos" "c-99"
"zpos" "10"
"wide" "30"
"tall" "10"
"visible" "0"
"fillcolor" "0 222 0 64"
}
"CTPlayerDeaths0"
{
"ControlName" "ImagePanel"
"fieldName" "CTPlayerDeaths0"
"xpos" "c-70"
"ypos" "c-99"
"zpos" "10"
"wide" "37"
"tall" "10"
"visible" "0"
"fillcolor" "222 0 0 64"
}
"CTPlayerLatency0"
{
"ControlName" "ImagePanel"
"fieldName" "CTPlayerLatency0"
"xpos" "c-38"
"ypos" "c-99"
"zpos" "10"
"wide" "31"
"tall" "10"
"visible" "0"
"fillcolor" "0 222 0 64"
}
"TPlayerAvatar0"
{
"ControlName" "ImagePanel"
"fieldName" "TPlayerAvatar0"
"xpos" "c+5"
"ypos" "c-99"
"zpos" "10"
"wide" "10"
"tall" "10"
"visible" "0"
"fillcolor" "222 0 0 64"
}
"TPlayerClan0"
{
"ControlName" "ImagePanel"
"fieldName" "TPlayerClan0"
"xpos" "c+20"
"ypos" "c-99"
"zpos" "10"
"wide" "45"
"tall" "10"
"visible" "0"
"fillcolor" "0 222 0 64"
}
"TPlayerName0"
{
"ControlName" "ImagePanel"
"fieldName" "TPlayerName0"
"xpos" "c+67"
"ypos" "c-99"
"zpos" "10"
"wide" "135"
"tall" "10"
"visible" "0"
"fillcolor" "0 222 0 64"
}
"TPlayerStatus0"
{
"ControlName" "ImagePanel"
"fieldName" "TPlayerStatus0"
"xpos" "c+191"
"ypos" "c-99"
"zpos" "10"
"wide" "10"
"tall" "10"
"visible" "0"
"fillcolor" "222 0 0 64"
}
"TPlayerScore0"
{
"ControlName" "ImagePanel"
"fieldName" "TPlayerScore0"
"xpos" "c+199"
"ypos" "c-99"
"zpos" "10"
"wide" "30"
"tall" "10"
"visible" "0"
"fillcolor" "0 222 0 64"
}
"TPlayerDeaths0"
{
"ControlName" "ImagePanel"
"fieldName" "TPlayerDeaths0"
"xpos" "c+224"
"ypos" "c-99"
"zpos" "10"
"wide" "37"
"tall" "10"
"visible" "0"
"fillcolor" "222 0 0 64"
}
"TPlayerLatency0"
{
"ControlName" "ImagePanel"
"fieldName" "TPlayerLatency0"
"xpos" "c+258"
"ypos" "c-99"
"zpos" "10"
"wide" "30"
"tall" "10"
"visible" "0"
"fillcolor" "0 222 0 64"
}
"Spectators"
{
"ControlName" "Label"
"fieldName" "Spectators"
"labelText" "%spectators%"
"textAlignment" "west"
"xpos" "c-288"
"ypos" "c+77"
"zpos" "90"
"wide" "485"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"font" "ScoreboardHeader"
"fgcolor_override" "255 255 255 255"
}
"SourceTV"
{
"ControlName" "Label"
"fieldName" "SourceTV"
"labelText" "%sourcetv%"
"textAlignment" "east"
"xpos" "c+208"
"ypos" "c+77"
"zpos" "90"
"wide" "80"
"tall" "15"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"font" "ScoreboardHeader"
"fgcolor_override" "255 255 255 255"
}
}

View File

@ -0,0 +1,308 @@
// ______________________
//___________.( h0lmGUI™v4.1 by h0lm ).___________
//¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
"Resource/UI/TeamMenu.res"
{
"team"
{
"ControlName" "CTeamMenu"
"fieldName" "team"
"xpos" "0"
"ypos" "0"
"wide" "640"
"tall" "480"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
}
"SysMenu"
{
"ControlName" "Menu"
"fieldName" "SysMenu"
"xpos" "0"
"ypos" "0"
"wide" "64"
"tall" "24"
"autoResize" "0"
"pinCorner" "0"
"visible" "0"
"enabled" "0"
"tabPosition" "0"
}
"MapInfo"
{
"ControlName" "RichText"
"fieldName" "MapInfo"
"xpos" "10000" //"244"
"ypos" "10000" //"116"
"wide" "10" //"316"
"tall" "10" //"286"
"autoResize" "0"
"pinCorner" "0"
"visible" "0"
"enabled" "0"
"tabPosition" "0"
}
"joinTeam"
{
"ControlName" "Label"
"fieldName" "joinTeam"
"xpos" "76"
"ypos" "22"
"wide" "450"
"tall" "48"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "#Cstrike_Join_Team"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"font" "MenuTitle"
"fgcolor_override" "255 255 255 0"
}
"mapname"
{
"ControlName" "Label"
"fieldName" "mapname"
"xpos" "244"
"ypos" "72"
"wide" "180"
"tall" "24"
"autoResize" "0"
"pinCorner" "0"
"visible" "0"
"enabled" "1"
"labelText" ""
"textAlignment" "west"
"dulltext" "0"
"brighttext" "1"
}
"Backgroundz"
{
"ControlName" "ImagePanel"
"fieldName" "Backgroundz"
"xpos" "115"
"ypos" "c-134"
"zpos" "0"
"wide" "411"
"tall" "40"
"visible" "1"
"fillcolor" "0 0 0 196"
}
"Backgroundx"
{
"ControlName" "ImagePanel"
"fieldName" "Backgroundx"
"xpos" "115"
"ypos" "c-91"
"zpos" "0"
"wide" "411"
"tall" "227"
"visible" "1"
"fillcolor" "0 0 0 196"
}
"HeadlineZ"
{
"ControlName" "Label"
"fieldName" "HeadlineZ"
"xpos" "127"
"ypos" "c-124"
"wide" "200"
"tall" "20"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "PICK A TEAM"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"font" "TeamMenuHeadLine"
"fgcolor_override" "255 255 255 255"
//"bgcolor_override" "200 200 200 100"
}
"LOLmlogo"
{
"ControlName" "Label"
"fieldName" "LOLmlogo"
"xpos" "428"
"ypos" "c-124"
"wide" "200"
"tall" "20"
"autoResize" "0"
"pinCorner" "0"
"visible" "1"
"enabled" "1"
"labelText" "COUN"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"font" "MenuLogogo"
"fgcolor_override" "255 255 255 20"
}
"terbuttonbg"
{
"ControlName" "ImagePanel"
"fieldName" "terbuttonbg"
"xpos" "145"
"ypos" "c-66"
"wide" "160"
"tall" "22"
"visible" "1"
"fillcolor" "102 0 0 128"
}
"terbutton"
{
"ControlName" "Button"
"fieldName" "terbutton"
"xpos" "145"
"ypos" "c-66"
"wide" "160"
"tall" "22"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "3"
"labelText" "&1 TERRORIST-FACTION"
"textAlignment" "center"
"dulltext" "0"
"brighttext" "0"
"command" "jointeam 2"
"Font" "TeamMenuOption"
}
"ctbuttonbg"
{
"ControlName" "ImagePanel"
"fieldName" "ctbuttonbg"
"xpos" "336"
"ypos" "c-66"
"wide" "175"
"tall" "22"
"visible" "1"
"fillcolor" "0 39 102 128"
}
"ctbutton"
{
"ControlName" "Button"
"fieldName" "ctbutton"
"xpos" "336"
"ypos" "c-66"
"wide" "175"
"tall" "22"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "4"
"labelText" "&2 COUNTER-TERRORISTS"
"textAlignment" "center"
"dulltext" "0"
"brighttext" "0"
"command" "jointeam 3"
"Font" "TeamMenuOption"
}
"vipbutton"
{
"ControlName" "Button"
"fieldName" "vipbutton"
"xpos" "76"
"ypos" "180"
"wide" "148"
"tall" "20"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "5"
"labelText" "#Cstrike_VIP"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "jointeam 3"
}
"autobutton"
{
"ControlName" "Button"
"fieldName" "autobutton"
"xpos" "228"
"ypos" "c-26"
"wide" "78"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "1"
"labelText" "&5 AUTO-SIGN"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "jointeam 0"
"Default" "1"
"Font" "TeamMenuOption2"
}
"specbutton"
{
"ControlName" "Button"
"fieldName" "specbutton"
"xpos" "336"
"ypos" "c-26"
"wide" "71"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "2"
"labelText" "&6 SPECTATE"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"command" "jointeam 1"
"Font" "TeamMenuOption2"
}
"LinweBor"
{
"ControlName" "ImagePanel"
"fieldName" "LinweBor"
"xpos" "144"
"ypos" "c+13"
"zpos" "0"
"wide" "354"
"tall" "2"
"visible" "1"
"fillcolor" "0 0 0 100"
}
"CancelButton"
{
"ControlName" "Button"
"fieldName" "CancelButton"
"xpos" "447"
"ypos" "c+107"
"wide" "64"
"tall" "18"
"autoResize" "0"
"pinCorner" "2"
"visible" "1"
"enabled" "1"
"tabPosition" "0"
"labelText" "&0 CANCEL"
"textAlignment" "west"
"dulltext" "0"
"brighttext" "0"
"Command" "vguicancel"
"Font" "TeamMenuOption2"
}
}
//________________________________________________
//¯¯¯¯¯¯¯¯¯¯¯'( h0lmGUI™v4.1 by h0lm )'¯¯¯¯¯¯¯¯¯¯¯
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

View File

@ -0,0 +1,346 @@
// sample animation script
//
//
// commands:
// Animate <panel name> <variable> <target value> <interpolator> <start time> <duration>
// variables:
// FgColor
// BgColor
// Position
// Size
// Blur (hud panels only)
// TextColor (hud panels only)
// Ammo2Color (hud panels only)
// Alpha (hud weapon selection only)
// SelectionAlpha (hud weapon selection only)
// TextScan (hud weapon selection only)
//
// interpolator:
// Linear
// Accel - starts moving slow, ends fast
// Deaccel - starts moving fast, ends slow
// Spline - simple ease in/out curve
// Pulse - < freq > over the duration, the value is pulsed (cosine) freq times ending at the dest value (assuming freq is integral)
// Flicker - < randomness factor 0.0 to 1.0 > over duration, each frame if random # is less than factor, use end value, otherwise use prev value
//
// RunEvent <event name> <start time>
// starts another even running at the specified time
//
// StopEvent <event name> <start time>
// stops another event that is current running at the specified time
//
// StopAnimation <panel name> <variable> <start time>
// stops all animations refering to the specified variable in the specified panel
//
// StopPanelAnimations <panel name> <start time>
// stops all active animations operating on the specified panel
//
// SetFont <panel name> <fontparameter> <fontname from scheme> <set time>
//
// SetTexture <panel name> <textureidname> <texturefilename> <set time>
//
// SetString <panel name> <string varname> <stringvalue> <set time>
event LevelInit
{
}
event OpenWeaponSelectionMenu
{
StopEvent CloseWeaponSelectionMenu 0.0
StopEvent WeaponPickup 0.0
// make the display visible
Animate HudWeaponSelection Alpha "128" Linear 0.0 0.1
Animate HudWeaponSelection SelectionAlpha "255" Linear 0.0 0.1
Animate HudWeaponSelection FgColor "FgColor" Linear 0.0 0.1
//Animate HudWeaponSelection TextColor "BrightFg" Linear 0.0 0.1
Animate HudWeaponSelection TextScan "1" Linear 0.0 0.1
}
event CloseWeaponSelectionMenu
{
StopEvent CloseWeaponSelectionMenu 0.0
StopEvent WeaponPickup 0.0
// make the display visible
Animate HudWeaponSelection Alpha "128" Linear 0.0 0.1
Animate HudWeaponSelection SelectionAlpha "255" Linear 0.0 0.1
Animate HudWeaponSelection FgColor "FgColor" Linear 0.0 0.1
//Animate HudWeaponSelection TextColor "BrightFg" Linear 0.0 0.1
Animate HudWeaponSelection TextScan "1" Linear 0.0 0.1
}
event MenuOpen
{
StopEvent MenuClose 0.0
// fade in
Animate HudMenu Alpha "255" Linear 0.0 0.1
Animate HudMenu SelectionAlpha "255" Linear 0.0 0.1
Animate HudMenu FgColor "FgColor" Linear 0.0 0.1
Animate HudMenu MenuColor "MenuColor" Linear 0.0 0.1
Animate HudMenu ItemColor "ItemColor" Linear 0.0 0.1
Animate HudMenu TextScan "1" Linear 0.0 0.1
// Undo any blur
Animate HudMenu Blur "1" Linear 0.0 0.01
}
event MenuClose
{
// Hide it
Animate HudMenu Alpha "0" Linear 0.0 1
Animate HudMenu SelectionAlpha "0" Linear 0.0 1
Animate HudMenu FgColor "0 0 0 0" Linear 0.0 1
Animate HudMenu MenuColor "0 0 0 0" Linear 0.0 1
Animate HudMenu ItemColor "0 0 0 0" Linear 0.0 1
}
event MenuPulse
{
Animate HudMenu Blur "7" Linear 0.0 0.1
Animate HudMenu Blur "2" Deaccel 0.1 0.1
Animate HudMenu Blur "7" Linear 0.2 0.1
Animate HudMenu Blur "2" Deaccel 0.3 0.1
Animate HudMenu Blur "7" Linear 0.4 0.1
Animate HudMenu Blur "2" Deaccel 0.5 0.1
Animate HudMenu Blur "1" Deaccel 0.6 0.4
}
event TimerIncrement
{
Animate HudTimer Blur "7" Linear 0.0 0.1
Animate HudTimer Blur "2" Deaccel 0.1 0.8
Animate HudTimer Blur "0" Deaccel 1.1 1.5
}
event TimerDecrement
{
Animate HudTimer Blur "7" Linear 0.0 0.1
Animate HudTimer Blur "2" Deaccel 0.1 0.8
Animate HudTimer Blur "0" Deaccel 1.1 1.5
}
event ResourceIncrement
{
Animate HudResources Blur "3" Linear 0.0 0.0
Animate HudResources PulseAmount "0" Linear 0.0 0.01
Animate HudResources Blur "1" Deaccel 0.1 1.5
Animate HudResources PulseAmount "1" Linear 0.1 2
Animate HudResources PulseAmount "0" Linear 2 2
}
event ResourceDecrement
{
Animate HudResources Blur "7" Linear 0.0 0.0
Animate HudResources PulseAmount "0" Linear 0.0 0.01
Animate HudResources Blur "1" Deaccel 0.1 1.5
Animate HudResources PulseAmount "1" Linear 0.1 2
Animate HudResources PulseAmount "0" Linear 2 2
}
event ResourcePickup
{
Animate HudResourcesPickup Alpha "255" Linear 0 0
Animate HudResourcesPickup Position "80 r40" Linear 0 0
Animate HudResourcesPickup Position "80 r120" Deaccel 0 1
Animate HudResourcesPickup Blur "7" Deaccel 0 0.2
Animate HudResourcesPickup Alpha "0" Deaccel .8 0.2
Animate HudResourcesPickup Blur "1" Deaccel 0.2 0.3
}
event PrimaryAmmoIncrement
{
}
event PrimaryAmmoDecrement
{
Animate HudAmmoPrimary FgColor "HudIcon_Red" Linear 0.0 0.0001
Animate HudAmmoPrimary FgColor "FgColor" Accel 0.0 3.0
}
event PrimaryAmmoEmpty
{
}
event SecondaryAmmoIncrement
{
}
event SecondaryAmmoDecrement
{
Animate HudAmmoPrimary FgColor "HudIcon_Red" Linear 0.0 0.0001
Animate HudAmmoPrimary FgColor "FgColor" Accel 0.0 3.0
}
event SecondaryAmmoEmpty
{
}
event ShowPrimaryAmmoClipShowSecondaryAmmo
{
// Turn on secondary
Animate HudAmmoSecondary Alpha "255" Linear 0.0 0.4
// Turn on secondary
Animate HudAmmoPrimaryClip Alpha "255" Linear 0.0 0.4
// Move primary to left
// Animate HudAmmoPrimary Position "r125 400" Deaccel 0.0 0.4
// Animate HudAmmoPrimaryClip Position "r55 400" Deaccel 0.0 0.4
}
event ShowPrimaryAmmoClipHideSecondaryAmmo
{
// Turn off secondary
Animate HudAmmoSecondary Alpha "0" Linear 0.0 0.4
// Turn on secondary
Animate HudAmmoPrimaryClip Alpha "255" Linear 0.0 0.4
// Move primary to left
// Animate HudAmmoPrimary Position "r100 400" Deaccel 0.0 0.4
// Animate HudAmmoPrimaryClip Position "r30 400" Deaccel 0.0 0.4
}
event HidePrimaryAmmoClipShowSecondaryAmmo
{
// Turn on secondary
Animate HudAmmoSecondary Alpha "255" Linear 0.0 0.4
// Turn off secondary
Animate HudAmmoPrimaryClip Alpha "0" Linear 0.0 0.4
// Move primary to left
// Animate HudAmmoPrimary Position "100 400" Deaccel 0.0 0.4
// Animate HudAmmoPrimaryClip Position "r30 400" Deaccel 0.0 0.4
}
event HidePrimaryAmmoClipHideSecondaryAmmo
{
// Turn off secondary
Animate HudAmmoSecondary Alpha "0" Linear 0.0 0.4
// Turn off secondary
Animate HudAmmoPrimaryClip Alpha "0" Linear 0.0 0.4
// Move primary to left
// Animate HudAmmoPrimary Position "r70 400" Deaccel 0.0 0.4
// Animate HudAmmoPrimaryClip Position "r30 400" Deaccel 0.0 0.4
}
//activecolor - instantly turn red, fade back to yellow
event AccountMoneyRemoved
{
Animate HudAccount FgColor "HudIcon_Red" Linear 0.0 0.0001
Animate HudAccount FgColor "toxicHUD" Accel 0.0 3.0
Animate HudAccount Ammo2Color "HudIcon_Red" Linear 0.0 0.0001
Animate HudAccount Ammo2Color "0 0 0 0" Accel 0.0 3.0
}
//activecolor - instantly turn green, fade back to yellow
event AccountMoneyAdded
{
Animate HudAccount FgColor "HudIcon_Green" Linear 0.0 0.0001
Animate HudAccount FgColor "toxicHUD" Accel 0.0 3.0
Animate HudAccount Ammo2Color "HudIcon_Green" Accel 0.0 0.0001
Animate HudAccount Ammo2Color "0 0 0 0" Accel 0.0 3.0
}
event AccountMoneyInvisible
{
Animate HudAccount FgColor "toxicHUD" Accel 0.0 0.0001
Animate HudAccount Ammo2Color "0 0 0 0" Accel 0.0 0.0001
}
event HealthRestored
{
StopPanelAnimations HudHealth 0.0
Animate HudHealth FgColor "toxicHealth" Linear 0.0 0.01
Animate HudHealth Blur "7" Deaccel 0.0 0.2
Animate HudHealth Blur "1" Deaccel 0.2 1.0
}
event HealthTookDamage
{
Animate HudHealth FgColor "HudIcon_Red" Linear 0.0 0.1
Animate HudHealth FgColor "toxicHealth" Pulse 4 0.1 1.0
Animate HudHealth Blur "7" Deaccel 0.0 0.2
Animate HudHealth Blur "1" Deaccel 0.2 0.3
}
event HealthLow
{
Animate HudHealth FgColor "HudIcon_Red" Linear 0.0 0.1
Animate HudHealth FgColor "toxicHealth" Pulse 2000 0.1 1000.0
}
event HintMessageShow
{
// show the hints
Animate HudHintDisplay Alpha 255 Linear 0.0 0.5
Animate HudHintDisplay FgColor "HintMessageFg" Linear 0.0 0.01
// hide the panel after a while
Animate HudHintDisplay Alpha 0 Linear 6.0 1.0
}
event HintMessageHide
{
Animate HudHintDisplay Alpha 0 Linear 0.0 0.5
}
event HintMessageLower
{
Animate HudHintDisplay YOffset "60" Deaccel 0.0 0.01
}
event HintMessageRaise
{
Animate HudHintDisplay YOffset "0" Deaccel 0.0 0.4
}
event KeyHintMessageShow
{
// show the hints
Animate HudHintKeyDisplay Alpha 255 Linear 0.0 0.5
Animate HudHintKeyDisplay FgColor "HintMessageFg" Linear 0.0 0.01
// hide the panel after a while
Animate HudHintKeyDisplay Alpha 0 Linear 6.0 1.0
}
event KeyHintMessageHide
{
Animate HudHintKeyDisplay Alpha 0 Linear 0.0 0.5
}
event MapOff
{
Animate overview Position "0 0" Linear 0.0 0.001
Animate overview Size "0 0" Linear 0.0 0.001
}
event MapZoomToSmall
{
Animate overview Position "16 16" Linear 0.0 0.2
Animate overview Size "160 120" Linear 0.0 0.2
StopAnimation overview zoom 0.0
Animate overview zoom "1.0" Linear 0.0 0.0001
Animate overview zoom "3.0" Spline 0.0001 1.0
}
event MapZoomToLarge
{
Animate overview Position "c-300 20" Linear 0.0 0.2
Animate overview Size "600 440" Linear 0.0 0.2
StopAnimation overview zoom 0.0
Animate overview zoom "1.0" Spline 0.0 0.2
}

View File

@ -0,0 +1,796 @@
"Resource/HudLayout.res"
{
HudHealth
{
"fieldName" "HudHealth"
"xpos" "8"
"ypos" "22446"
"zpos" "0"
"wide" "80"
"tall" "25"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"bgcolor_override" "0 0 0 96"
"icon_xpos" "8"
"icon_ypos" "-4"
"digit_xpos" "35"
"digit_ypos" "-4"
"LowHealthColor" "HudIcon_Red"
}
HudArmor
{
"fieldName" "HudArmor"
"xpos" "22148"
"ypos" "22446"
"zpos" "1"
"wide" "80"
"tall" "25"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"bgcolor_override" "0 0 0 96"
"icon_xpos" "8"
"icon_ypos" "-4"
"digit_xpos" "34"
"digit_ypos" "-4"
}
HudRoundTimer
{
"fieldName" "HudRoundTimer"
"xpos" "c-2228"
"ypos" "4446"
"zpos" "1"
"wide" "98"
"tall" "25"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"bgcolor_override" "0 0 0 96"
"FlashColor" "HudIcon_Red"
"icon_xpos" "8"
"icon_ypos" "-4"
"digit_xpos" "42"
"digit_ypos" "-4"
}
HudAmmo
{
"fieldName" "HudAmmo"
"xpos" "r222157"
"ypos" "446"
"zpos" "1"
"wide" "142"
"tall" "25"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"bgcolor_override" "0 0 0 96"
"digit_xpos" "8"
"digit_ypos" "-4"
"digit2_xpos" "63"
"digit2_ypos" "-4"
"bar_xpos" "53"
"bar_ypos" "3"
"bar_height" "20"
"bar_width" "2"
"icon_xpos" "110"
"icon_ypos" "2"
}
HudAccount
{
"fieldName" "HudAccount"
"xpos" "r22123"
"ypos" "394"
"wide" "108"
"tall" "45"
"visible" "0"
"enabled" "0"
"PaintBackgroundType" "2"
// "bgcolor_override" "0 0 0 96"
"icon_xpos" "2229"
"icon_ypos" "2126"
"digit_xpos" "2100"
"digit_ypos" "22216"
"icon2_xpos" "229"
"icon2_ypos" "-4"
"digit2_xpos" "2100"
"digit2_ypos" "-4"
}
overview
{
"fieldname" "overview"
"visible" "1"
"enabled" "1"
"xpos" "0"
"ypos" "22480"
"wide" "0"
"tall" "0"
}
HudCommentary
{
"fieldName" "HudCommentary"
"xpos" "c-22190"
"ypos" "350"
"wide" "380"
"tall" "40"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"bar_xpos" "50"
"bar_ypos" "20"
"bar_height" "8"
"bar_width" "320"
"speaker_xpos" "50"
"speaker_ypos" "8"
"count_xpos_from_right" "10" // Counts from the right side
"count_ypos" "8"
"icon_texture" "vgui/hud/icon_commentary"
"icon_xpos" "0"
"icon_ypos" "0"
"icon_width" "40"
"icon_height" "40"
}
HudHDRDemo
{
"fieldName" "HudHDRDemo"
"xpos" "0"
"ypos" "0"
"wide" "640"
"tall" "480"
"visible" "0"
"enabled" "1"
"Alpha" "255"
"PaintBackgroundType" "2"
"BorderColor" "0 0 0 255"
"BorderLeft" "16"
"BorderRight" "16"
"BorderTop" "16"
"BorderBottom" "64"
"BorderCenter" "0"
"TextColor" "255 255 255 255"
"LeftTitleY" "422"
"RightTitleY" "422"
}
TargetID
{
"fieldName" "TargetID"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudSuit
{
"fieldName" "HudSuit"
"xpos" "22140"
"ypos" "22432"
"wide" "108"
"tall" "36"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"text_xpos" "8"
"text_ypos" "20"
"digit_xpos" "50"
"digit_ypos" "2"
}
HudProgressBar
{
"fieldName" "HudProgressBar"
"xpos" "c-150"
"ypos" "300"
"wide" "300"
"tall" "15"
"visible" "1"
"enabled" "1"
"BorderThickness" "1"
"PaintBackgroundType" "2"
}
HudShoppingCart
{
"fieldName" "HudShoppingCart"
"xpos" "2264"
"ypos" "22240"
"wide" "40"
"tall" "40"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"IconColor" "HudIcon_Green"
}
HudC4
{
"fieldName" "HudC4"
"xpos" "16"
"ypos" "240"
"wide" "40"
"tall" "40"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"IconColor" "HudIcon_Green"
"FlashColor" "HudIcon_Red"
}
HudDefuser
{
"fieldName" "HudDefuser"
"xpos" "16"
"ypos" "240"
"wide" "40"
"tall" "40"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"IconColor" "HudIcon_Green"
}
HudHostageRescueZone
{
"fieldName" "HudHostageRescueZone"
"xpos" "16"
"ypos" "240"
"wide" "40"
"tall" "40"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"IconColor" "HudIcon_Green"
"FlashColor" "HudIcon_Red"
}
HudScenarioIcon
{
"fieldName" "HudScenarioIcon"
"xpos" "c110"
"ypos" "443"
"wide" "40"
"tall" "44"
"visible" "1"
"enabled" "1"
"PaintBackgroundType" "2"
"IconColor" "Hostage_Yellow"
}
HudFlashlight
{
"fieldName" "HudFlashlight"
"visible" "1"
"enabled" "1"
"xpos" "16"
"ypos" "370"
"wide" "102"
"tall" "20"
"text_xpos" "8"
"text_ypos" "6"
"TextColor" "255 170 0 220"
"PaintBackgroundType" "2"
}
HudDamageIndicator
{
"fieldName" "HudDamageIndicator"
"visible" "1"
"enabled" "1"
"DmgColorLeft" "255 0 0 0"
"DmgColorRight" "255 0 0 0"
"dmg_xpos" "30"
"dmg_ypos" "100"
"dmg_wide" "36"
"dmg_tall1" "240"
"dmg_tall2" "200"
}
HudZoom
{
"fieldName" "HudZoom"
"visible" "1"
"enabled" "1"
"Circle1Radius" "66"
"Circle2Radius" "74"
"DashGap" "16"
"DashHeight" "4"
"BorderThickness" "88"
}
HudWeaponSelection
{
"fieldName" "HudWeaponSelection"
"xpos" "r640"
"wide" "640"
"ypos" "16"
"visible" "1"
"enabled" "1"
"SmallBoxSize" "60"
"LargeBoxWide" "108"
"LargeBoxTall" "80"
"BoxGap" "8"
"SelectionNumberXPos" "4"
"SelectionNumberYPos" "4"
"SelectionGrowTime" "0.4"
"IconXPos" "8"
"IconYPos" "0"
"TextYPos" "68"
"TextColor" "SelectionTextFg"
"MaxSlots" "5"
"PlaySelectSounds" "0"
}
HudCrosshair
{
"fieldName" "HudCrosshair"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudDeathNotice
{
"fieldName" "HudDeathNotice"
"visible" "1"
"enabled" "1"
"xpos" "r640"
"ypos" "12"
"wide" "628"
"tall" "468"
"MaxDeathNotices" "4"
"LineHeight" "22"
"RightJustify" "1" // If 1, draw notices from the right
"TextFont" "Default"
"CTTextColor" "CT_Blue"
"TerroristTextColor" "T_Red"
}
HudVehicle
{
"fieldName" "HudVehicle"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
CVProfPanel
{
"fieldName" "CVProfPanel"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
ScorePanel
{
"fieldName" "ScorePanel"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudTrain
{
"fieldName" "HudTrain"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudMOTD
{
"fieldName" "HudMOTD"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudMessage
{
"fieldName" "HudMessage"
"visible" "1"
"enabled" "1"
"wide" "f0"
"tall" "480"
}
HudMenu
{
"fieldName" "HudMenu"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
"zpos" "1"
"TextFont" "Default"
"ItemFont" "Default"
"ItemFontPulsing" "Default"
}
HudCloseCaption
{
"fieldName" "HudCloseCaption"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudHistoryResource
{
"fieldName" "HudHistoryResource"
"visible" "1"
"enabled" "1"
"xpos" "r640"
"wide" "640"
"tall" "350"
"history_gap" "50"
}
HudGeiger
{
"fieldName" "HudGeiger"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HUDQuickInfo
{
"fieldName" "HUDQuickInfo"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudWeapon
{
"fieldName" "HudWeapon"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudAnimationInfo
{
"fieldName" "HudAnimationInfo"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
CBudgetPanel
{
"fieldName" "CBudgetPanel"
"visible" "0"
"enabled" "0"
"wide" "640"
"tall" "480"
}
CTextureBudgetPanel
{
"fieldName" "CTextureBudgetPanel"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudPredictionDump
{
"fieldName" "HudPredictionDump"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudRadar
{
"fieldName" "HudRadar"
"visible" "1"
"enabled" "1"
"xpos" "22216"
"ypos" "22216"
"wide" "96"
"tall" "96"
}
HudLocation
{
"fieldName" "HudLocation"
"visible" "1"
"enabled" "1"
"xpos" "16"
"ypos" "112"
"wide" "96"
"tall" "16"
"textAlignment" "north"
}
HudScope
{
"fieldName" "HudZoom"
"visible" "1"
"enabled" "1"
"wide" "640"
"tall" "480"
}
HudVoiceSelfStatus
{
"fieldName" "HudVoiceSelfStatus"
"visible" "1"
"enabled" "1"
"xpos" "r34"
"ypos" "355"
"wide" "24"
"tall" "24"
}
HudVoiceStatus
{
"fieldName" "HudVoiceStatus"
"visible" "1"
"enabled" "1"
"xpos" "r200"
"ypos" "0"
"wide" "200"
"tall" "400"
"item_tall" "16"
"item_wide" "195"
"item_spacing" "2"
"show_avatar" "1"
"show_friend" "1"
"show_voice_icon" "0"
"show_dead_icon" "1"
"dead_xpos" "0"
"dead_ypos" "0"
"dead_wide" "16"
"dead_tall" "16"
"avatar_xpos" "14"
"avatar_ypos" "0"
"avatar_wide" "16"
"avatar_tall" "16"
"text_xpos" "42"
"fade_in_time" "0.07"
"fade_out_time" "1.0"
}
HudFlashbang
{
}
HudHintDisplay
{
"fieldName" "HudHintDisplay"
"visible" "0"
"enabled" "1"
"xpos" "c-240"
"ypos" "c110"
"wide" "480"
"tall" "100"
"text_xpos" "8"
"text_ypos" "8"
"center_x" "0" // center text horizontally
"center_y" "-1" // align text on the bottom
"HintSize" "1"
}
HudHintKeyDisplay
{
"fieldName" "HudHintKeyDisplay"
"visible" "0"
"enabled" "1"
"xpos" "r120"
"ypos" "r340"
"wide" "100"
"tall" "200"
"text_xpos" "8"
"text_ypos" "8"
"text_xgap" "8"
"text_ygap" "8"
"TextColor" "255 170 0 220"
"PaintBackgroundType" "2"
}
HudTerritory
{
"fieldName" "HudTerritory"
"visible" "1"
"enabled" "1"
"xpos" "240"
"ypos" "432"
"wide" "240"
"tall" "48"
}
TerritorySCore
{
"fieldName" "TerritoryScore"
"visible" "0"
"enabled" "0"
"xpos" "240"
"ypos" "450"
"wide" "200"
"tall" "200"
"text_xpos" "8"
"text_ypos" "4"
}
"HudChat"
{
"ControlName" "EditablePanel"
"fieldName" "HudChat"
"visible" "1"
"enabled" "1"
"xpos" "0" [$WIN32]
"xpos" "0" [$X360]
"ypos" "0"
"wide" "f0"
"tall" "f0"
"PaintBackgroundType" "0"
"bgcolor_override" "0 0 0 0"
}
WinPanel_Round
{
"fieldName" "WinPanel_Round"
"visible" "1"
"enabled" "1"
"xpos" "c-110"
"ypos" "287"
"zpos" "0"
"wide" "220"
"tall" "138"
"PaintBackgroundType" "2"
}
WinPanel_Match
{
"fieldName" "WinPanel_Match"
"visible" "1"
"enabled" "1"
"xpos" "c-150"
"ypos" "c-175"
"wide" "300"
"tall" "350"
"PaintBackgroundType" "2"
}
FreezePanel
{
"fieldName" "FreezePanel"
"visible" "1"
"enabled" "1"
"xpos" "0"
"ypos" "0"
"wide" "f0"
"tall" "480"
}
FreezePanelCallout
{
"fieldName" "FreezePanelCallout"
"visible" "1"
"enabled" "1"
"xpos" "200"
"ypos" "200"
"wide" "100"
"tall" "50"
}
AchievementAnnouncePanel
{
"fieldName" "AchievementAnnouncePanel"
"visible" "1"
"enabled" "1"
"xpos" "0"
"ypos" "0"
"wide" "f0"
"tall" "480"
}
StatPanel
{
"fieldName" "StatPanel"
"visible" "0"
"enabled" "1"
}
AchievementNotificationPanel
{
"fieldName" "AchievementNotificationPanel"
"visible" "0"
"enabled" "1"
}
HUDAutoAim
{
"fieldName" "HUDAutoAim"
"visible" "0"
"enabled" "1"
}
"HudAchievementTracker"
{
"ControlName" "EditablePanel"
"fieldName" "HudAchievementTracker"
"xpos" "10"
"NormalY" "120"
"EngineerY" "170"
"zpos" "20"
"wide" "250"
"tall" "280"
"visible" "1"
"enabled" "1"
}
}

View File

@ -8,7 +8,7 @@
"path": "C:\\Users\\ntr\\code\\ntwl\\surf",
},
{
"path": "/home/ntr/ntwl/surf"
"path": "h:ome\\ntr\\ntwl\\surf",
},
],
}