mirror of
https://github.com/Ragora/TribesReplay.git
synced 2026-01-19 17:44:45 +00:00
- (bug fix) Vehicles and deployables now properly explode if they are destroyed while someone is repairing them. - (bug fix) Sniper laser shots no longer create water splash effects if hitting ground near the water. - (bug fix) Immersion iForce force feedback mouse is now working properly again. - (bug fix) The "flag jumping" bug is now fixed. When a flag lands after being dropped, it will stay put when it slides to rest. - (bug fix) Fixed a situation where closing tribe or player tags on the Browser out of order would cause a disconnect with the database server. - (bug fix) Players can no longer fire, place mines, place grenades, or place beacons when inside a force field. - (bug fix) Fixed bug where modifier keys (specifically SHIFT) bound to actions in the game would still cause those actions when typing in a text edit control in-game (such as the chat entry) - (bug fix) Fixed a bug that could cause a player to drop to desktop when attempting to join a game which was in the process of cycling missions. - (bug fix) Fixed a Radeon video card issue which could occur if the desktop color bit-depth was different than the color bit-depth that the player was using in the game. - (bug fix) You won't try to fade into a vehicle that was destroyed after you purchased it, but before you had actually tported to the seat. - (bug fix) Minor change in the MPB explosion so that the turret part of the MPB doesn't seem to hover in place for a split-second during the explosion. - (bug fix) Bomber bombs now tumble properly and won't seem to disappear when falling. - (bug fix) Fixed a rare problem that could cause a client crash while the server is resetting. - (bug fix) Fixed a problem with the ELF gun effect that was causing hangs. - (bug fix) Telnet can now be used to set passwords for PURE servers so that they can be used for match games. (command line option...see the post in T2FAQs called "How do I TELNET INTO A PURE SERVER?" for more information on how to use this ability.) - (bug fix) The "cloning" issue (where players could clone themselves by dying, going to the CC with the CC camera showing themselves, spawn, and flicker back and forth to the CC) is now fixed and no longer occurs. - (bug fix) Another "cloning" issue which occurred when the Tourney Admin would switch teams for players is fixed and no longer occurs. - (bug fix) Fixed a bug where, when a client joins a server where the client does not have the map being run on the server, the client hangs while loading. This now elegantly exits instead of hanging. - (bug fix) Fixed an issue where the last few characters of the Server Info dialog would be cut off. - (bug fix) Fixed a situation where a blank error box could occur if CD key not entered properly when creating an account. - (bug fix) Sensor rings will no longer show up on the Command Circuit if the generators are not powered. - (bug fix) There was a rare bug where, if a player was standing in a force field's position when that force field went from a depowered to powered state (in otherwords, if the gens were repaired while he stood in the FF position), then the player would be stuck forever. If this case occurs, that player will now be destroyed. - (improvement) The "redjack" icon has been removed and new network throughput graphs have been implemented to better help players troubleshoot their net settings. Additionally, a more accurate and complete set of network presets is available. (See details below under "NETWORK SETTINGS" for more information.) - (improvement) The pure server concept is now implemented. Pure servers only allow regulation scripts and maps to be run on the server (no restrictions yet on the client), thus ensuring that anyone that joins a "base" server is playing the game as it was designed by Dynamix. MODs are still easily joined, but players can be assured that a "Base" game is really a "Base" game now. (Any game with server or rules mods that is not actually named as a new MOD will be described as "variant" instead of "base" on the master server list.) NOTE: See "PURE SERVER" below for more information on this. - (improvement) Old Password is now required in order to enter a New Password when editing your account. - (improvement) Password handling is different now in order to make it more difficult for people to casually find a password on a hard drive. - (improvement) Made more room for player names to display on the Server Info box. - (improvement) Bomber and Tank now have separate energy capacitors for their turret weapons. This energy pool is completely separate from the energy pool that the thrusters and force shields use. (Gunner energy is displayed as a second bar below the regular vehicle energy and is orangish in color.) - (improvement) Vertical thrusters on air vehicles are now more efficient to enable better takeoffs from ground level. - (improvement) Changed team damage OFF to include friendly turret fire and vehicle fire. (In otherwords, if Team Damage is OFF, then turrets fire and vehicle fire will not affect friendly units.) - (improvement) Splash damage no longer falls off so dramatically with distance. You will find that area effect (explosion) weapons now are more effective within their damage area. - (improvement) While in Tournament mode, and while in observer mode at the beginning of a match (before teams have been selected), players will now be able to chat with one another. - (improvement) Added observer points to Tombstone (it previously had none). - (improvement) Grenades tossing is slightly improved. The grenades will throw farther with less time spent pressing the grenade key. (They still have the exact same minimum and maximum throwing distances, it's just easier to throw it out to max range now.) - (community) Player histories are now accurate. - (community) Preferences in the FORUMs should be fixed now so that they stay in existence. The sort is the only exception. That will reformat each time you enter the FORUM and you will need to select whichever sort your prefer at that time.
1639 lines
38 KiB
C#
1639 lines
38 KiB
C#
|
|
//--------------------------------------------------------------------------
|
|
//-------------------------------------- Cursors
|
|
//
|
|
new GuiCursor(DefaultCursor)
|
|
{
|
|
hotSpot = "1 1";
|
|
bitmapName = "gui/CUR_3darrow";
|
|
};
|
|
|
|
new GuiCursor(ArrowNoCursor)
|
|
{
|
|
hotSpot = "1 1";
|
|
bitmapName = "gui/CUR_3darrowno";
|
|
};
|
|
|
|
new GuiCursor(ArrowWaitCursor)
|
|
{
|
|
hotSpot = "1 1";
|
|
bitmapName = "gui/CUR_3darrowwait";
|
|
};
|
|
|
|
new GuiCursor(ArrowHelpCursor)
|
|
{
|
|
hotSpot = "1 1";
|
|
bitmapName = "gui/CUR_3darrowhelp";
|
|
};
|
|
|
|
new GuiCursor(MoveCursor)
|
|
{
|
|
hotSpot = "11 11";
|
|
bitmapName = "gui/CUR_3dmove";
|
|
};
|
|
|
|
new GuiCursor(UpDownCursor)
|
|
{
|
|
hotSpot = "5 10";
|
|
bitmapName = "gui/CUR_3dupdown";
|
|
};
|
|
|
|
new GuiCursor(LeftRightCursor)
|
|
{
|
|
hotSpot = "9 5";
|
|
bitmapName = "gui/CUR_3dleftright";
|
|
};
|
|
|
|
new GuiCursor(DiagRightCursor)
|
|
{
|
|
hotSpot = "8 8";
|
|
bitmapName = "gui/CUR_3ddiagright";
|
|
};
|
|
|
|
new GuiCursor(DiagLeftCursor)
|
|
{
|
|
hotSpot = "8 8";
|
|
bitmapName = "gui/CUR_3ddiagleft";
|
|
};
|
|
|
|
new GuiCursor(RotateCursor)
|
|
{
|
|
hotSpot = "11 14";
|
|
bitmapName = "gui/CUR_rotate";
|
|
};
|
|
|
|
new GuiCursor(ResizeDownCursor)
|
|
{
|
|
hotSpot = "4 8";
|
|
bitmapName = "gui/CUR_3dresizeright";
|
|
};
|
|
|
|
new GuiCursor(GrabCursor)
|
|
{
|
|
hotSpot = "9 13";
|
|
bitmapName = "gui/CUR_Grab";
|
|
};
|
|
|
|
//--------------------------------------------------------------------------
|
|
//-------------------------------------- Profiles
|
|
//
|
|
new GuiControlProfile("GuiDialogProfile");
|
|
|
|
new GuiControlProfile("GuiModelessDialogProfile")
|
|
{
|
|
modal = false;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiContentProfile")
|
|
{
|
|
opaque = true;
|
|
fillColor = "255 255 255";
|
|
};
|
|
|
|
new GuiControlProfile ("clockProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 12;
|
|
fontColor = "0 255 0";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiContentProfileNoClear")
|
|
{
|
|
opaque = false;
|
|
fillColor = "255 255 255";
|
|
};
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Base font definitions:
|
|
//--------------------------------------------------------------------------
|
|
$ShellFont = "Univers";
|
|
$ShellFontSize = 16;
|
|
$ShellMediumFontSize = 18;
|
|
$ShellHeaderFont = "Sui Generis";
|
|
$ShellHeaderFontSize = 22;
|
|
$ShellButtonFont = "Univers Condensed";
|
|
$ShellButtonFontSize = 16;
|
|
$ShellLabelFont = "Univers Condensed";
|
|
$ShellLabelFontSize = 18;
|
|
$ShellBoldFont = "Univers Bold";
|
|
|
|
$ShellColorBright = "173 255 250";
|
|
$ShellColorDark = "130 190 185";
|
|
$ShellColorVeryDark = "0 117 133";
|
|
|
|
// Color coding system for Player names in the game:
|
|
$PlayerNameColor = "200 200 200";
|
|
$TribeTagColor = "220 220 20";
|
|
$SmurfNameColor = "150 150 250";
|
|
$BotNameColor = "60 220 150";
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Beginning of the "New Shell" section:
|
|
new GuiControlProfile ("ShellButtonProfile")
|
|
{
|
|
fontType = $ShellButtonFont;
|
|
fontSize = $ShellButtonFontSize;
|
|
fontColor = "8 19 6";
|
|
fontColorHL = "25 68 56";
|
|
fontColorNA = "5 5 5";
|
|
fontColorSEL = "25 68 56";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
bitmap = "gui/shll_button";
|
|
textOffset = "0 10";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellButtonNoTabProfile")
|
|
{
|
|
fontType = $ShellButtonFont;
|
|
fontSize = $ShellButtonFontSize;
|
|
fontColor = "8 19 6";
|
|
fontColorHL = "25 68 56";
|
|
fontColorNA = "5 5 5";
|
|
fontColorSEL = "25 68 56";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
bitmap = "gui/shll_button";
|
|
textOffset = "0 10";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = false;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellRadioProfile")
|
|
{
|
|
fontType = $ShellButtonFont;
|
|
fontSize = $ShellButtonFontSize;
|
|
fontColor = "8 19 6";
|
|
fontColorHL = "25 68 56";
|
|
fontColorNA = "5 5 5";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
bitmap = "gui/shll_radio";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellTabProfile")
|
|
{
|
|
fontType = $ShellButtonFont;
|
|
fontSize = $ShellButtonFontSize;
|
|
fontColor = "8 19 6";
|
|
fontColorHL = "25 68 56";
|
|
fontColorNA = "5 5 5";
|
|
fontColorSEL = "8 19 6";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
bitmap = "gui/shll_tabbutton";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("TabGroupProfile")
|
|
{
|
|
fontType = $ShellButtonFont;
|
|
fontSize = $ShellButtonFontSize;
|
|
fontColor = "8 19 6";
|
|
fontColorHL = "25 68 56";
|
|
fontColorNA = "5 5 5";
|
|
fontColorSEL = "8 19 6";
|
|
fixedExtent = true;
|
|
bitmapBase = "gui/shll_horztabbutton";
|
|
justify = "center";
|
|
textOffset = "8 0";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("LaunchTabProfile")
|
|
{
|
|
fontType = $ShellButtonFont;
|
|
fontSize = $ShellButtonFontSize;
|
|
fontColor = "60 140 140";
|
|
fontColorHL = "6 245 215";
|
|
fontColorNA = "64 64 64";
|
|
fontColorSEL = "6 245 215";
|
|
fixedExtent = true;
|
|
bitmapBase = "gui/lnch_tab";
|
|
justify = "center";
|
|
textOffset = "8 0";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellTabFrameProfile")
|
|
{
|
|
bitmapBase = "gui/shll_tabframe";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellHorzTabFrameProfile")
|
|
{
|
|
bitmapBase = "gui/shll_horztabframe";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellPopupProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "8 19 6";
|
|
fontColorHL = "25 68 56";
|
|
fontColorNA = "5 5 5";
|
|
fontColorSEL = "8 19 6";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
bitmapBase = "gui/shll_scroll";
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("NewTextEditProfile")
|
|
{
|
|
fillColorHL = $ShellColorDark;
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "60 140 140";
|
|
fontColorHL = "25 68 56";
|
|
fontColorNA = "128 128 128";
|
|
cursorColor = $ShellColorBright;
|
|
bitmap = "gui/shll_entryfield";
|
|
textOffset = "14 0";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("NewTextEditNumericProfile")
|
|
{
|
|
fillColorHL = $ShellColorDark;
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "60 140 140";
|
|
fontColorHL = "25 68 56";
|
|
fontColorNA = "128 128 128";
|
|
cursorColor = $ShellColorBright;
|
|
bitmap = "gui/shll_entryfield";
|
|
justify = "center";
|
|
textOffset = "14 0";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
numbersOnly = true;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("NewTextEditCenterProfile")
|
|
{
|
|
fillColorHL = $ShellColorDark;
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "60 140 140";
|
|
fontColorHL = "25 68 56";
|
|
fontColorNA = "128 128 128";
|
|
cursorColor = $ShellColorBright;
|
|
bitmap = "gui/shll_entryfield";
|
|
justify = "center";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("NewScrollCtrlProfile")
|
|
{
|
|
bitmapBase = "gui/shll_scroll";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellFieldProfile")
|
|
{
|
|
bitmapBase = "gui/shll_field";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellSliderProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "60 180 180";
|
|
fontColorNA = "128 128 128";
|
|
bitmapBase = "gui/shll_scroll";
|
|
canKeyFocus = true;
|
|
soundButtonOver = sButtonOver;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellTextArrayProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "60 180 180";
|
|
fontColorHL = "6 245 215";
|
|
fontColorNA = "108 108 108";
|
|
fontColorSEL = "25 68 56";
|
|
bitmapBase = "gui/shll_bar";
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellActiveTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "60 180 180";
|
|
fontColorHL = "6 245 215";
|
|
fontColorNA = "128 128 128";
|
|
fontColorSEL = "25 68 56";
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellPaneProfile")
|
|
{
|
|
fontType = $ShellHeaderFont;
|
|
fontSize = $ShellHeaderFontSize;
|
|
fontColor = "5 5 5";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
bitmapBase = "gui/shll";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellDlgPaneProfile")
|
|
{
|
|
fontType = $ShellHeaderFont;
|
|
fontSize = $ShellHeaderFontSize;
|
|
fontColor = "5 5 5";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
bitmapBase = "gui/dlg";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellWindowProfile")
|
|
{
|
|
borderColor = "3 124 134";
|
|
fontType = $ShellHeaderFont;
|
|
fontSize = $ShellHeaderFontSize;
|
|
fontColor = "5 5 5";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
bitmapBase = "gui/dlg";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellDlgProfile")
|
|
{
|
|
fontType = $ShellHeaderFont;
|
|
fontSize = $ShellHeaderFontSize;
|
|
fontColor = "5 5 5";
|
|
bitmap = "gui/dlg_box";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
};
|
|
|
|
new GuiControlProfile ("BrowserH1Profile")
|
|
{
|
|
fontType = "Univers Condensed Bold";
|
|
fontSize = 28;
|
|
fontColor = "40 247 113"; // green
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
bitmapBase = "gui/shll";
|
|
};
|
|
|
|
new GuiControlProfile ("CloseButtonProfile")
|
|
{
|
|
bitmap = "gui/shll_menuclose";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("SoundTestButtonProfile")
|
|
{
|
|
bitmap = "gui/shll_soundbutton";
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("LaunchMenuProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "6 245 215";
|
|
fontColorHL = "74 251 228";
|
|
fontColorSEL = "4 41 45";
|
|
borderColor = "84 121 125 200";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
bitmapBase = "gui/launch_btn";
|
|
textOffset = "0 19";
|
|
soundButtonDown = sLaunchMenuOpen;
|
|
soundButtonOver = sLaunchMenuOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("LaunchBtnTopProfile")
|
|
{
|
|
fixedExtent = true;
|
|
bitmapBase = "gui/launchtop_btn";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellServerBrowserProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "60 180 180";
|
|
fontColorHL = "6 245 215";
|
|
fontColorNA = "128 128 128";
|
|
fontColorSEL = "25 68 56";
|
|
fontColors[4] = "20 167 93"; // Mod base color
|
|
fontColors[5] = "40 217 113"; // Mod rollover color
|
|
fontColors[6] = "5 60 30"; // Mod selected color
|
|
fontColors[7] = "108 108 108"; // Differing build base color
|
|
fontColors[8] = "168 168 168"; // Differing build rollover color
|
|
fontColors[9] = "58 58 58"; // Differing build selected color
|
|
bitmapBase = "gui/shll_scroll";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellBrowserListProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = 12;
|
|
fontColor = "20 220 20";
|
|
fontColorHL = "60 250 60";
|
|
fontColorNA = "128 128 128";
|
|
fontColorSEL = "0 60 0";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("LobbyPlayerListProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "60 180 180";
|
|
fontColorHL = "6 245 215";
|
|
fontColorNA = "128 128 128";
|
|
fontColorSEL = "25 68 56";
|
|
fontColors[6] = $PlayerNameColor;
|
|
fontColors[7] = $TribeTagColor;
|
|
fontColors[8] = $SmurfNameColor;
|
|
fontColors[9] = $BotNameColor;
|
|
bitmapBase = "gui/shll_scroll";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellBrowserTitleProfile")
|
|
{
|
|
fontType = "Sui Generis";
|
|
fontSize = 32;
|
|
fontColor = "173 255 250";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
tab = false;
|
|
canKeyFocus = false;
|
|
};
|
|
//--------------------------------------------------------------------------
|
|
// End of "New Shell" section.
|
|
|
|
new GuiControlProfile ("ShellHoloButtonProfile")
|
|
{
|
|
opaque = true;
|
|
fillColor = $ShellColorVeryDark;
|
|
fillColorNA = "128 128 128";
|
|
border = true;
|
|
borderColor = $ShellColorBright;
|
|
borderColorHL = "127 127 127";
|
|
borderColorNA = "192 192 192";
|
|
fontType = "Univers";
|
|
fontSize = 14;
|
|
fontColor = $ShellColorBright;
|
|
fontColorHL = $ShellColorDark;
|
|
fontColorNA = "192 192 192";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("GameHoloButtonProfile")
|
|
{
|
|
opaque = true;
|
|
fillColor = "0 64 0 80";
|
|
border = true;
|
|
borderColor = "0 255 0";
|
|
borderColorHL = "127 127 127";
|
|
fontType = "Univers";
|
|
fontSize = 14;
|
|
fontColor = "0 255 0";
|
|
fontColorHL = "0 128 0";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
tab = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellHoloBox")
|
|
{
|
|
opaque = true;
|
|
fillColor = "72 72 72 128";
|
|
border = true;
|
|
borderColor = $ShellColorBright;
|
|
};
|
|
|
|
new GuiControlProfile ("TaskHudBox")
|
|
{
|
|
opaque = true;
|
|
fillColor = "72 72 72 128";
|
|
border = true;
|
|
borderColor = "30 59 56 80";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellOpaqueBox")
|
|
{
|
|
opaque = true;
|
|
fillColor = $ShellColorVeryDark;
|
|
border = true;
|
|
borderColor = $ShellColorBright;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellScrollCtrlProfile")
|
|
{
|
|
border = true;
|
|
borderColor = $ShellColorBright;
|
|
bitmap = "gui/shellScroll";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellTextProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = $ShellLabelFontSize;
|
|
fontColor = "66 229 244";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellTextRightProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = $ShellLabelFontSize;
|
|
fontColor = "66 229 244";
|
|
justify = "right";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellTextCenterProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = $ShellLabelFontSize;
|
|
fontColor = "66 229 244";
|
|
justify = "center";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("DisabledTextProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = $ShellLabelFontSize;
|
|
fontColor = "128 128 128";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("DisabledTextRightProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = $ShellLabelFontSize;
|
|
fontColor = "128 128 128";
|
|
justify = "right";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellAltTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "66 219 234";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellAltTextRightProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "66 219 234";
|
|
justify = "right";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellAltTextCenterProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "66 219 234";
|
|
justify = "center";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellStaticTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "66 219 234";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("VersionTextProfile")
|
|
{
|
|
fontType = "Univers Bold";
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = "0 0 0";
|
|
justify = "right";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("CenterPrintTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = $ShellColorBright;
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
|
|
new GuiControlProfile ("ShellEditMOTDTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "66 219 234";
|
|
fontColorHL = "25 68 56";
|
|
fillColorHL = "50 233 206";
|
|
cursorColor = "200 240 240";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellTopicTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = "100 200 200";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("BrowserFilterLabelProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = 22;
|
|
fontColor = "0 220 0";
|
|
justify = "left";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("BrowserFilterTextProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = 22;
|
|
fontColor = "66 219 234";
|
|
justify = "left";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("BrowserStatusTextProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = 22;
|
|
fontColor = "66 219 234";
|
|
justify = "right";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("BrowserProgressProfile")
|
|
{
|
|
opaque = false;
|
|
fillColor = "79 253 181 180";
|
|
border = true;
|
|
borderColor = "3 124 134";
|
|
};
|
|
|
|
new GuiControlProfile ("InfoWindowProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "66 219 234";
|
|
fontColors[6] = $PlayerNameColor;
|
|
fontColors[7] = $TribeTagColor;
|
|
fontColors[8] = $SmurfNameColor;
|
|
fontColors[9] = $BotNameColor;
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellMessageTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = "66 219 234";
|
|
fontColorHL = "25 68 56";
|
|
fillColorHL = "50 233 206";
|
|
cursorColor = "200 240 240";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellLoadTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = "66 219 234";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellLargeLabelProfile" )
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = 22;
|
|
fontColor = "60 180 180";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellMediumTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = $ShellColorBright;
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellMediumTextCenterProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = $ShellColorBright;
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("DebriefHeadlineTextProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = 28;
|
|
fontColor = $ShellColorBright;
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
tab = false;
|
|
canKeyFocus = false;
|
|
};
|
|
|
|
new GuiControlProfile ("DebriefTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = "60 180 180";
|
|
fontColors[6] = $PlayerNameColor;
|
|
fontColors[7] = $TribeTagColor;
|
|
fontColors[8] = $SmurfNameColor;
|
|
fontColors[9] = $BotNameColor;
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
tab = false;
|
|
canKeyFocus = false;
|
|
};
|
|
|
|
new GuiControlProfile ("ScoreHeaderTextProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = 28;
|
|
fontColor = "0 255 255";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
tab = false;
|
|
canKeyFocus = false;
|
|
};
|
|
|
|
new GuiControlProfile ("ScoreSubheaderTextProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = 22;
|
|
fontColor = "0 255 255";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
tab = false;
|
|
canKeyFocus = false;
|
|
};
|
|
|
|
new GuiControlProfile ("ScoreTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = "0 220 220";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
tab = false;
|
|
canKeyFocus = false;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellTreeViewProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "6 245 215";
|
|
fontColorHL = "6 245 215";
|
|
fontColorSEL = "25 68 56";
|
|
bitmapBase = "gui/shll_bar";
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellBigTextProfile")
|
|
{
|
|
fontType = $ShellHeaderFont;
|
|
fontSize = $ShellHeaderFontSize;
|
|
fontColor = $ShellColorBright;
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("HudScoreListProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = "60 180 180";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiHelpBoxProfile")
|
|
{
|
|
border = false;
|
|
//borderColor = "3 144 156";
|
|
opaque = true;
|
|
fillColor = "3 144 156 86";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiHelpTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "169 215 250";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = false;
|
|
justify = "left";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiHelpHeaderProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = $ShellLabelFontSize;
|
|
fontColor = "169 215 250";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
justify = "left";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiVoiceRedProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "180 0 0";
|
|
justify = "left";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiVoiceGreenProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "0 180 0";
|
|
justify = "left";
|
|
};
|
|
|
|
new GuiControlProfile( "GuiDeathMsgHudProfile" )
|
|
{
|
|
opaque = false;
|
|
border = false;
|
|
//borderColor = "255 255 0 128";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextProfile")
|
|
{
|
|
fontType = "Univers";
|
|
fontSize = 16;
|
|
fontColor = "0 0 0";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiCenterTextProfile")
|
|
{
|
|
fontType = "Univers";
|
|
fontSize = 16;
|
|
fontColor = "0 0 0";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiBigTextProfile")
|
|
{
|
|
fontType = "Times";
|
|
fontSize = 36;
|
|
fontColor = "0 0 0";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiBigTextProfileWhite")
|
|
{
|
|
fontType = "Times";
|
|
fontSize = 24;
|
|
|
|
fontColor = " 0 0 0";
|
|
fillColor = "255 255 255";
|
|
|
|
fontColorHL = "255 255 255";
|
|
fillColorHL = "0 0 0";
|
|
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
|
|
opaque = true;
|
|
};
|
|
|
|
new GuiControlProfile("GuiBorderProfile")
|
|
{
|
|
border = "true";
|
|
borderColor = "40 205 170";
|
|
opaque = true;
|
|
fillColor = "0 64 100 80";
|
|
};
|
|
|
|
new GuiControlProfile("ZoomHudProfile")
|
|
{
|
|
border = "true";
|
|
borderColor = "40 205 170";
|
|
opaque = false;
|
|
fillColor = "0 64 100 80";
|
|
};
|
|
|
|
new GuiControlProfile("GuiDashBoxProfile")
|
|
{
|
|
border = "false";
|
|
opaque = false;
|
|
};
|
|
|
|
new GuiControlProfile("GuiDashTextProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "154 208 253";
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextBGLeftProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 20;
|
|
fontColor = "70 235 200";
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextBGCenterProfile")
|
|
{
|
|
fontType = "Univers";
|
|
fontSize = 16;
|
|
fontColor = "70 235 200";
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextBGRightProfile")
|
|
{
|
|
fontType = "Univers";
|
|
fontSize = 16;
|
|
fontColor = "70 235 200";
|
|
justify = "right";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextBGWhiteRightProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "90 255 220";
|
|
justify = "right";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiHelpLineProfile")
|
|
{
|
|
borderColor = "231 101 26";
|
|
bitmap = "gui/hud_dot";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextObjHudCenterProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "169 215 250";
|
|
fontColors[6] = $PlayerNameColor;
|
|
fontColors[7] = $TribeTagColor;
|
|
fontColors[8] = $SmurfNameColor;
|
|
fontColors[9] = $BotNameColor;
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextObjHudLeftProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "169 215 250";
|
|
fontColors[6] = $PlayerNameColor;
|
|
fontColors[7] = $TribeTagColor;
|
|
fontColors[8] = $SmurfNameColor;
|
|
fontColors[9] = $BotNameColor;
|
|
justify = "left";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextObjGreenLeftProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "23 236 67";
|
|
fontColors[6] = $PlayerNameColor;
|
|
fontColors[7] = $TribeTagColor;
|
|
fontColors[8] = $SmurfNameColor;
|
|
fontColors[9] = $BotNameColor;
|
|
justify = "left";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextObjGreenCenterProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "23 236 67";
|
|
fontColors[6] = $PlayerNameColor;
|
|
fontColors[7] = $TribeTagColor;
|
|
fontColors[8] = $SmurfNameColor;
|
|
fontColors[9] = $BotNameColor;
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("DeathMsgTextProfile")
|
|
{
|
|
fontType = "Univers";
|
|
fontSize = 14;
|
|
fontColor = "40 247 113"; // green
|
|
justify = "left";
|
|
};
|
|
|
|
new GuiControlProfile("DebuggerWindowProfile") {
|
|
border = "true";
|
|
borderColor = "255 255 255";
|
|
opaque = "true";
|
|
fillColor = "0 0 0";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextEditProfile")
|
|
{
|
|
opaque = true;
|
|
fillColor = "255 255 255";
|
|
fillColorHL = "128 128 128";
|
|
border = true;
|
|
borderColor = "0 0 0";
|
|
fontType = "Lucida Console";
|
|
fontSize = 12;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "255 255 255";
|
|
fontColorNA = "128 128 128";
|
|
textOffset = "0 2";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiInspectorTextEditProfile")
|
|
{
|
|
opaque = true;
|
|
fillColor = "255 255 255";
|
|
fillColorHL = "128 128 128";
|
|
border = true;
|
|
borderColor = "0 0 0";
|
|
fontType = "Univers";
|
|
fontSize = 16;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "255 255 255";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
tab = false;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiMessageEditHudProfile")
|
|
{
|
|
fontType = "verdana";
|
|
fontSize = 14;
|
|
fontColor = "255 255 0";
|
|
cursorColor = "255 205 0";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
tab = false;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiMessageEditHudTextProfile")
|
|
{
|
|
fontType = "verdana";
|
|
fontSize = 14;
|
|
fontColor = "255 255 255";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
tab = false;
|
|
};
|
|
|
|
new GuiControlProfile("GuiAmmoHudProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "169 215 250";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile("GuiPackTextProfile")
|
|
{
|
|
fontType = "Univers";
|
|
fontSize = 12;
|
|
fontColor = "169 215 250";
|
|
justify = "center";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile("GuiTempSpeedProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "240 0 240";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile("GuiRecordingHudProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "255 0 0";
|
|
justify = "center";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiChatBackProfile")
|
|
{
|
|
bitmapbase = "gui/hud_new_window";
|
|
};
|
|
|
|
new GuiControlProfile ("HudScoreProfile")
|
|
{
|
|
bitmap = "gui/hud_new_scorewindow";
|
|
borderColor = "30 59 56";
|
|
};
|
|
|
|
new GuiControlProfile ("HudHelpTagProfile")
|
|
{
|
|
borderColor = "231 101 26";
|
|
bitmap = "gui/hud_dot";
|
|
};
|
|
|
|
new GuiControlProfile ("HudVoteBackProfile")
|
|
{
|
|
bitmapBase = "gui/hud_new_window_B";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiVMenuProfile")
|
|
{
|
|
bitmapBase = "gui/hud_new_window";
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiChatHudProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "44 172 181"; // default color (death msgs, scoring, inventory)
|
|
fontColors[1] = "4 235 105"; // client join/drop, tournament mode
|
|
fontColors[2] = "219 200 128"; // gameplay, admin/voting, pack/deployable
|
|
fontColors[3] = "77 253 95"; // team chat, spam protection message, client tasks
|
|
fontColors[4] = "40 231 240"; // global chat
|
|
fontColors[5] = "200 200 50 200"; // used in single player game
|
|
// WARNING! Colors 6-9 are reserved for name coloring
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiHudNavProfile")
|
|
{
|
|
// fontType = "Univers Condensed";
|
|
// fontSize = 16;
|
|
// fontColor = "255 255 255";
|
|
// autoSizeWidth = false;
|
|
// autoSizeHeight = true;
|
|
fontColors[6] = $PlayerNameColor;
|
|
fontColors[7] = $TribeTagColor;
|
|
fontColors[8] = $SmurfNameColor;
|
|
fontColors[9] = $BotNameColor;
|
|
};
|
|
|
|
new GuiControlProfile ( "GuiHudVoiceMenuProfile" )
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "70 235 200";
|
|
justify = "left";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ( "GuiHudVoiceCommandProfile" )
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "40 205 210";
|
|
justify = "left";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
|
|
new GuiControlProfile ("GuiCommandMsgHudProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "253 221 0";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
tab = false;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiButtonProfile")
|
|
{
|
|
opaque = true;
|
|
fillColor = "232 232 232";
|
|
border = true;
|
|
borderColor = "0 0 0";
|
|
borderColorHL = "127 127 127";
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "32 100 100";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
soundButtonDown = sButtonDown;
|
|
soundButtonOver = sButtonOver;
|
|
canKeyFocus = false;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiHudCounterProfile")
|
|
{
|
|
opaque = true;
|
|
fillColor = "232 232 232";
|
|
border = false;
|
|
borderColor = "0 0 0";
|
|
borderColorHL = "127 127 127";
|
|
fontType = $ShellFont;
|
|
fontSize = 12;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "32 100 100";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiRadioProfile")
|
|
{
|
|
opaque = false;
|
|
fillColor = "232 232 232";
|
|
border = false;
|
|
borderColor = "0 0 0";
|
|
fontType = "Univers";
|
|
fontSize = 14;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "32 100 100";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiCheckBoxProfile")
|
|
{
|
|
opaque = false;
|
|
fillColor = "232 232 232";
|
|
border = false;
|
|
borderColor = "0 0 0";
|
|
fontType = "Univers";
|
|
fontSize = 14;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "32 100 100";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiPopUpMenuProfile")
|
|
{
|
|
opaque = true;
|
|
fillColor = "232 232 232";
|
|
border = true;
|
|
borderColor = "0 0 0";
|
|
fontType = "Univers";
|
|
fontSize = 14;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "32 100 100";
|
|
fontColorSEL = "32 100 100";
|
|
fixedExtent = true;
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiWindowProfile")
|
|
{
|
|
opaque = true;
|
|
fillColor = "200 200 200";
|
|
fillColorHL = "64 150 150";
|
|
fillColorNA = "150 150 150";
|
|
fontType = "Univers";
|
|
fontSize = 16;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "0 0 0";
|
|
text = "GuiWindowCtrl test";
|
|
bitmap = "gui/darkWindow";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiScrollCtrlProfile")
|
|
{
|
|
border = true;
|
|
borderColor = "0 0 0";
|
|
bitmap = "gui/darkScroll";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiScrollContentProfile")
|
|
{
|
|
opaque = false;
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
border = false;
|
|
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTreeViewProfile")
|
|
{
|
|
fontType = "Lucida Console";
|
|
fontSize = 12;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "64 150 150";
|
|
bitmap = "gui/treeView";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTextArrayProfile")
|
|
{
|
|
fontType = "Univers";
|
|
fontSize = 16;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "32 100 100";
|
|
fillColorHL = "200 200 200";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiConsoleProfile")
|
|
{
|
|
fontType = "Lucida Console";
|
|
fontSize = 12;
|
|
fontColor = "0 0 0";
|
|
fontColorHL = "130 130 130";
|
|
fontColorNA = "255 0 0";
|
|
fontColors[6] = "50 50 50";
|
|
fontColors[7] = "50 50 0";
|
|
fontColors[8] = "0 0 50";
|
|
fontColors[9] = "0 50 0";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiConsoleTextProfile")
|
|
{
|
|
fontType = "Lucida Console";
|
|
fontSize = 12;
|
|
fontColor = "0 0 0";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile("GuiMediumBoldTextProfile")
|
|
{
|
|
fontType = "Univers Condensed";
|
|
fontSize = 16;
|
|
fontColor = "0 0 0";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile("EditTSControlProfile")
|
|
{
|
|
fontType = "Univers";
|
|
fontSize = 16;
|
|
fontColor = "200 200 200";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
fillColor = "255 255 0";
|
|
opaque = "true";
|
|
};
|
|
|
|
new GuiControlProfile("EditorContentProfile")
|
|
{
|
|
fontType = "Univers";
|
|
fontSize = 16;
|
|
fontColor = "200 200 200";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
fillColor = "220 220 220";
|
|
opaque = "true";
|
|
border = true;
|
|
borderColor = "180 180 180";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellProgressBarProfile")
|
|
{
|
|
opaque = false;
|
|
fillColor = "44 152 162 100";
|
|
border = true;
|
|
borderColor = "78 88 120";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellProgressBarTextProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = $ShellLabelFontSize;
|
|
fontColor = "169 215 250";
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellLoadFrameProfile" )
|
|
{
|
|
border = true;
|
|
borderColor = "78 88 120";
|
|
};
|
|
|
|
new GuiControlProfile ("ShellSubHeaderProfile" )
|
|
{
|
|
fontType = "Univers Condensed Bold";
|
|
fontSize = 28;
|
|
fontColor = "66 219 234";
|
|
justify = "left";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile( "DlgBackProfile" )
|
|
{
|
|
opaque = true;
|
|
fillColor = "0 0 0 160";
|
|
};
|
|
|
|
new GuiControlProfile( "GuiInputCtrlProfile" )
|
|
{
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile( "TesterProfile" )
|
|
{
|
|
border = true;
|
|
borderColor = "255 255 0";
|
|
};
|
|
|
|
new GuiControlProfile ("TaskHudProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "66 229 244";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
fontColors[1] = "0 200 0 200";
|
|
fontColors[2] = "200 0 0 200";
|
|
fontColors[3] = "0 0 200 200";
|
|
fontColors[6] = $PlayerNameColor;
|
|
fontColors[7] = $TribeTagColor;
|
|
fontColors[8] = $SmurfNameColor;
|
|
fontColors[9] = $BotNameColor;
|
|
};
|
|
|
|
new GuiControlProfile ("TaskHudTextProfile")
|
|
{
|
|
fontType = $ShellLabelFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "66 229 244";
|
|
autoSizeWidth = true;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("ShellChatMemberListProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "60 180 180";
|
|
fontColorHL = "6 245 215";
|
|
fontColorNA = "128 128 128";
|
|
fontColorSEL = "25 68 56";
|
|
fontColors[4] = "255 255 255"; // nick font color
|
|
fontColors[5] = "200 255 255"; // nick highlighted color
|
|
fontColors[6] = "0 0 0"; // nick selected color
|
|
fontColors[7] = "255 255 0"; // tribe font color
|
|
fontColors[8] = "200 255 0"; // tribe highlighted color
|
|
fontColors[9] = "0 0 255"; // tribe selected color
|
|
bitmapBase = "gui/shll_bar";
|
|
tab = true;
|
|
canKeyFocus = true;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiChannelVectorProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "249 250 194"; // default font color
|
|
fontColors[1] = "255 255 255"; // nick font color
|
|
fontColors[2] = "255 255 0"; // tribe font color
|
|
fontColors[3] = "0 200 0"; // server font color
|
|
fontColors[4] = "4 235 105"; // client join/drop, tournament mode
|
|
fontColors[5] = "219 200 128"; // gameplay, admin/voting, pack/deployable
|
|
fontColors[6] = "77 253 95"; // team chat, spam protection message, client tasks
|
|
fontColors[7] = "40 231 240"; // global chat
|
|
fontColors[8] = "200 200 50 200"; // used in single player game
|
|
fontColors[9] = "66 219 234";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|
|
new GuiControlProfile ("GuiTempHeatProfile")
|
|
{
|
|
fontType = $ShellButtonFont;
|
|
fontSize = $ShellFontSize;
|
|
fontColor = "230 40 230";
|
|
justify = "center";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiBubblePopupProfile")
|
|
{
|
|
border = false;
|
|
opaque = true;
|
|
fillColor = "3 144 156 200";
|
|
};
|
|
|
|
new GuiControlProfile ("GuiBubbleTextProfile")
|
|
{
|
|
fontType = $ShellFont;
|
|
fontSize = $ShellMediumFontSize;
|
|
fontColor = "100 200 200";
|
|
autoSizeWidth = false;
|
|
autoSizeHeight = true;
|
|
};
|
|
|