Advertisement
Pastebinning04

Untitled

Mar 14th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 123.15 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <Definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  3.   <Definition xsi:type="MyObjectBuilder_HudDefinition">
  4.     <!--
  5.    REFERENCE
  6.      * Members labeled with ? are not mandatory.
  7.      * StatIds can be found in external reference.
  8.      * Sizes and offsets of elements are defined in pixel sizes to keep the proportions.
  9.  
  10.    ............................................
  11.    ALIGN ENUM
  12.        HORISONTAL_LEFT_AND_VERTICAL_TOP = 0,
  13.        HORISONTAL_LEFT_AND_VERTICAL_CENTER = 1,
  14.        HORISONTAL_LEFT_AND_VERTICAL_BOTTOM = 2,
  15.        HORISONTAL_CENTER_AND_VERTICAL_TOP = 3,
  16.        HORISONTAL_CENTER_AND_VERTICAL_CENTER = 4,
  17.        HORISONTAL_CENTER_AND_VERTICAL_BOTTOM = 5,
  18.        HORISONTAL_RIGHT_AND_VERTICAL_TOP = 6,
  19.        HORISONTAL_RIGHT_AND_VERTICAL_CENTER = 7,
  20.        HORISONTAL_RIGHT_AND_VERTICAL_BOTTOM = 8,
  21.    ............................................
  22.    VisibleCondition
  23.        Below,
  24.        Above,
  25.        Equal,
  26.        NotEqual
  27.    ............................................
  28.    Blink TEMPLATE
  29.      <Blink>
  30.        <MinAlpha></MinAlpha> ?
  31.        <MaxAlpha></MaxAlpha> ?
  32.        <IntervalMs></IntervalMs> ?
  33.        <ColorMask> ?
  34.          <X></X>
  35.          <Y></Y>
  36.          <Z></Z>
  37.          <W></W>
  38.        </ColorMask>
  39.        <Blink>true/false</Blink> ?
  40.      </Blink>
  41.    ............................................
  42.    STAT VISUAL STYLE TEMPLATE
  43.      * Is collection of modifiers that are common for all types of
  44.        Stat styles that are defined below.
  45.      * Right now we are supporting 4 types of stat styles.
  46.        * MyObjectBuilder_CircularProgressBarStatVisualStyle
  47.        * MyObjectBuilder_ProgressBarStatVisualStyle
  48.        * MyObjectBuilder_TextStatVisualStyle
  49.        * MyObjectBuilder_ImageStatVisualStyle
  50.      * This is just a base and should never be used alone without
  51.        specific style definition
  52.  
  53.  
  54.    <StatStyle xsi:type="SPECIFIC_OBJECT_BUILDER">
  55.        <StatId></StatId>
  56.        <StatCriticalValue></StatCriticalValue> ?
  57.        <VisibleCondition></VisibleCondition> ?
  58.        <ConditionValue></ConditionValue> ?
  59.  
  60.        <OffsetPx>
  61.          <X></X>
  62.          <Y></Y>
  63.        </OffsetPx>
  64.        <SizePx>
  65.          <X></X>
  66.          <Y></Y>
  67.        </SizePx>
  68.  
  69.        <Blink>... BLINK TEMPLATE ...</Blink>
  70.  
  71.        ...
  72.        STYLE SPECIFIC STUFF
  73.        ...
  74.    </StatStyle>
  75.  
  76.  
  77.                ............................................
  78.                MyObjectBuilder_ImageStatVisualStyle
  79.                
  80.                <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  81.                  ...
  82.                  BASE SPECIFIC DEFINITION
  83.                  ...
  84.  
  85.                  <Texture></Texture>
  86.                  <ColorMask>
  87.                    <X></X>
  88.                    <Y></Y>
  89.                    <Z></Z>
  90.                    <W></W>
  91.                  </ColorMask>
  92.                </StatStyle>
  93.                ............................................
  94.                MyObjectBuilder_TextStatVisualStyle
  95.                
  96.                  * In the text field use {STAT} as a identifier where you want the stat
  97.                    numeric value be displayed.
  98.                    (example: <Text>Your current speed is: {STAT} m/s</Text>)
  99.                  * Vanilla fonts:
  100.                      * Debug
  101.                      * Red
  102.                      * Green
  103.                      * Blue
  104.                      * White
  105.                      * DarkBlue
  106.  
  107.                <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  108.                  ...
  109.                  BASE SPECIFIC DEFINITION
  110.                  ...
  111.  
  112.                  <Text></Text>
  113.                  <Scale></Scale>
  114.                  <Font></Font>
  115.                  <TextAlign></TextAlign> ?
  116.                  <ColorMask> ?
  117.                    <X></X>
  118.                    <Y></Y>
  119.                    <Z></Z>
  120.                    <W></W>
  121.                  </ColorMask>
  122.                </StatStyle>
  123.                ............................................
  124.                MyObjectBuilder_ProgressBarStatVisualStyle
  125.                  * Texture field refers to 9Tiled texture definition (Composite texture)
  126.                  * Probably subject to change ... depends ...
  127.  
  128.                <StatStyle xsi:type="MyObjectBuilder_ProgressBarStatVisualStyle">
  129.                  ...
  130.                  BASE SPECIFIC DEFINITION
  131.                  ...
  132.  
  133.                  <Texture></Texture>
  134.                  <ColorMask> ?
  135.                    <X></X>
  136.                    <Y></Y>
  137.                    <Z></Z>
  138.                    <W></W>
  139.                  </ColorMask>
  140.                </StatStyle>
  141.                ............................................
  142.                MyObjectBuilder_CircularProgressBarStatVisualStyle
  143.                  * Optional: segment origin
  144.                    * Texture mid is takne when not specified
  145.                  * Optional: Spacing angle
  146.                    * Angle between segments
  147.                  * Optional: Angle offset
  148.                    * Segmentation starts at (-1,0)
  149.                  * Optional: Number of segments
  150.                    * Default value is 10
  151.  
  152.                <StatStyle xsi:type="MyObjectBuilder_CircularProgressBarStatVisualStyle">
  153.                  ...
  154.                  BASE SPECIFIC DEFINITION
  155.                  ...
  156.  
  157.                  <SegmentSizePx>
  158.                    <X></X>
  159.                    <Y></Y>
  160.                  </SegmentSizePx>
  161.                  <Segmenttexture></Segmenttexture>
  162.                  <BackgroundTexture></BackgroundTexture> ?
  163.  
  164.                  <SegmentOrigin> ?
  165.                    <X></X>
  166.                    <Y></Y>
  167.                  </SegmentOrigin>
  168.                  <SpacingAngle></SpacingAngle> ?
  169.                  <AngleOffset></AngleOffset> ?
  170.                  <NumberOfSegments></NumberOfSegments> ?
  171.                  <ShowEmptySegments>true/false</ShowEmptySegments> ?
  172.  
  173.                  <EmptySegmentColorMask> ?
  174.                    <X></X>
  175.                    <Y></Y>
  176.                    <Z></Z>
  177.                    <W></W>
  178.                  </EmptySegmentColorMask>
  179.                  <FullSegmentColorMask> ?
  180.                    <X></X>
  181.                    <Y></Y>
  182.                    <Z></Z>
  183.                    <W></W>
  184.                  </FullSegmentColorMask>
  185.                  <AnimatedSegmentColorMask> ?
  186.                    <X></X>
  187.                    <Y></Y>
  188.                    <Z></Z>
  189.                    <W></W>
  190.                  </AnimatedSegmentColorMask>
  191.  
  192.                  <Animate>true/false</Animate> ?
  193.                  <AnimationDelayMs></AnimationDelayMs> ?
  194.                  <AnimationSegmentDelayMs></AnimationSegmentDelayMs> ?
  195.                </StatStyle>
  196.    ............................................
  197.    STAT CONTROL TEMPLATE
  198.      <StatControl>
  199.        <Position>
  200.          <X></X>
  201.          <Y></Y>
  202.        </Position>
  203.        <OriginAlign></OriginAlign>
  204.  
  205.        <StatStyles>
  206.          <StatStyle>... STAT VISUAL TEMPLATE ...</StatStyle>
  207.        </StatStyles>
  208.      </StatControl>
  209.    ............................................
  210.    -->
  211.     <Id>
  212.       <TypeId>HudDefinition</TypeId>
  213.       <SubtypeId>Base 16:9</SubtypeId>
  214.     </Id>
  215.     <OptimalScreenRatio>
  216.       <X>16</X>
  217.       <Y>9</Y>
  218.     </OptimalScreenRatio>
  219.     <!--<VisorOverlayTexture>HelmetVisorOverlay</VisorOverlayTexture>-->
  220.     <Toolbar>
  221.       <CenterPosition>
  222.         <X>0.496</X>
  223.         <Y>0.866</Y>
  224.       </CenterPosition>
  225.       <TabsOffset>
  226.         <X>-0.2178</X>
  227.         <Y>0.085</Y>
  228.       </TabsOffset>
  229.       <SelectedItemPosition>
  230.         <X>0.02</X>
  231.         <Y>-0.012</Y>
  232.       </SelectedItemPosition>
  233.       <SelectedItemTextScale>0.7</SelectedItemTextScale>
  234.      
  235.       <OriginAlign>HORISONTAL_CENTER_AND_VERTICAL_TOP</OriginAlign>
  236.       <ItemStyle>
  237.         <Texture>ToolbarItem_normal</Texture>
  238.         <TextureHighlight>ToolbarItem_highlight</TextureHighlight>
  239.         <VariantTexture>ToolbarVariantIcon</VariantTexture>
  240.         <FontNormal>Blue</FontNormal>
  241.         <FontHighlight>White</FontHighlight>
  242.         <TextScale>0.46</TextScale>
  243.         <ItemTextureScale>
  244.           <X>0.7</X>
  245.           <Y>0.7</Y>
  246.         </ItemTextureScale>
  247.         <Margin>
  248.           <Left>0.004</Left>
  249.           <Right>0.004</Right>
  250.           <Top>0.002</Top>
  251.           <Bottom>0.002</Bottom>
  252.         </Margin>
  253.         <VariantOffset>
  254.           <X>0.92</X>
  255.           <Y>0.36</Y>
  256.         </VariantOffset>
  257.       </ItemStyle>
  258.       <PageStyle>
  259.         <PageCompositeTexture>ToolBarTabs</PageCompositeTexture>
  260.         <PageHighlightCompositeTexture>ToolBarTabsHighlight</PageHighlightCompositeTexture>
  261.         <PagesOffset>
  262.           <X>-0.206</X>
  263.           <Y>0.065</Y>
  264.         </PagesOffset>
  265.         <NumberSize>0.5</NumberSize>
  266.       </PageStyle>
  267.       <ColorPanelStyle>
  268.         <Offset>
  269.           <X>0.329</X>
  270.           <Y>0.086</Y>
  271.         </Offset>
  272.         <Size>
  273.           <X>0.15</X>
  274.           <Y>0.011</Y>
  275.         </Size>
  276.         <Texture>ToolBarColorVariant</Texture>
  277.       </ColorPanelStyle>
  278.     </Toolbar>
  279.     <GravityIndicator>
  280.       <OffsetPx>
  281.         <X>390</X>
  282.         <Y>-130</Y>
  283.       </OffsetPx>
  284.       <SizePx>
  285.         <X>95</X>
  286.         <Y>95</Y>
  287.       </SizePx>
  288.       <VelocitySizePx>
  289.         <X>18</X>
  290.         <Y>18</Y>        
  291.       </VelocitySizePx>
  292.       <FillTexture>GravityIndicator_fill</FillTexture>
  293.       <OverlayTexture>GravityIndicator_circles</OverlayTexture>
  294.       <VelocityTexture>GravityIndicator_velocity</VelocityTexture>
  295.       <OriginAlign>HORISONTAL_CENTER_AND_VERTICAL_BOTTOM</OriginAlign>
  296.     </GravityIndicator>
  297.     <StatControls>
  298.  
  299.       <!--HUD Background plates and elements-->
  300.      
  301.       <!--********************************************************************************************************************************************************************************************
  302.      ************************** LeftPlate *************************************************** LeftPlate *********************************************** LeftPlate ***********************************
  303.      ************************************************************************************************************************************************************************************************-->
  304.       <StatControl>
  305.         <Position>
  306.           <X>0.003</X>
  307.           <Y>0</Y>
  308.         </Position>
  309.         <OriginAlign>HORISONTAL_LEFT_AND_VERTICAL_BOTTOM</OriginAlign>
  310.  
  311.         <StatStyles>
  312.           <!-- Plate texture -->
  313.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  314.             <OffsetPx>
  315.               <X>0</X>
  316.               <Y>-168</Y>
  317.             </OffsetPx>
  318.             <SizePx>
  319.               <X>450</X>
  320.               <Y>165</Y>
  321.             </SizePx>
  322.  
  323.             <Texture>LeftPlate</Texture>
  324.           </StatStyle>
  325.  
  326.           <!-- SPEED -->
  327.           <StatStyle xsi:type="MyObjectBuilder_CircularProgressBarStatVisualStyle">
  328.             <StatId>controlled_speed</StatId>
  329.             <StatCriticalValue>0</StatCriticalValue>
  330.             <OffsetPx>
  331.               <X>280</X>
  332.               <Y>-125</Y>
  333.             </OffsetPx>
  334.             <SizePx>
  335.               <X>130</X>
  336.               <Y>130</Y>
  337.             </SizePx>
  338.  
  339.             <NumberOfSegments>11</NumberOfSegments>
  340.             <SegmentTexture>Speed</SegmentTexture>
  341.             <SegmentSizePx>
  342.               <X>23</X>
  343.               <Y>14</Y>
  344.             </SegmentSizePx>
  345.             <SegmentOrigin>
  346.               <X>10</X>
  347.               <Y>55</Y>
  348.             </SegmentOrigin>
  349.             <SpacingAngle>12</SpacingAngle>
  350.             <AngleOffset>-9</AngleOffset>
  351.             <Animate>false</Animate>
  352.  
  353.             <EmptySegmentColorMask>
  354.               <X>0.734375</X>
  355.               <Y>0.9137254901960784</Y>
  356.               <Z>0.9647058823529412</Z>
  357.               <W>0.5</W>
  358.             </EmptySegmentColorMask>
  359.             <FullSegmentColorMask>
  360.               <X>0.734375</X>
  361.               <Y>0.9137254901960784</Y>
  362.               <Z>0.9647058823529412</Z>
  363.               <W>1</W>
  364.             </FullSegmentColorMask>
  365.             <AnimatedSegmentColorMask>
  366.               <X>0.834375</X>
  367.               <Y>0.9837254901960784</Y>
  368.               <Z>0.9947058823529412</Z>
  369.               <W>0.7</W>
  370.             </AnimatedSegmentColorMask>
  371.           </StatStyle>
  372.  
  373.           <!--Speed Text-->
  374.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  375.             <StatId>controlled_speed</StatId>
  376.             <StatCriticalValue>0</StatCriticalValue>
  377.             <OffsetPx>
  378.               <X>260</X>
  379.               <Y>-150</Y>
  380.             </OffsetPx>
  381.             <SizePx>
  382.               <X>150</X>
  383.               <Y>150</Y>
  384.             </SizePx>
  385.  
  386.             <Text>{STAT}</Text>
  387.             <Font>Blue</Font>
  388.             <Scale>0.65</Scale>
  389.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  390.           </StatStyle>
  391.          
  392.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  393.             <StatId>controlled_speed</StatId>
  394.             <StatCriticalValue>0</StatCriticalValue>
  395.             <OffsetPx>
  396.               <X>260</X>
  397.               <Y>-135</Y>
  398.             </OffsetPx>
  399.             <SizePx>
  400.               <X>150</X>
  401.               <Y>150</Y>
  402.             </SizePx>
  403.  
  404.             <Text>m/s</Text>
  405.             <Font>Blue</Font>
  406.             <Scale>0.65</Scale>
  407.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  408.           </StatStyle>
  409.  
  410.           <!--Dampeners-->
  411.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  412.             <StatId>controlled_dampeners</StatId>
  413.             <StatCriticalValue>0</StatCriticalValue>
  414.             <OffsetPx>
  415.               <X>379</X>
  416.               <Y>-135</Y>
  417.             </OffsetPx>
  418.             <SizePx>
  419.               <X>45</X>
  420.               <Y>40</Y>
  421.             </SizePx>
  422.  
  423.             <VisibleCondition xsi:type="StatCondition">
  424.               <Operator>Below</Operator>
  425.               <Value>0.5</Value>
  426.               <StatId>controlled_dampeners</StatId>
  427.             </VisibleCondition>
  428.  
  429.             <Texture>DampenersOn</Texture>
  430.             <ColorMask>
  431.               <X>1</X>
  432.               <Y>0</Y>
  433.               <Z>0</Z>
  434.               <W>0.8</W>
  435.             </ColorMask>
  436.  
  437.             <FadeOutTimeMs>500</FadeOutTimeMs>      
  438.             <FadeInTimeMs>100</FadeInTimeMs>
  439.      
  440.           </StatStyle>
  441.  
  442.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  443.             <StatId>controlled_dampeners</StatId>
  444.             <StatCriticalValue>0</StatCriticalValue>
  445.             <OffsetPx>
  446.               <X>379</X>
  447.               <Y>-135</Y>
  448.             </OffsetPx>
  449.             <SizePx>
  450.               <X>45</X>
  451.               <Y>40</Y>
  452.             </SizePx>
  453.  
  454.             <VisibleCondition xsi:type="StatCondition">
  455.               <Operator>Above</Operator>
  456.               <Value>0.5</Value>
  457.               <StatId>controlled_dampeners</StatId>
  458.             </VisibleCondition>
  459.  
  460.             <Texture>DampenersOn</Texture>
  461.             <ColorMask>
  462.               <X>0.734375</X>
  463.               <Y>0.9137254901960784</Y>
  464.               <Z>0.9647058823529412</Z>
  465.               <W>0.5</W>
  466.             </ColorMask>
  467.             <!--<FadeInTimeMs>100</FadeInTimeMs>      
  468.            <FadeOutTimeMs>500</FadeOutTimeMs>
  469.            <MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  470.      
  471.           </StatStyle>
  472.          
  473.           <!--Dampeners Text-->
  474.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  475.             <OffsetPx>
  476.               <X>372</X>
  477.               <Y>-115</Y>
  478.             </OffsetPx>
  479.             <SizePx>
  480.               <X>60</X>
  481.               <Y>60</Y>
  482.             </SizePx>
  483.      
  484.             <VisibleCondition xsi:type="StatCondition">
  485.               <Operator>Below</Operator>
  486.               <Value>0.5</Value>
  487.               <StatId>controlled_dampeners</StatId>
  488.             </VisibleCondition>
  489.            
  490.             <Text>Dampeners</Text>
  491.             <Font>Red</Font>
  492.             <Scale>0.45</Scale>
  493.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  494.  
  495.             <FadeInTimeMs>100</FadeInTimeMs>      
  496.             <FadeOutTimeMs>500</FadeOutTimeMs>
  497.  
  498.           </StatStyle>
  499.          
  500.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  501.             <OffsetPx>
  502.               <X>372</X>
  503.               <Y>-100</Y>
  504.             </OffsetPx>
  505.             <SizePx>
  506.               <X>60</X>
  507.               <Y>60</Y>
  508.             </SizePx>
  509.      
  510.             <VisibleCondition xsi:type="StatCondition">
  511.               <Operator>Below</Operator>
  512.               <Value>0.5</Value>
  513.               <StatId>controlled_dampeners</StatId>
  514.             </VisibleCondition>
  515.            
  516.             <Text>OFF</Text>
  517.             <Font>Red</Font>
  518.             <Scale>0.5</Scale>
  519.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  520.  
  521.             <FadeInTimeMs>100</FadeInTimeMs>      
  522.             <FadeOutTimeMs>500</FadeOutTimeMs>
  523.  
  524.           </StatStyle>
  525.          
  526.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  527.             <OffsetPx>
  528.               <X>372</X>
  529.               <Y>-115</Y>
  530.             </OffsetPx>
  531.             <SizePx>
  532.               <X>60</X>
  533.               <Y>60</Y>
  534.             </SizePx>
  535.      
  536.             <VisibleCondition xsi:type="StatCondition">
  537.               <Operator>Above</Operator>
  538.               <Value>0.5</Value>
  539.               <StatId>controlled_dampeners</StatId>
  540.             </VisibleCondition>
  541.      
  542.             <Text>Dampeners</Text>
  543.             <Font>White</Font>
  544.             <Scale>0.45</Scale>
  545.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  546.             <ColorMask>
  547.               <X>0.834375</X>
  548.               <Y>0.9137254901960784</Y>
  549.               <Z>0.9647058823529412</Z>
  550.               <W>0.8</W>
  551.             </ColorMask>
  552.  
  553.             <!--<FadeInTimeMs>100</FadeInTimeMs>      
  554.            <FadeOutTimeMs>500</FadeOutTimeMs>
  555.            <MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  556.          
  557.           </StatStyle>
  558.          
  559.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  560.             <OffsetPx>
  561.               <X>372</X>
  562.               <Y>-100</Y>
  563.             </OffsetPx>
  564.             <SizePx>
  565.               <X>60</X>
  566.               <Y>60</Y>
  567.             </SizePx>
  568.      
  569.             <VisibleCondition xsi:type="StatCondition">
  570.               <Operator>Above</Operator>
  571.               <Value>0.5</Value>
  572.               <StatId>controlled_dampeners</StatId>
  573.             </VisibleCondition>
  574.      
  575.             <Text>ON</Text>
  576.             <Font>White</Font>
  577.             <Scale>0.5</Scale>
  578.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  579.            
  580.             <ColorMask>
  581.               <X>0.834375</X>
  582.               <Y>0.9137254901960784</Y>
  583.               <Z>0.9647058823529412</Z>
  584.               <W>0.8</W>
  585.             </ColorMask>
  586.  
  587.             <!--<FadeInTimeMs>100</FadeInTimeMs>      
  588.            <FadeOutTimeMs>500</FadeOutTimeMs>
  589.            <MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  590.          
  591.           </StatStyle>
  592.      
  593.           <!--Dampeners Keybind-->
  594.  
  595.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  596.            
  597.             <OffsetPx>
  598.               <X>418</X>
  599.               <Y>-139</Y>
  600.             </OffsetPx>
  601.             <SizePx>
  602.               <X>16</X>
  603.               <Y>16</Y>
  604.             </SizePx>
  605.  
  606.             <FadeInTimeMs>100</FadeInTimeMs>
  607.             <FadeOutTimeMs>500</FadeOutTimeMs>
  608.  
  609.             <VisibleCondition xsi:type="StatCondition">
  610.               <StatId>hud_show_states</StatId>
  611.               <Operator>Above</Operator>
  612.               <Value>0.5</Value>
  613.             </VisibleCondition>
  614.  
  615.             <Text>{GAME_CONTROL:DAMPING}</Text>
  616.             <Font>White</Font>
  617.             <Scale>0.6</Scale>
  618.             <ColorMask>
  619.               <X>1</X>
  620.               <Y>1</Y>
  621.               <Z>1</Z>
  622.               <W>0.7</W>
  623.             </ColorMask>
  624.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  625.           </StatStyle>
  626.  
  627.           <!-- ICONS -->
  628.           <!-- Helmet Background -->
  629.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  630.             <OffsetPx>
  631.               <X>20</X>
  632.               <Y>-227</Y>
  633.             </OffsetPx>
  634.             <SizePx>
  635.               <X>60</X>
  636.               <Y>60</Y>
  637.             </SizePx>
  638.  
  639.             <Texture>IconsBackground</Texture>
  640.           </StatStyle>
  641.           <!-- HelmetOff -->
  642.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  643.             <StatId>player_helmet</StatId>
  644.             <OffsetPx>
  645.               <X>20</X>
  646.               <Y>-227</Y>
  647.             </OffsetPx>
  648.             <SizePx>
  649.               <X>60</X>
  650.               <Y>60</Y>
  651.             </SizePx>
  652.  
  653.             <FadeInTimeMs>100</FadeInTimeMs>
  654.             <FadeOutTimeMs>500</FadeOutTimeMs>
  655.  
  656.             <VisibleCondition xsi:type="Condition">
  657.               <Operator>Or</Operator>
  658.               <Terms>
  659.                 <Term xsi:type="Condition">
  660.                   <Operator>And</Operator>
  661.                   <Terms>
  662.                     <Term xsi:type="StatCondition">
  663.                       <StatId>player_helmet</StatId>
  664.                       <Value>0.5</Value>
  665.                       <Operator>Below</Operator>
  666.                     </Term>
  667.                     <Term xsi:type="StatCondition">
  668.                       <StatId>hud_show_states</StatId>
  669.                       <Value>0.5</Value>
  670.                       <Operator>Above</Operator>
  671.                     </Term>
  672.                   </Terms>
  673.                 </Term>
  674.                 <Term xsi:type="StatCondition">
  675.                   <StatId>player_helmet</StatId>
  676.                   <Value>0.5</Value>
  677.                   <Operator>Below</Operator>
  678.                 </Term>
  679.               </Terms>
  680.             </VisibleCondition>
  681.  
  682.             <Texture>PlayerHelmetOn</Texture>
  683.             <ColorMask>
  684.               <X>1</X>
  685.               <Y>1</Y>
  686.               <Z>1</Z>
  687.               <W>0.5</W>
  688.             </ColorMask>
  689.           </StatStyle>
  690.  
  691.           <!-- Helmet On -->
  692.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  693.             <StatId>player_helmet</StatId>
  694.             <OffsetPx>
  695.               <X>20</X>
  696.               <Y>-227</Y>
  697.             </OffsetPx>
  698.             <SizePx>
  699.               <X>60</X>
  700.               <Y>60</Y>
  701.             </SizePx>
  702.  
  703.             <FadeInTimeMs>100</FadeInTimeMs>
  704.             <FadeOutTimeMs>500</FadeOutTimeMs>
  705.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  706.  
  707.             <VisibleCondition xsi:type="Condition">
  708.               <Operator>Or</Operator>
  709.               <Terms>
  710.                 <Term xsi:type="Condition">
  711.                   <Operator>And</Operator>
  712.                   <Terms>
  713.                     <Term xsi:type="StatCondition">
  714.                       <StatId>player_helmet</StatId>
  715.                       <Value>0.5</Value>
  716.                       <Operator>Above</Operator>
  717.                     </Term>
  718.                     <Term xsi:type="StatCondition">
  719.                       <StatId>hud_show_states</StatId>
  720.                       <Value>0.5</Value>
  721.                       <Operator>Above</Operator>
  722.                     </Term>
  723.                   </Terms>
  724.                 </Term>
  725.                 <Term xsi:type="StatCondition">
  726.                   <StatId>player_helmet</StatId>
  727.                   <Value>0.5</Value>
  728.                   <Operator>Above</Operator>
  729.                 </Term>
  730.               </Terms>
  731.             </VisibleCondition>
  732.  
  733.             <Texture>PlayerHelmetOn</Texture>
  734.           </StatStyle>
  735.  
  736.           <!--Helmet Keybind-->
  737.  
  738.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  739.  
  740.             <OffsetPx>
  741.               <X>44</X>
  742.               <Y>-227</Y>
  743.             </OffsetPx>
  744.             <SizePx>
  745.               <X>16</X>
  746.               <Y>16</Y>
  747.             </SizePx>
  748.  
  749.             <FadeInTimeMs>100</FadeInTimeMs>
  750.             <FadeOutTimeMs>500</FadeOutTimeMs>
  751.  
  752.             <VisibleCondition xsi:type="StatCondition">
  753.               <StatId>hud_show_states</StatId>
  754.               <Operator>Above</Operator>
  755.               <Value>0.5</Value>
  756.             </VisibleCondition>
  757.  
  758.             <Text>{GAME_CONTROL:HELMET}</Text>
  759.             <Font>White</Font>
  760.             <Scale>0.6</Scale>
  761.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  762.           </StatStyle>
  763.  
  764.           <!--Helmet Icon Background-->
  765.  
  766.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  767.  
  768.             <OffsetPx>
  769.               <X>-283</X>
  770.               <Y>-227</Y>
  771.             </OffsetPx>
  772.             <SizePx>
  773.               <X>16</X>
  774.               <Y>16</Y>
  775.             </SizePx>
  776.  
  777.             <FadeInTimeMs>100</FadeInTimeMs>
  778.             <FadeOutTimeMs>500</FadeOutTimeMs>
  779.  
  780.             <VisibleCondition xsi:type="StatCondition">
  781.               <StatId>hud_show_states</StatId>
  782.               <Operator>Above</Operator>
  783.               <Value>0.5</Value>
  784.             </VisibleCondition>
  785.  
  786.             <Text>{GAME_CONTROL:HELMET}</Text>
  787.             <Font>White</Font>
  788.             <Scale>0.6</Scale>
  789.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  790.           </StatStyle>
  791.  
  792.           <!-- Jetpack Background -->
  793.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  794.             <OffsetPx>
  795.               <X>82</X>
  796.               <Y>-227</Y>
  797.             </OffsetPx>
  798.             <SizePx>
  799.               <X>60</X>
  800.               <Y>60</Y>
  801.             </SizePx>
  802.  
  803.             <Texture>IconsBackground</Texture>
  804.           </StatStyle>
  805.           <!-- Jetpack On -->
  806.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  807.             <StatId>player_jetpack</StatId>
  808.  
  809.             <OffsetPx>
  810.               <X>82</X>
  811.               <Y>-227</Y>
  812.             </OffsetPx>
  813.             <SizePx>
  814.               <X>60</X>
  815.               <Y>60</Y>
  816.             </SizePx>
  817.  
  818.             <FadeInTimeMs>100</FadeInTimeMs>
  819.             <FadeOutTimeMs>500</FadeOutTimeMs>
  820.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  821.  
  822.             <VisibleCondition xsi:type="Condition">
  823.               <Operator>Or</Operator>
  824.               <Terms>
  825.                 <Term xsi:type="Condition">
  826.                   <Operator>And</Operator>
  827.                   <Terms>
  828.                     <Term xsi:type="StatCondition">
  829.                       <StatId>player_jetpack</StatId>
  830.                       <Value>0.5</Value>
  831.                       <Operator>Above</Operator>
  832.                     </Term>
  833.                     <Term xsi:type="StatCondition">
  834.                       <StatId>hud_show_states</StatId>
  835.                       <Value>0.5</Value>
  836.                       <Operator>Above</Operator>
  837.                     </Term>
  838.                   </Terms>
  839.                 </Term>
  840.                 <Term xsi:type="StatCondition">
  841.                   <StatId>player_jetpack</StatId>
  842.                   <Value>0.5</Value>
  843.                   <Operator>Above</Operator>
  844.                 </Term>
  845.               </Terms>
  846.             </VisibleCondition>
  847.  
  848.             <Texture>Jetpack</Texture>
  849.  
  850.             <Blink>
  851.               <MinAlpha>0.2</MinAlpha>
  852.               <MaxAlpha>0.8</MaxAlpha>
  853.               <IntervalMs>400</IntervalMs>
  854.               <ColorMask>
  855.                 <X>1</X>
  856.                 <Y>0</Y>
  857.                 <Z>0</Z>
  858.                 <W>0.8</W>
  859.               </ColorMask>
  860.             </Blink>
  861.           </StatStyle>
  862.  
  863.           <!--JatpackOff-->
  864.  
  865.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  866.             <StatId>player_jetpack</StatId>
  867.  
  868.             <OffsetPx>
  869.               <X>82</X>
  870.               <Y>-227</Y>
  871.             </OffsetPx>
  872.             <SizePx>
  873.               <X>60</X>
  874.               <Y>60</Y>
  875.             </SizePx>
  876.  
  877.             <FadeInTimeMs>100</FadeInTimeMs>
  878.             <FadeOutTimeMs>500</FadeOutTimeMs>
  879.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  880.  
  881.             <VisibleCondition xsi:type="Condition">
  882.               <Operator>Or</Operator>
  883.               <Terms>
  884.                 <Term xsi:type="Condition">
  885.                   <Operator>And</Operator>
  886.                   <Terms>
  887.                     <Term xsi:type="StatCondition">
  888.                       <StatId>player_jetpack</StatId>
  889.                       <Value>0.5</Value>
  890.                       <Operator>Below</Operator>
  891.                     </Term>
  892.                     <Term xsi:type="Condition">
  893.                       <Operator>And</Operator>
  894.                       <Terms>
  895.                         <Term xsi:type="StatCondition">
  896.                           <StatId>player_jetpack</StatId>
  897.                           <Value>0.5</Value>
  898.                           <Operator>Below</Operator>
  899.                         </Term>
  900.                         <Term xsi:type="StatCondition">
  901.                           <StatId>player_magboots</StatId>
  902.                           <Value>0.5</Value>
  903.                           <Operator>Below</Operator>
  904.                         </Term>
  905.                       </Terms>
  906.                     </Term>
  907.                   </Terms>
  908.                 </Term>
  909.                 <Term xsi:type="Condition">
  910.                   <Operator>And</Operator>
  911.                   <Terms>
  912.                     <Term xsi:type="StatCondition">
  913.                       <StatId>player_jetpack</StatId>
  914.                       <Value>0.5</Value>
  915.                       <Operator>Below</Operator>
  916.                     </Term>
  917.                     <Term xsi:type="StatCondition">
  918.                       <StatId>player_magboots</StatId>
  919.                       <Value>0.5</Value>
  920.                       <Operator>Below</Operator>
  921.                     </Term>
  922.                   </Terms>
  923.                 </Term>
  924.               </Terms>
  925.             </VisibleCondition>
  926.  
  927.             <Texture>Jetpack</Texture>
  928.             <ColorMask>
  929.               <X>1</X>
  930.               <Y>1</Y>
  931.               <Z>1</Z>
  932.               <W>0.5</W>
  933.             </ColorMask>
  934.           </StatStyle>
  935.  
  936.           <!--Jetpack Keybind-->
  937.  
  938.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  939.  
  940.             <OffsetPx>
  941.               <X>105</X>
  942.               <Y>-227</Y>
  943.             </OffsetPx>
  944.             <SizePx>
  945.               <X>16</X>
  946.               <Y>16</Y>
  947.             </SizePx>
  948.  
  949.             <FadeInTimeMs>100</FadeInTimeMs>
  950.             <FadeOutTimeMs>500</FadeOutTimeMs>
  951.  
  952.             <VisibleCondition xsi:type="StatCondition">
  953.               <StatId>hud_show_states</StatId>
  954.               <Operator>Above</Operator>
  955.               <Value>0.5</Value>
  956.             </VisibleCondition>
  957.  
  958.             <Text>{GAME_CONTROL:THRUSTS}</Text>
  959.             <Font>White</Font>
  960.             <Scale>0.6</Scale>
  961.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  962.           </StatStyle>
  963.  
  964.           <!-- PlayerBroadcasting Background -->
  965.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  966.             <OffsetPx>
  967.               <X>144</X>
  968.               <Y>-227</Y>
  969.             </OffsetPx>
  970.             <SizePx>
  971.               <X>60</X>
  972.               <Y>60</Y>
  973.             </SizePx>
  974.  
  975.             <Texture>IconsBackground</Texture>
  976.           </StatStyle>
  977.           <!--PlayerBroadcastingOff-->
  978.  
  979.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  980.             <StatId>player_broadcasting</StatId>
  981.  
  982.             <OffsetPx>
  983.               <X>144</X>
  984.               <Y>-227</Y>
  985.             </OffsetPx>
  986.             <SizePx>
  987.               <X>60</X>
  988.               <Y>60</Y>
  989.             </SizePx>
  990.  
  991.             <FadeInTimeMs>100</FadeInTimeMs>
  992.             <FadeOutTimeMs>500</FadeOutTimeMs>
  993.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  994.  
  995.             <VisibleCondition xsi:type="Condition">
  996.               <Operator>Or</Operator>
  997.               <Terms>
  998.                 <Term xsi:type="Condition">
  999.                   <Operator>And</Operator>
  1000.                   <Terms>
  1001.                     <Term xsi:type="StatCondition">
  1002.                       <StatId>player_broadcasting</StatId>
  1003.                       <Value>0.5</Value>
  1004.                       <Operator>Below</Operator>
  1005.                     </Term>
  1006.                     <Term xsi:type="StatCondition">
  1007.                       <StatId>hud_show_states</StatId>
  1008.                       <Value>0.5</Value>
  1009.                       <Operator>Above</Operator>
  1010.                     </Term>
  1011.                   </Terms>
  1012.                 </Term>
  1013.                 <Term xsi:type="StatCondition">
  1014.                   <StatId>player_broadcasting</StatId>
  1015.                   <Value>0.5</Value>
  1016.                   <Operator>Below</Operator>
  1017.                 </Term>
  1018.               </Terms>
  1019.             </VisibleCondition>
  1020.  
  1021.             <Texture>PlayerBroadcastingOn</Texture>
  1022.             <ColorMask>
  1023.               <X>1</X>
  1024.               <Y>1</Y>
  1025.               <Z>1</Z>
  1026.               <W>0.5</W>
  1027.             </ColorMask>
  1028.           </StatStyle>
  1029.  
  1030.           <!--PlayerBroadcastingOn-->
  1031.  
  1032.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1033.             <StatId>player_broadcasting</StatId>
  1034.  
  1035.             <OffsetPx>
  1036.               <X>144</X>
  1037.               <Y>-227</Y>
  1038.             </OffsetPx>
  1039.             <SizePx>
  1040.               <X>60</X>
  1041.               <Y>60</Y>
  1042.             </SizePx>
  1043.  
  1044.             <FadeInTimeMs>100</FadeInTimeMs>
  1045.             <FadeOutTimeMs>500</FadeOutTimeMs>
  1046.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  1047.  
  1048.             <VisibleCondition xsi:type="Condition">
  1049.               <Operator>Or</Operator>
  1050.               <Terms>
  1051.                 <Term xsi:type="Condition">
  1052.                   <Operator>And</Operator>
  1053.                   <Terms>
  1054.                     <Term xsi:type="StatCondition">
  1055.                       <StatId>player_broadcasting</StatId>
  1056.                       <Value>0.5</Value>
  1057.                       <Operator>Above</Operator>
  1058.                     </Term>
  1059.                     <Term xsi:type="StatCondition">
  1060.                       <StatId>hud_show_states</StatId>
  1061.                       <Value>0.5</Value>
  1062.                       <Operator>Above</Operator>
  1063.                     </Term>
  1064.                   </Terms>
  1065.                 </Term>
  1066.                 <Term xsi:type="StatCondition">
  1067.                   <StatId>player_broadcasting</StatId>
  1068.                   <Value>0.5</Value>
  1069.                   <Operator>Above</Operator>
  1070.                 </Term>
  1071.               </Terms>
  1072.             </VisibleCondition>
  1073.  
  1074.             <Texture>PlayerBroadcastingOn</Texture>
  1075.           </StatStyle>
  1076.  
  1077.           <!--PlayerBroadcasting Keybind-->
  1078.  
  1079.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  1080.  
  1081.             <OffsetPx>
  1082.               <X>167</X>
  1083.               <Y>-227</Y>
  1084.             </OffsetPx>
  1085.             <SizePx>
  1086.               <X>16</X>
  1087.               <Y>16</Y>
  1088.             </SizePx>
  1089.  
  1090.             <FadeInTimeMs>100</FadeInTimeMs>
  1091.             <FadeOutTimeMs>500</FadeOutTimeMs>
  1092.  
  1093.             <VisibleCondition xsi:type="StatCondition">
  1094.               <StatId>hud_show_states</StatId>
  1095.               <Operator>Above</Operator>
  1096.               <Value>0.5</Value>
  1097.             </VisibleCondition>
  1098.  
  1099.             <Text>{GAME_CONTROL:BROADCASTING}</Text>
  1100.             <Font>White</Font>
  1101.             <Scale>0.6</Scale>
  1102.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  1103.           </StatStyle>
  1104.  
  1105.           <!-- Flashlight Background -->
  1106.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1107.             <OffsetPx>
  1108.               <X>206</X>
  1109.               <Y>-227</Y>
  1110.             </OffsetPx>
  1111.             <SizePx>
  1112.               <X>60</X>
  1113.               <Y>60</Y>
  1114.             </SizePx>
  1115.  
  1116.             <Texture>IconsBackground</Texture>
  1117.           </StatStyle>
  1118.           <!--Flashlight On-->
  1119.  
  1120.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1121.             <StatId>player_flashlight</StatId>
  1122.             <OffsetPx>
  1123.               <X>206</X>
  1124.               <Y>-227</Y>
  1125.             </OffsetPx>
  1126.             <SizePx>
  1127.               <X>60</X>
  1128.               <Y>60</Y>
  1129.             </SizePx>
  1130.  
  1131.             <FadeInTimeMs>100</FadeInTimeMs>
  1132.             <FadeOutTimeMs>500</FadeOutTimeMs>
  1133.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  1134.  
  1135.             <!-- (F & G) | F -->
  1136.             <VisibleCondition xsi:type="Condition">
  1137.               <Operator>Or</Operator>
  1138.               <Terms>
  1139.                 <Term xsi:type="Condition">
  1140.                   <Operator>And</Operator>
  1141.                   <Terms>
  1142.                     <Term xsi:type="StatCondition">
  1143.                       <StatId>player_flashlight</StatId>
  1144.                       <Value>0.5</Value>
  1145.                       <Operator>Above</Operator>
  1146.                     </Term>
  1147.                     <Term xsi:type="StatCondition">
  1148.                       <StatId>hud_show_states</StatId>
  1149.                       <Value>0.5</Value>
  1150.                       <Operator>Above</Operator>
  1151.                     </Term>
  1152.                   </Terms>
  1153.                 </Term>
  1154.                 <Term xsi:type="StatCondition">
  1155.                   <StatId>player_flashlight</StatId>
  1156.                   <Value>0.5</Value>
  1157.                   <Operator>Above</Operator>
  1158.                 </Term>
  1159.               </Terms>
  1160.             </VisibleCondition>
  1161.  
  1162.             <Texture>Flashlight</Texture>
  1163.           </StatStyle>
  1164.  
  1165.           <!--Flashlight Off-->
  1166.  
  1167.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1168.             <StatId>player_flashlight</StatId>
  1169.             <OffsetPx>
  1170.               <X>206</X>
  1171.               <Y>-227</Y>
  1172.             </OffsetPx>
  1173.             <SizePx>
  1174.               <X>60</X>
  1175.               <Y>60</Y>
  1176.             </SizePx>
  1177.  
  1178.             <FadeInTimeMs>100</FadeInTimeMs>
  1179.             <FadeOutTimeMs>500</FadeOutTimeMs>
  1180.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  1181.  
  1182.             <!-- (F & G) | F -->
  1183.             <VisibleCondition xsi:type="Condition">
  1184.               <Operator>Or</Operator>
  1185.               <Terms>
  1186.                 <Term xsi:type="Condition">
  1187.                   <Operator>And</Operator>
  1188.                   <Terms>
  1189.                     <Term xsi:type="StatCondition">
  1190.                       <StatId>player_flashlight</StatId>
  1191.                       <Value>0.5</Value>
  1192.                       <Operator>Below</Operator>
  1193.                     </Term>
  1194.                     <Term xsi:type="StatCondition">
  1195.                       <StatId>hud_show_states</StatId>
  1196.                       <Value>0.5</Value>
  1197.                       <Operator>Above</Operator>
  1198.                     </Term>
  1199.                   </Terms>
  1200.                 </Term>
  1201.                 <Term xsi:type="StatCondition">
  1202.                   <StatId>player_flashlight</StatId>
  1203.                   <Value>0.5</Value>
  1204.                   <Operator>Below</Operator>
  1205.                 </Term>
  1206.               </Terms>
  1207.             </VisibleCondition>
  1208.  
  1209.             <Texture>Flashlight</Texture>
  1210.             <ColorMask>
  1211.               <X>1</X>
  1212.               <Y>1</Y>
  1213.               <Z>1</Z>
  1214.               <W>0.5</W>
  1215.             </ColorMask>
  1216.           </StatStyle>
  1217.  
  1218.           <!--Flashlight Keybind-->
  1219.  
  1220.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  1221.  
  1222.             <OffsetPx>
  1223.               <X>229</X>
  1224.               <Y>-227</Y>
  1225.             </OffsetPx>
  1226.             <SizePx>
  1227.               <X>16</X>
  1228.               <Y>16</Y>
  1229.             </SizePx>
  1230.  
  1231.             <FadeInTimeMs>100</FadeInTimeMs>
  1232.             <FadeOutTimeMs>500</FadeOutTimeMs>
  1233.  
  1234.             <VisibleCondition xsi:type="StatCondition">
  1235.               <StatId>hud_show_states</StatId>
  1236.               <Operator>Above</Operator>
  1237.               <Value>0.5</Value>
  1238.             </VisibleCondition>
  1239.  
  1240.             <Text>{GAME_CONTROL:HEADLIGHTS}</Text>
  1241.             <Font>White</Font>
  1242.             <Scale>0.6</Scale>
  1243.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  1244.           </StatStyle>
  1245.  
  1246.           <!--Magboots-->
  1247.  
  1248.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1249.  
  1250.             <OffsetPx>
  1251.               <X>82</X>
  1252.               <Y>-227</Y>
  1253.             </OffsetPx>
  1254.             <SizePx>
  1255.               <X>60</X>
  1256.               <Y>60</Y>
  1257.             </SizePx>
  1258.  
  1259.             <FadeInTimeMs>100</FadeInTimeMs>
  1260.             <FadeOutTimeMs>500</FadeOutTimeMs>
  1261.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  1262.  
  1263.             <VisibleCondition xsi:type="Condition">
  1264.               <Operator>Or</Operator>
  1265.               <Terms>
  1266.                 <Term xsi:type="Condition">
  1267.                   <Operator>And</Operator>
  1268.                   <Terms>
  1269.                     <Term xsi:type="StatCondition">
  1270.                       <StatId>player_magboots</StatId>
  1271.                       <Value>0.5</Value>
  1272.                       <Operator>Above</Operator>
  1273.                     </Term>
  1274.                     <Term xsi:type="StatCondition">
  1275.                       <StatId>hud_show_states</StatId>
  1276.                       <Value>0.5</Value>
  1277.                       <Operator>Above</Operator>
  1278.                     </Term>
  1279.                   </Terms>
  1280.                 </Term>
  1281.                 <Term xsi:type="StatCondition">
  1282.                   <StatId>player_magboots</StatId>
  1283.                   <Value>0.5</Value>
  1284.                   <Operator>Above</Operator>
  1285.                 </Term>
  1286.               </Terms>
  1287.             </VisibleCondition>
  1288.  
  1289.             <Texture>Magboots</Texture>
  1290.           </StatStyle>
  1291.  
  1292.           <!-- PLAYER STAT PROGRESS BARS -->
  1293.  
  1294.           <!--
  1295.            HEALTH
  1296.            ...............................................................................
  1297.          -->
  1298.           <StatStyle xsi:type="MyObjectBuilder_ProgressBarStatVisualStyle">
  1299.             <StatId>player_health</StatId>
  1300.  
  1301.             <OffsetPx>
  1302.               <X>66</X>
  1303.               <Y>-134</Y>
  1304.             </OffsetPx>
  1305.             <SizePx>
  1306.               <X>150</X>
  1307.               <Y>9</Y>
  1308.             </SizePx>
  1309.  
  1310.             <BlinkCondition xsi:type="StatCondition">
  1311.               <StatId>player_health</StatId>
  1312.               <Value>0.3</Value>
  1313.               <Operator>Below</Operator>
  1314.             </BlinkCondition>
  1315.  
  1316.             <SimpleStyle>
  1317.               <BackgroundTexture>ProgressBar_Background</BackgroundTexture>
  1318.               <ProgressTexture>ProgressBar_Bar</ProgressTexture>              
  1319.               <ProgressTextureOffsetPx>
  1320.                 <X>0</X>
  1321.                 <Y>0</Y>
  1322.               </ProgressTextureOffsetPx>
  1323.               <ProgressColorMask>
  1324.                 <X>0.734375</X>
  1325.                 <Y>0.9137254901960784</Y>
  1326.                 <Z>0.9647058823529412</Z>
  1327.                 <W>1</W>
  1328.               </ProgressColorMask>
  1329.                <BackgroundColorMask>
  1330.                 <X>0.3137</X>
  1331.                 <Y>0.3607</Y>
  1332.                 <Z>0.4039</Z>
  1333.                 <W>1</W>
  1334.               </BackgroundColorMask>
  1335.             </SimpleStyle>
  1336.           </StatStyle>
  1337.  
  1338.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  1339.             <StatId>player_health</StatId>
  1340.  
  1341.             <OffsetPx>
  1342.               <X>233</X>
  1343.               <Y>-140</Y>
  1344.             </OffsetPx>
  1345.             <SizePx>
  1346.               <X>16</X>
  1347.               <Y>16</Y>
  1348.             </SizePx>
  1349.  
  1350.             <BlinkCondition xsi:type="StatCondition">
  1351.               <StatId>player_health</StatId>
  1352.               <Value>0.3</Value>
  1353.               <Operator>Below</Operator>
  1354.             </BlinkCondition>
  1355.  
  1356.             <Percentage>true</Percentage>
  1357.             <Precision>0</Precision>
  1358.             <Text>{STAT}</Text>
  1359.             <Font>White</Font>
  1360.             <Scale>0.7</Scale>
  1361.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  1362.           </StatStyle>
  1363.          
  1364.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1365.             <StatId>player_health</StatId>
  1366.  
  1367.             <OffsetPx>
  1368.               <X>40</X>
  1369.               <Y>-143</Y>
  1370.             </OffsetPx>
  1371.             <SizePx>
  1372.               <X>24</X>
  1373.               <Y>24</Y>
  1374.             </SizePx>
  1375.  
  1376.             <BlinkCondition xsi:type="StatCondition">
  1377.               <StatId>player_health</StatId>
  1378.               <Value>0.3</Value>
  1379.               <Operator>Below</Operator>
  1380.             </BlinkCondition>
  1381.  
  1382.             <Texture>HealthIcon</Texture>
  1383.             <ColorMask>
  1384.               <X>0.734375</X>
  1385.               <Y>0.9137254901960784</Y>
  1386.               <Z>0.9647058823529412</Z>
  1387.               <W>1</W>
  1388.             </ColorMask>
  1389.           </StatStyle>
  1390.  
  1391.           <!--
  1392.            O2
  1393.            ...............................................................................
  1394.          -->
  1395.           <StatStyle xsi:type="MyObjectBuilder_ProgressBarStatVisualStyle">
  1396.             <StatId>player_oxygen</StatId>
  1397.  
  1398.             <OffsetPx>
  1399.               <X>68</X>
  1400.               <Y>-105</Y>
  1401.             </OffsetPx>
  1402.             <SizePx>
  1403.               <X>150</X>
  1404.               <Y>9</Y>
  1405.             </SizePx>
  1406.  
  1407.             <BlinkCondition xsi:type="StatCondition">
  1408.               <StatId>player_oxygen</StatId>
  1409.               <Value>0.3</Value>
  1410.               <Operator>Below</Operator>
  1411.             </BlinkCondition>
  1412.  
  1413.             <SimpleStyle>
  1414.               <BackgroundTexture>ProgressBar_Background</BackgroundTexture>
  1415.               <ProgressTexture>ProgressBar_Bar</ProgressTexture>              
  1416.               <ProgressTextureOffsetPx>
  1417.                 <X>0</X>
  1418.                 <Y>0</Y>
  1419.               </ProgressTextureOffsetPx>
  1420.               <ProgressColorMask>
  1421.                 <X>0.734375</X>
  1422.                 <Y>0.9137254901960784</Y>
  1423.                 <Z>0.9647058823529412</Z>
  1424.                 <W>1</W>
  1425.               </ProgressColorMask>
  1426.               <BackgroundColorMask>
  1427.                 <X>0.3137</X>
  1428.                 <Y>0.3607</Y>
  1429.                 <Z>0.4039</Z>
  1430.                 <W>1</W>
  1431.               </BackgroundColorMask>
  1432.             </SimpleStyle>
  1433.           </StatStyle>
  1434.  
  1435.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  1436.             <StatId>player_oxygen</StatId>
  1437.  
  1438.             <OffsetPx>
  1439.               <X>231</X>
  1440.               <Y>-110</Y>
  1441.             </OffsetPx>
  1442.             <SizePx>
  1443.               <X>16</X>
  1444.               <Y>16</Y>
  1445.             </SizePx>
  1446.  
  1447.             <BlinkCondition xsi:type="StatCondition">
  1448.               <StatId>player_oxygen</StatId>
  1449.               <Value>0.3</Value>
  1450.               <Operator>Below</Operator>
  1451.             </BlinkCondition>
  1452.  
  1453.             <Percentage>true</Percentage>
  1454.             <Precision>0</Precision>
  1455.             <Text>{STAT}</Text>
  1456.             <Font>White</Font>
  1457.             <Scale>0.7</Scale>
  1458.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  1459.           </StatStyle>
  1460.  
  1461.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1462.             <StatId>player_oxygen</StatId>
  1463.  
  1464.             <OffsetPx>
  1465.               <X>40</X>
  1466.               <Y>-113</Y>
  1467.             </OffsetPx>
  1468.             <SizePx>
  1469.               <X>24</X>
  1470.               <Y>24</Y>
  1471.             </SizePx>
  1472.  
  1473.             <BlinkCondition xsi:type="StatCondition">
  1474.               <StatId>player_oxygen</StatId>
  1475.               <Value>0.3</Value>
  1476.               <Operator>Below</Operator>
  1477.             </BlinkCondition>
  1478.  
  1479.             <Texture>OxygenIcon</Texture>
  1480.             <ColorMask>
  1481.               <X>0.734375</X>
  1482.               <Y>0.9137254901960784</Y>
  1483.               <Z>0.9647058823529412</Z>
  1484.               <W>1</W>
  1485.             </ColorMask>
  1486.           </StatStyle>
  1487.          
  1488.           <!--O2 Bottles-->
  1489.  
  1490.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1491.             <OffsetPx>
  1492.               <X>74</X>
  1493.               <Y>-113</Y>
  1494.             </OffsetPx>
  1495.             <SizePx>
  1496.               <X>18</X>
  1497.               <Y>6</Y>
  1498.             </SizePx>
  1499.  
  1500.             <VisibleCondition xsi:type="StatCondition">
  1501.               <StatId>player_oxygen_bottles</StatId>
  1502.               <Value>0</Value>
  1503.               <Operator>Above</Operator>
  1504.             </VisibleCondition>        
  1505.  
  1506.             <Texture>Bottle</Texture>
  1507.             <ColorMask>
  1508.               <X>0.734375</X>
  1509.               <Y>0.9137254901960784</Y>
  1510.               <Z>0.9647058823529412</Z>
  1511.               <W>1</W>
  1512.             </ColorMask>
  1513.           </StatStyle>
  1514.          
  1515.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1516.             <OffsetPx>
  1517.               <X>97</X>
  1518.               <Y>-113</Y>
  1519.             </OffsetPx>
  1520.             <SizePx>
  1521.               <X>18</X>
  1522.               <Y>6</Y>
  1523.             </SizePx>
  1524.  
  1525.             <VisibleCondition xsi:type="StatCondition">
  1526.               <StatId>player_oxygen_bottles</StatId>
  1527.               <Value>1</Value>
  1528.               <Operator>Above</Operator>
  1529.             </VisibleCondition>  
  1530.  
  1531.             <Texture>Bottle</Texture>
  1532.             <ColorMask>
  1533.               <X>0.734375</X>
  1534.               <Y>0.9137254901960784</Y>
  1535.               <Z>0.9647058823529412</Z>
  1536.               <W>1</W>
  1537.             </ColorMask>
  1538.           </StatStyle>
  1539.          
  1540.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1541.             <OffsetPx>
  1542.               <X>122</X>
  1543.               <Y>-113</Y>
  1544.             </OffsetPx>
  1545.             <SizePx>
  1546.               <X>18</X>
  1547.               <Y>6</Y>
  1548.             </SizePx>
  1549.  
  1550.             <VisibleCondition xsi:type="StatCondition">
  1551.               <StatId>player_oxygen_bottles</StatId>
  1552.               <Value>2</Value>
  1553.               <Operator>Above</Operator>
  1554.             </VisibleCondition>  
  1555.  
  1556.             <Texture>Bottle</Texture>
  1557.             <ColorMask>
  1558.               <X>0.734375</X>
  1559.               <Y>0.9137254901960784</Y>
  1560.               <Z>0.9647058823529412</Z>
  1561.               <W>1</W>
  1562.             </ColorMask>
  1563.           </StatStyle>
  1564.          
  1565.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1566.             <OffsetPx>
  1567.               <X>141</X>
  1568.               <Y>-116.5</Y>
  1569.             </OffsetPx>
  1570.             <SizePx>
  1571.               <X>11</X>
  1572.               <Y>11</Y>
  1573.             </SizePx>
  1574.  
  1575.             <VisibleCondition xsi:type="StatCondition">
  1576.               <StatId>player_oxygen_bottles</StatId>
  1577.               <Value>3</Value>
  1578.               <Operator>Above</Operator>
  1579.             </VisibleCondition>  
  1580.  
  1581.             <Texture>HealthIcon</Texture>
  1582.             <ColorMask>
  1583.               <X>0.734375</X>
  1584.               <Y>0.9137254901960784</Y>
  1585.               <Z>0.9647058823529412</Z>
  1586.               <W>1</W>
  1587.             </ColorMask>
  1588.           </StatStyle>
  1589.  
  1590.           <!--
  1591.            Power
  1592.            ...............................................................................
  1593.             -->
  1594.           <StatStyle xsi:type="MyObjectBuilder_ProgressBarStatVisualStyle">
  1595.             <StatId>player_energy</StatId>
  1596.  
  1597.             <OffsetPx>
  1598.               <X>68</X>
  1599.               <Y>-77</Y>
  1600.             </OffsetPx>
  1601.             <SizePx>
  1602.               <X>150</X>
  1603.               <Y>9</Y>
  1604.             </SizePx>
  1605.  
  1606.             <BlinkCondition xsi:type="StatCondition">
  1607.               <StatId>player_energy</StatId>
  1608.               <Value>0.3</Value>
  1609.               <Operator>Below</Operator>
  1610.             </BlinkCondition>
  1611.  
  1612.             <SimpleStyle>
  1613.               <BackgroundTexture>ProgressBar_Background</BackgroundTexture>
  1614.               <ProgressTexture>ProgressBar_Bar</ProgressTexture>              
  1615.               <ProgressTextureOffsetPx>
  1616.                 <X>0</X>
  1617.                 <Y>0</Y>
  1618.               </ProgressTextureOffsetPx>
  1619.               <ProgressColorMask>
  1620.                 <X>0.734375</X>
  1621.                 <Y>0.9137254901960784</Y>
  1622.                 <Z>0.9647058823529412</Z>
  1623.                 <W>1</W>
  1624.               </ProgressColorMask>
  1625.               <BackgroundColorMask>
  1626.                 <X>0.3137</X>
  1627.                 <Y>0.3607</Y>
  1628.                 <Z>0.4039</Z>
  1629.                 <W>1</W>
  1630.               </BackgroundColorMask>
  1631.             </SimpleStyle>
  1632.           </StatStyle>
  1633.  
  1634.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  1635.             <StatId>player_energy</StatId>
  1636.  
  1637.             <OffsetPx>
  1638.               <X>231</X>
  1639.               <Y>-82</Y>
  1640.             </OffsetPx>
  1641.             <SizePx>
  1642.               <X>16</X>
  1643.               <Y>16</Y>
  1644.             </SizePx>
  1645.  
  1646.             <BlinkCondition xsi:type="StatCondition">
  1647.               <StatId>player_energy</StatId>
  1648.               <Value>0.3</Value>
  1649.               <Operator>Below</Operator>
  1650.             </BlinkCondition>
  1651.  
  1652.             <Percentage>true</Percentage>
  1653.             <Precision>0</Precision>
  1654.             <Text>{STAT}</Text>
  1655.             <Font>White</Font>
  1656.             <Scale>0.7</Scale>
  1657.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  1658.           </StatStyle>
  1659.  
  1660.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1661.             <StatId>player_energy</StatId>
  1662.  
  1663.             <OffsetPx>
  1664.               <X>40</X>
  1665.               <Y>-85</Y>
  1666.             </OffsetPx>
  1667.  
  1668.             <SizePx>
  1669.               <X>24</X>
  1670.               <Y>24</Y>
  1671.             </SizePx>
  1672.  
  1673.             <BlinkCondition xsi:type="StatCondition">
  1674.               <StatId>player_energy</StatId>
  1675.               <Value>0.3</Value>
  1676.               <Operator>Below</Operator>
  1677.             </BlinkCondition>
  1678.            
  1679.             <Texture>EnergyIcon</Texture>
  1680.             <ColorMask>
  1681.               <X>0.734375</X>
  1682.               <Y>0.9137254901960784</Y>
  1683.               <Z>0.9647058823529412</Z>
  1684.               <W>1</W>
  1685.             </ColorMask>
  1686.           </StatStyle>
  1687.  
  1688.           <!--
  1689.            Hydrogen
  1690.            ...............................................................................
  1691.             -->
  1692.           <StatStyle xsi:type="MyObjectBuilder_ProgressBarStatVisualStyle">
  1693.             <StatId>player_hydrogen</StatId>
  1694.  
  1695.             <OffsetPx>
  1696.               <X>68</X>
  1697.               <Y>-49</Y>
  1698.             </OffsetPx>
  1699.             <SizePx>
  1700.               <X>150</X>
  1701.               <Y>9</Y>
  1702.             </SizePx>
  1703.  
  1704.             <BlinkCondition xsi:type="StatCondition">
  1705.               <StatId>player_hydrogen</StatId>
  1706.               <Value>0.3</Value>
  1707.               <Operator>Below</Operator>
  1708.             </BlinkCondition>
  1709.  
  1710.             <SimpleStyle>
  1711.               <BackgroundTexture>ProgressBar_Background</BackgroundTexture>
  1712.               <ProgressTexture>ProgressBar_Bar</ProgressTexture>              
  1713.               <ProgressTextureOffsetPx>
  1714.                 <X>0</X>
  1715.                 <Y>0</Y>
  1716.               </ProgressTextureOffsetPx>
  1717.               <ProgressColorMask>
  1718.                 <X>0.734375</X>
  1719.                 <Y>0.9137254901960784</Y>
  1720.                 <Z>0.9647058823529412</Z>
  1721.                 <W>1</W>
  1722.               </ProgressColorMask>
  1723.               <BackgroundColorMask>
  1724.                 <X>0.3137</X>
  1725.                 <Y>0.3607</Y>
  1726.                 <Z>0.4039</Z>
  1727.                 <W>1</W>
  1728.               </BackgroundColorMask>
  1729.             </SimpleStyle>
  1730.           </StatStyle>
  1731.  
  1732.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  1733.             <StatId>player_hydrogen</StatId>
  1734.  
  1735.             <OffsetPx>
  1736.               <X>231</X>
  1737.               <Y>-55</Y>
  1738.             </OffsetPx>
  1739.             <SizePx>
  1740.               <X>16</X>
  1741.               <Y>16</Y>
  1742.             </SizePx>
  1743.  
  1744.             <BlinkCondition xsi:type="StatCondition">
  1745.               <StatId>player_hydrogen</StatId>
  1746.               <Value>0.3</Value>
  1747.               <Operator>Below</Operator>
  1748.             </BlinkCondition>
  1749.  
  1750.             <Percentage>true</Percentage>
  1751.             <Precision>0</Precision>
  1752.             <Text>{STAT}</Text>
  1753.             <Font>White</Font>
  1754.             <Scale>0.7</Scale>
  1755.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  1756.           </StatStyle>
  1757.  
  1758.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1759.             <StatId>player_hydrogen</StatId>
  1760.  
  1761.             <OffsetPx>
  1762.               <X>40</X>
  1763.               <Y>-57</Y>
  1764.             </OffsetPx>
  1765.             <SizePx>
  1766.               <X>24</X>
  1767.               <Y>24</Y>
  1768.             </SizePx>
  1769.  
  1770.             <BlinkCondition xsi:type="StatCondition">
  1771.               <StatId>player_hydrogen</StatId>
  1772.               <Value>0.3</Value>
  1773.               <Operator>Below</Operator>
  1774.             </BlinkCondition>
  1775.  
  1776.             <Texture>HydrogenIcon</Texture>
  1777.             <ColorMask>
  1778.               <X>0.734375</X>
  1779.               <Y>0.9137254901960784</Y>
  1780.               <Z>0.9647058823529412</Z>
  1781.               <W>1</W>
  1782.             </ColorMask>
  1783.           </StatStyle>
  1784.        
  1785.           <!--H2 Bottles-->
  1786.  
  1787.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1788.             <OffsetPx>
  1789.               <X>74</X>
  1790.               <Y>-57</Y>
  1791.             </OffsetPx>
  1792.             <SizePx>
  1793.               <X>18</X>
  1794.               <Y>6</Y>
  1795.             </SizePx>
  1796.  
  1797.             <VisibleCondition xsi:type="StatCondition">
  1798.               <StatId>player_hydrogen_bottles</StatId>
  1799.               <Value>0</Value>
  1800.               <Operator>Above</Operator>
  1801.             </VisibleCondition>  
  1802.  
  1803.             <Texture>Bottle</Texture>
  1804.             <ColorMask>
  1805.               <X>0.734375</X>
  1806.               <Y>0.9137254901960784</Y>
  1807.               <Z>0.9647058823529412</Z>
  1808.               <W>1</W>
  1809.             </ColorMask>
  1810.           </StatStyle>
  1811.          
  1812.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1813.             <OffsetPx>
  1814.               <X>97</X>
  1815.               <Y>-57</Y>
  1816.             </OffsetPx>
  1817.             <SizePx>
  1818.               <X>18</X>
  1819.               <Y>6</Y>
  1820.             </SizePx>
  1821.  
  1822.             <VisibleCondition xsi:type="StatCondition">
  1823.               <StatId>player_hydrogen_bottles</StatId>
  1824.               <Value>1</Value>
  1825.               <Operator>Above</Operator>
  1826.             </VisibleCondition>  
  1827.  
  1828.             <Texture>Bottle</Texture>
  1829.             <ColorMask>
  1830.               <X>0.734375</X>
  1831.               <Y>0.9137254901960784</Y>
  1832.               <Z>0.9647058823529412</Z>
  1833.               <W>1</W>
  1834.             </ColorMask>
  1835.           </StatStyle>
  1836.          
  1837.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1838.             <OffsetPx>
  1839.               <X>120</X>
  1840.               <Y>-57</Y>
  1841.             </OffsetPx>
  1842.             <SizePx>
  1843.               <X>18</X>
  1844.               <Y>6</Y>
  1845.             </SizePx>
  1846.  
  1847.             <VisibleCondition xsi:type="StatCondition">
  1848.               <StatId>player_hydrogen_bottles</StatId>
  1849.               <Value>2</Value>
  1850.               <Operator>Above</Operator>
  1851.             </VisibleCondition>  
  1852.  
  1853.             <Texture>Bottle</Texture>
  1854.             <ColorMask>
  1855.               <X>0.734375</X>
  1856.               <Y>0.9137254901960784</Y>
  1857.               <Z>0.9647058823529412</Z>
  1858.               <W>1</W>
  1859.             </ColorMask>
  1860.           </StatStyle>
  1861.          
  1862.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1863.             <OffsetPx>
  1864.               <X>141</X>
  1865.               <Y>-61</Y>
  1866.             </OffsetPx>
  1867.             <SizePx>
  1868.               <X>11</X>
  1869.               <Y>11</Y>
  1870.             </SizePx>
  1871.  
  1872.             <VisibleCondition xsi:type="StatCondition">
  1873.               <StatId>player_hydrogen_bottles</StatId>
  1874.               <Value>3</Value>
  1875.               <Operator>Above</Operator>
  1876.             </VisibleCondition>  
  1877.  
  1878.             <Texture>HealthIcon</Texture>
  1879.             <ColorMask>
  1880.               <X>0.734375</X>
  1881.               <Y>0.9137254901960784</Y>
  1882.               <Z>0.9647058823529412</Z>
  1883.               <W>1</W>
  1884.             </ColorMask>
  1885.           </StatStyle>
  1886.  
  1887.         </StatStyles>
  1888.       </StatControl>
  1889.      
  1890.       <!--********************************************************************************************************************************************************************************************
  1891.      ****************************************** CenterPlate ************************************ CenterPlate **************************************** CenterPlate ***********************************
  1892.      ************************************************************************************************************************************************************************************************-->
  1893.       <StatControl>
  1894.         <Position>
  1895.           <X>0</X>
  1896.           <Y>0</Y>
  1897.         </Position>
  1898.         <OriginAlign>HORISONTAL_CENTER_AND_VERTICAL_BOTTOM</OriginAlign>
  1899.  
  1900.         <StatStyles>
  1901.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1902.             <OffsetPx>
  1903.               <X>-340</X>
  1904.               <Y>-157</Y>
  1905.             </OffsetPx>
  1906.             <SizePx>
  1907.               <X>843</X>
  1908.               <Y>154</Y>
  1909.             </SizePx>
  1910.  
  1911.             <Texture>CenterPlate</Texture>
  1912.           </StatStyle>
  1913.        
  1914.           <!--Atmoshpere Status-->
  1915.           <!--Below 10%-->
  1916.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1917.             <StatId>environment_oxygen_level</StatId>
  1918.             <OffsetPx>
  1919.               <X>180</X>
  1920.               <Y>-21</Y>
  1921.             </OffsetPx>
  1922.             <SizePx>
  1923.               <X>17</X>
  1924.               <Y>17</Y>
  1925.             </SizePx>
  1926.  
  1927.             <VisibleCondition xsi:type="StatCondition">
  1928.               <Operator>Below</Operator>
  1929.               <Value>0.1</Value>
  1930.               <StatId>environment_oxygen_level</StatId>
  1931.             </VisibleCondition>
  1932.  
  1933.             <Texture>OxygenIcon</Texture>
  1934.             <ColorMask>
  1935.               <X>0.9</X>
  1936.               <Y>0.27</Y>
  1937.               <Z>0.27</Z>
  1938.               <W>0.9</W>
  1939.             </ColorMask>
  1940.           </StatStyle>
  1941.            
  1942.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  1943.             <StatId>environment_oxygen_level</StatId>
  1944.             <StatCriticalValue>0</StatCriticalValue>
  1945.             <OffsetPx>
  1946.              <X>145</X>
  1947.              <Y>-88</Y>
  1948.             </OffsetPx>
  1949.            <SizePx>
  1950.              <X>150</X>
  1951.               <Y>150</Y>
  1952.            </SizePx>
  1953.            
  1954.            <VisibleCondition xsi:type="StatCondition">
  1955.              <Operator>Below</Operator>
  1956.              <Value>0.1</Value>
  1957.              <StatId>environment_oxygen_level</StatId>
  1958.            </VisibleCondition>
  1959.  
  1960.            <Text>None</Text>
  1961.            <Precision>0</Precision>
  1962.            <Font>Red</Font>
  1963.            <Scale>0.60</Scale>
  1964.            <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  1965.          </StatStyle>
  1966.        
  1967.       <!--Above 10%-->
  1968.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  1969.             <StatId>environment_oxygen_level</StatId>
  1970.             <OffsetPx>
  1971.               <X>180</X>
  1972.               <Y>-21</Y>
  1973.             </OffsetPx>
  1974.             <SizePx>
  1975.               <X>17</X>
  1976.               <Y>17</Y>
  1977.             </SizePx>
  1978.  
  1979.             <VisibleCondition xsi:type="Condition">
  1980.              <Operator>And</Operator>
  1981.              <Terms>
  1982.                <Term xsi:type="StatCondition">
  1983.                  <StatId>environment_oxygen_level</StatId>
  1984.                  <Value>0.1</Value>
  1985.                  <Operator>Above</Operator>
  1986.                </Term>
  1987.                <Term xsi:type="StatCondition">
  1988.                  <StatId>environment_oxygen_level</StatId>
  1989.                  <Value>0.8</Value>
  1990.                  <Operator>Below</Operator>
  1991.                </Term>
  1992.              </Terms>
  1993.            </VisibleCondition>
  1994.  
  1995.             <Texture>OxygenIcon</Texture>
  1996.             <ColorMask>
  1997.               <X>0.9</X>
  1998.               <Y>0.9</Y>
  1999.               <Z>0.27</Z>
  2000.               <W>0.9</W>
  2001.             </ColorMask>
  2002.           </StatStyle>
  2003.            
  2004.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  2005.             <StatId>environment_oxygen_level</StatId>
  2006.             <StatCriticalValue>0</StatCriticalValue>
  2007.             <OffsetPx>
  2008.              <X>145</X>
  2009.              <Y>-88</Y>
  2010.             </OffsetPx>
  2011.            <SizePx>
  2012.              <X>150</X>
  2013.               <Y>150</Y>
  2014.            </SizePx>
  2015.            
  2016.            <VisibleCondition xsi:type="Condition">
  2017.              <Operator>And</Operator>
  2018.              <Terms>
  2019.                <Term xsi:type="StatCondition">
  2020.                  <StatId>environment_oxygen_level</StatId>
  2021.                  <Value>0.1</Value>
  2022.                  <Operator>Above</Operator>
  2023.                </Term>
  2024.                <Term xsi:type="StatCondition">
  2025.                  <StatId>environment_oxygen_level</StatId>
  2026.                  <Value>0.8</Value>
  2027.                  <Operator>Below</Operator>
  2028.                </Term>
  2029.              </Terms>
  2030.            </VisibleCondition>
  2031.  
  2032.            <Text>Low</Text>
  2033.            <Precision>0</Precision>
  2034.            <Font>White</Font>
  2035.            <Scale>0.60</Scale>
  2036.            <ColorMask>
  2037.             <X>0.9</X>
  2038.             <Y>0.9</Y>
  2039.             <Z>0.27</Z>
  2040.             <W>1</W>
  2041.            </ColorMask>
  2042.            <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  2043.          </StatStyle>
  2044.        
  2045.       <!--Above 80%-->
  2046.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2047.             <StatId>environment_oxygen_level</StatId>
  2048.             <OffsetPx>
  2049.               <X>180</X>
  2050.               <Y>-21</Y>
  2051.             </OffsetPx>
  2052.             <SizePx>
  2053.               <X>17</X>
  2054.               <Y>17</Y>
  2055.             </SizePx>
  2056.  
  2057.             <VisibleCondition xsi:type="StatCondition">
  2058.               <Operator>Above</Operator>
  2059.               <Value>0.8</Value>
  2060.               <StatId>environment_oxygen_level</StatId>
  2061.             </VisibleCondition>
  2062.  
  2063.             <Texture>OxygenIcon</Texture>
  2064.             <ColorMask>
  2065.               <X>0.27</X>
  2066.               <Y>0.9</Y>
  2067.               <Z>0.27</Z>
  2068.               <W>0.9</W>
  2069.             </ColorMask>
  2070.           </StatStyle>
  2071.            
  2072.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  2073.             <StatId>environment_oxygen_level</StatId>
  2074.             <StatCriticalValue>0</StatCriticalValue>
  2075.             <OffsetPx>
  2076.              <X>145</X>
  2077.              <Y>-88</Y>
  2078.             </OffsetPx>
  2079.            <SizePx>
  2080.              <X>150</X>
  2081.               <Y>150</Y>
  2082.            </SizePx>
  2083.            
  2084.             <VisibleCondition xsi:type="StatCondition">
  2085.               <Operator>Above</Operator>
  2086.               <Value>0.8</Value>
  2087.               <StatId>environment_oxygen_level</StatId>
  2088.             </VisibleCondition>
  2089.  
  2090.            <Text>High</Text>
  2091.            <Precision>0</Precision>
  2092.            <Font>White</Font>
  2093.            <Scale>0.60</Scale>
  2094.            <ColorMask>
  2095.             <X>0.27</X>
  2096.             <Y>0.9</Y>
  2097.             <Z>0.27</Z>
  2098.             <W>1</W>
  2099.            </ColorMask>
  2100.            <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  2101.          </StatStyle>
  2102.  
  2103.          <!-- Drilling indicator -->
  2104.           <StatStyle xsi:type="MyObjectBuilder_ProgressBarStatVisualStyle">
  2105.             <StatId>player_inventory_capacity</StatId>
  2106.  
  2107.             <OffsetPx>
  2108.               <X>-300</X>
  2109.               <Y>-145</Y>
  2110.             </OffsetPx>
  2111.             <SizePx>
  2112.               <X>630</X>
  2113.               <Y>6</Y>
  2114.             </SizePx>
  2115.  
  2116.             <VisibleCondition xsi:type="Condition">
  2117.               <Operator>Or</Operator>
  2118.               <Terms>
  2119.                 <Term xsi:type="StatCondition">
  2120.                   <StatId>player_inventory_capacity_changed</StatId>
  2121.                   <Value>0.5</Value>
  2122.                   <Operator>Above</Operator>
  2123.                 </Term>
  2124.                 <Term xsi:type="StatCondition">
  2125.                   <StatId>hud_show_states</StatId>
  2126.                   <Value>0.5</Value>
  2127.                   <Operator>Above</Operator>
  2128.                 </Term>
  2129.               </Terms>
  2130.             </VisibleCondition>
  2131.  
  2132.             <FadeInTimeMs>100</FadeInTimeMs>
  2133.             <FadeOutTimeMs>500</FadeOutTimeMs>
  2134.  
  2135.             <SimpleStyle>
  2136.               <BackgroundTexture>DrillBarBackground</BackgroundTexture>
  2137.               <ProgressTexture>DrillBarProgress</ProgressTexture>              
  2138.               <ProgressTextureOffsetPx>
  2139.                 <X>0</X>
  2140.                 <Y>0</Y>
  2141.               </ProgressTextureOffsetPx>
  2142.               <ProgressColorMask>
  2143.                 <X>0.734375</X>
  2144.                 <Y>0.9137254901960784</Y>
  2145.                 <Z>0.9647058823529412</Z>
  2146.                 <W>1</W>
  2147.               </ProgressColorMask>
  2148.               <BackgroundColorMask>
  2149.                 <X>0.3137</X>
  2150.                 <Y>0.3207</Y>
  2151.                 <Z>0.3539</Z>
  2152.                 <W>1</W>
  2153.               </BackgroundColorMask>
  2154.             </SimpleStyle>
  2155.           </StatStyle>
  2156.        
  2157.           <!--Drill Icon-->
  2158.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2159.             <OffsetPx>
  2160.               <X>-330</X>
  2161.               <Y>-158</Y>
  2162.             </OffsetPx>
  2163.             <SizePx>
  2164.               <X>18</X>
  2165.               <Y>27</Y>
  2166.             </SizePx>
  2167.  
  2168.             <FadeInTimeMs>100</FadeInTimeMs>
  2169.             <FadeOutTimeMs>500</FadeOutTimeMs>
  2170.  
  2171.             <VisibleCondition xsi:type="Condition">
  2172.               <Operator>Or</Operator>
  2173.               <Terms>
  2174.                 <Term xsi:type="StatCondition">
  2175.                   <StatId>player_inventory_capacity_changed</StatId>
  2176.                   <Value>0.5</Value>
  2177.                   <Operator>Above</Operator>
  2178.                 </Term>
  2179.                 <Term xsi:type="StatCondition">
  2180.                   <StatId>hud_show_states</StatId>
  2181.                   <Value>0.5</Value>
  2182.                   <Operator>Above</Operator>
  2183.                 </Term>
  2184.               </Terms>
  2185.             </VisibleCondition>
  2186.  
  2187.             <Texture>BackpackIcon</Texture>
  2188.           </StatStyle>
  2189.  
  2190.           <!-- GRAVITY -->
  2191.           <!--A-Gravity-->
  2192.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  2193.             <StatCriticalValue>0</StatCriticalValue>
  2194.             <OffsetPx>
  2195.               <X>345</X>
  2196.               <Y>-118</Y>
  2197.             </OffsetPx>
  2198.             <SizePx>
  2199.               <X>16</X>
  2200.               <Y>16</Y>
  2201.             </SizePx>
  2202.             <Text>A-Gravity</Text>
  2203.             <Font>White</Font>
  2204.             <Scale>0.55</Scale>
  2205.             <ColorMask>
  2206.               <X>0.85</X>
  2207.               <Y>0.85</Y>
  2208.               <Z>0.85</Z>
  2209.               <W>1</W>
  2210.             </ColorMask>
  2211.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  2212.           </StatStyle>
  2213.        
  2214.           <!--A-Gravity VALUE-->
  2215.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  2216.             <StatId>artificial_gravity</StatId>
  2217.             <StatCriticalValue>0</StatCriticalValue>
  2218.             <OffsetPx>
  2219.               <X>345</X>
  2220.               <Y>-101</Y>
  2221.             </OffsetPx>
  2222.             <SizePx>
  2223.               <X>16</X>
  2224.               <Y>16</Y>
  2225.             </SizePx>
  2226.             <Text>{STAT}</Text>
  2227.             <Font>White</Font>
  2228.             <Scale>0.55</Scale>
  2229.             <ColorMask>
  2230.               <X>0.85</X>
  2231.               <Y>0.85</Y>
  2232.               <Z>0.85</Z>
  2233.               <W>1</W>
  2234.             </ColorMask>
  2235.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  2236.           </StatStyle>
  2237.        
  2238.           <!--P-Gravity-->
  2239.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  2240.             <StatCriticalValue>0</StatCriticalValue>
  2241.             <OffsetPx>
  2242.               <X>345</X>
  2243.               <Y>-80</Y>
  2244.             </OffsetPx>
  2245.             <SizePx>
  2246.               <X>16</X>
  2247.               <Y>16</Y>
  2248.             </SizePx>
  2249.             <Text>P-Gravity</Text>
  2250.             <Font>White</Font>
  2251.             <Scale>0.55</Scale>
  2252.             <ColorMask>
  2253.               <X>0.85</X>
  2254.               <Y>0.85</Y>
  2255.               <Z>0.85</Z>
  2256.               <W>1</W>
  2257.             </ColorMask>
  2258.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  2259.           </StatStyle>
  2260.        
  2261.           <!--P-Gravity VALUE-->
  2262.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  2263.             <StatId>natural_gravity</StatId>
  2264.             <StatCriticalValue>0</StatCriticalValue>
  2265.             <OffsetPx>
  2266.               <X>345</X>
  2267.               <Y>-64</Y>
  2268.             </OffsetPx>
  2269.             <SizePx>
  2270.               <X>16</X>
  2271.               <Y>16</Y>
  2272.             </SizePx>
  2273.             <Text>{STAT}</Text>
  2274.             <Font>White</Font>
  2275.             <Scale>0.55</Scale>
  2276.             <ColorMask>
  2277.               <X>0.85</X>
  2278.               <Y>0.85</Y>
  2279.               <Z>0.85</Z>
  2280.               <W>1</W>
  2281.             </ColorMask>
  2282.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  2283.           </StatStyle>
  2284.  
  2285.           <!-- Block Operations -->
  2286.  
  2287.           <!--Grid Size Small On-->
  2288.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2289.  
  2290.             <OffsetPx>
  2291.               <X>-20</X>
  2292.               <Y>-60</Y>
  2293.             </OffsetPx>
  2294.             <SizePx>
  2295.               <X>44</X>
  2296.               <Y>44</Y>
  2297.             </SizePx>
  2298.  
  2299.             <VisibleCondition xsi:type="StatCondition">
  2300.               <StatId>toolbar_grid_size</StatId>
  2301.               <Value>0</Value>
  2302.               <Operator>Equal</Operator>
  2303.             </VisibleCondition>
  2304.  
  2305.             <Texture>GridSizeSmall</Texture>
  2306.             <ColorMask>
  2307.               <X>0.734375</X>
  2308.               <Y>0.9137254901960784</Y>
  2309.               <Z>0.9647058823529412</Z>
  2310.               <W>1</W>
  2311.             </ColorMask>
  2312.           </StatStyle>
  2313.  
  2314.           <!--Grid Size Small Off-->
  2315.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2316.  
  2317.             <OffsetPx>
  2318.               <X>-20</X>
  2319.               <Y>-60</Y>
  2320.             </OffsetPx>
  2321.             <SizePx>
  2322.               <X>44</X>
  2323.               <Y>44</Y>
  2324.             </SizePx>
  2325.  
  2326.             <VisibleCondition xsi:type="Condition">
  2327.               <Operator>Or</Operator>
  2328.               <Terms>
  2329.                 <Term xsi:type="StatCondition">
  2330.                   <StatId>toolbar_grid_size</StatId>
  2331.                   <Value>0.5</Value>
  2332.                   <Operator>Above</Operator>
  2333.                 </Term>
  2334.                 <Term xsi:type="StatCondition">
  2335.                   <StatId>toolbar_grid_size</StatId>
  2336.                   <Value>0</Value>
  2337.                   <Operator>Below</Operator>
  2338.                 </Term>
  2339.               </Terms>
  2340.             </VisibleCondition>
  2341.  
  2342.             <Texture>GridSizeSmall</Texture>
  2343.             <ColorMask>
  2344.               <X>0.734375</X>
  2345.               <Y>0.9137254901960784</Y>
  2346.               <Z>0.9647058823529412</Z>
  2347.               <W>1</W>
  2348.             </ColorMask>
  2349.           </StatStyle>
  2350.  
  2351.           <!--Grid Size Large On-->
  2352.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2353.  
  2354.             <OffsetPx>
  2355.               <X>-17</X>
  2356.               <Y>-60</Y>
  2357.             </OffsetPx>
  2358.             <SizePx>
  2359.               <X>44</X>
  2360.               <Y>44</Y>
  2361.             </SizePx>
  2362.  
  2363.             <VisibleCondition xsi:type="StatCondition">
  2364.               <StatId>toolbar_grid_size</StatId>
  2365.               <Value>0.5</Value>
  2366.               <Operator>Above</Operator>
  2367.             </VisibleCondition>
  2368.  
  2369.             <Texture>GridSizeLarge</Texture>
  2370.             <ColorMask>
  2371.               <X>0.734375</X>
  2372.               <Y>0.9137254901960784</Y>
  2373.               <Z>0.9647058823529412</Z>
  2374.               <W>1</W>
  2375.             </ColorMask>
  2376.           </StatStyle>
  2377.  
  2378.           <!--Grid Size Large Off-->
  2379.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2380.  
  2381.             <OffsetPx>
  2382.               <X>-17</X>
  2383.               <Y>-60</Y>
  2384.             </OffsetPx>
  2385.             <SizePx>
  2386.               <X>44</X>
  2387.               <Y>44</Y>
  2388.             </SizePx>
  2389.  
  2390.             <VisibleCondition xsi:type="StatCondition">
  2391.               <StatId>toolbar_grid_size</StatId>
  2392.               <Value>0.5</Value>
  2393.               <Operator>Below</Operator>
  2394.             </VisibleCondition>
  2395.  
  2396.             <Texture>GridSizeLarge</Texture>
  2397.             <ColorMask>
  2398.               <X>0.734375</X>
  2399.               <Y>0.9137254901960784</Y>
  2400.               <Z>0.9647058823529412</Z>
  2401.               <W>1</W>
  2402.             </ColorMask>
  2403.           </StatStyle>
  2404.  
  2405.           <!--Block Rotate On-->
  2406.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2407.             <OffsetPx>
  2408.               <X>33</X>
  2409.               <Y>-60</Y>
  2410.             </OffsetPx>
  2411.             <SizePx>
  2412.               <X>44</X>
  2413.               <Y>44</Y>
  2414.             </SizePx>
  2415.  
  2416.             <VisibleCondition xsi:type="StatCondition">
  2417.               <StatId>toolbar_align_to_mountpoint</StatId>
  2418.               <Operator>Above</Operator>
  2419.               <Value>0.5</Value>
  2420.             </VisibleCondition>
  2421.  
  2422.             <Texture>BlockRotate</Texture>
  2423.             <ColorMask>
  2424.               <X>0.734375</X>
  2425.               <Y>0.9137254901960784</Y>
  2426.               <Z>0.9647058823529412</Z>
  2427.               <W>1</W>
  2428.             </ColorMask>
  2429.           </StatStyle>
  2430.  
  2431.           <!--Block Rotate Off-->
  2432.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2433.             <OffsetPx>
  2434.               <X>-33</X>
  2435.               <Y>-60</Y>
  2436.             </OffsetPx>
  2437.             <SizePx>
  2438.               <X>44</X>
  2439.               <Y>44</Y>
  2440.             </SizePx>
  2441.  
  2442.             <VisibleCondition xsi:type="StatCondition">
  2443.               <StatId>toolbar_align_to_mountpoint</StatId>
  2444.               <Operator>Below</Operator>
  2445.               <Value>0.5</Value>
  2446.             </VisibleCondition>
  2447.  
  2448.             <Texture>BlockRotate</Texture>
  2449.             <ColorMask>
  2450.               <X>0.734375</X>
  2451.               <Y>0.9137254901960784</Y>
  2452.               <Z>0.9647058823529412</Z>
  2453.               <W>1</W>
  2454.             </ColorMask>
  2455.           </StatStyle>
  2456.  
  2457.           <!--Block Rotate Keybind-->
  2458.  
  2459.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  2460.  
  2461.             <OffsetPx>
  2462.               <X>48</X>
  2463.               <Y>-27</Y>
  2464.             </OffsetPx>
  2465.             <SizePx>
  2466.               <X>16</X>
  2467.               <Y>16</Y>
  2468.             </SizePx>
  2469.  
  2470.             <FadeInTimeMs>100</FadeInTimeMs>
  2471.             <FadeOutTimeMs>500</FadeOutTimeMs>
  2472.  
  2473.             <VisibleCondition xsi:type="StatCondition">
  2474.               <StatId>hud_show_states</StatId>
  2475.               <Operator>Above</Operator>
  2476.               <Value>0.5</Value>
  2477.             </VisibleCondition>
  2478.  
  2479.             <Text>{GAME_CONTROL:CUBE_DEFAULT_MOUNTPOINT}</Text>
  2480.             <Font>White</Font>
  2481.             <Scale>0.6</Scale>
  2482.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  2483.           </StatStyle>
  2484.  
  2485.           <!--Grid Mirror On-->
  2486.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2487.  
  2488.             <OffsetPx>
  2489.               <X>83</X>
  2490.               <Y>-60</Y>
  2491.             </OffsetPx>
  2492.             <SizePx>
  2493.               <X>44</X>
  2494.               <Y>44</Y>
  2495.             </SizePx>
  2496.  
  2497.             <VisibleCondition xsi:type="StatCondition">
  2498.               <StatId>toolbar_symmetry</StatId>
  2499.               <Operator>Above</Operator>
  2500.               <Value>0.5</Value>
  2501.             </VisibleCondition>
  2502.  
  2503.             <Texture>GridMirror</Texture>
  2504.             <ColorMask>
  2505.               <X>0.734375</X>
  2506.               <Y>0.9137254901960784</Y>
  2507.               <Z>0.9647058823529412</Z>
  2508.               <W>1</W>
  2509.             </ColorMask>
  2510.           </StatStyle>
  2511.  
  2512.           <!--Grid Mirror Off-->
  2513.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2514.  
  2515.             <OffsetPx>
  2516.               <X>83</X>
  2517.               <Y>-60</Y>
  2518.             </OffsetPx>
  2519.             <SizePx>
  2520.               <X>44</X>
  2521.               <Y>44</Y>
  2522.             </SizePx>
  2523.  
  2524.             <VisibleCondition xsi:type="StatCondition">
  2525.               <StatId>toolbar_symmetry</StatId>
  2526.               <Operator>Below</Operator>
  2527.               <Value>0.5</Value>
  2528.             </VisibleCondition>
  2529.  
  2530.             <Texture>GridMirror</Texture>
  2531.             <ColorMask>
  2532.               <X>0.734375</X>
  2533.               <Y>0.9137254901960784</Y>
  2534.               <Z>0.9647058823529412</Z>
  2535.               <W>0.5</W>
  2536.             </ColorMask>
  2537.           </StatStyle>
  2538.  
  2539.           <!--Block Mirror Keybind-->
  2540.  
  2541.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  2542.             <OffsetPx>
  2543.               <X>97</X>
  2544.               <Y>-27</Y>
  2545.             </OffsetPx>
  2546.             <SizePx>
  2547.               <X>16</X>
  2548.               <Y>16</Y>
  2549.             </SizePx>
  2550.  
  2551.             <FadeInTimeMs>100</FadeInTimeMs>
  2552.             <FadeOutTimeMs>500</FadeOutTimeMs>
  2553.  
  2554.             <VisibleCondition xsi:type="StatCondition">
  2555.               <StatId>hud_show_states</StatId>
  2556.               <Operator>Above</Operator>
  2557.               <Value>0.5</Value>
  2558.             </VisibleCondition>
  2559.  
  2560.             <Text>{GAME_CONTROL:USE_SYMMETRY}</Text>
  2561.             <Font>White</Font>
  2562.             <Scale>0.6</Scale>
  2563.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  2564.           </StatStyle>
  2565.         </StatStyles>
  2566.       </StatControl>
  2567.  
  2568.       <!--Toolbar BackgroundGradient-->
  2569.       <!--<StatControl>
  2570.        <Position>
  2571.          <X>0</X>
  2572.          <Y>0</Y>
  2573.        </Position>
  2574.        <OriginAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</OriginAlign>
  2575.  
  2576.        <StatStyles>
  2577.          <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2578.            <StatId>player_helmet</StatId>
  2579.            <OffsetPx>
  2580.              <X>-960</X>
  2581.              <Y>275</Y>
  2582.            </OffsetPx>
  2583.            <SizePx>
  2584.              <X>1920</X>
  2585.              <Y>350</Y>
  2586.            </SizePx>
  2587.  
  2588.            <VisibleCondition xsi:type="StatCondition">
  2589.              <Operator>Above</Operator>
  2590.              <Value>0.5</Value>
  2591.              <StatId>player_helmet</StatId>
  2592.            </VisibleCondition>
  2593.  
  2594.            <Texture>BackgroundGradient</Texture>
  2595.            <ColorMask>
  2596.              <X>0</X>
  2597.              <Y>0</Y>
  2598.              <Z>0</Z>
  2599.              <W>0</W>
  2600.            </ColorMask>
  2601.          </StatStyle>
  2602.        </StatStyles>
  2603.      </StatControl>-->
  2604.  
  2605.       <!--Helmet Visor Glass-->
  2606.       <!--<StatControl>
  2607.        <Position>
  2608.          <X>0</X>
  2609.          <Y>0</Y>
  2610.        </Position>
  2611.        <OriginAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</OriginAlign>
  2612.  
  2613.        <StatStyles>
  2614.          <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2615.            <StatId>player_helmet</StatId>
  2616.            <OffsetPx>
  2617.              <X>-960</X>
  2618.              <Y>-540</Y>
  2619.            </OffsetPx>
  2620.            <SizePx>
  2621.              <X>1920</X>
  2622.              <Y>1080</Y>
  2623.            </SizePx>
  2624.  
  2625.            <VisibleCondition xsi:type="StatCondition">
  2626.              <Operator>Above</Operator>
  2627.              <Value>0.5</Value>
  2628.              <StatId>player_helmet</StatId>
  2629.            </VisibleCondition>
  2630.  
  2631.            <Texture>HelmetVisorGlass</Texture>
  2632.          </StatStyle>
  2633.        </StatStyles>
  2634.      </StatControl>-->
  2635.       <!--Helmet Visor Top Left-->
  2636.       <!--<StatControl>
  2637.        <Position>
  2638.          <X>0</X>
  2639.          <Y>0</Y>
  2640.        </Position>
  2641.        <OriginAlign>HORISONTAL_LEFT_AND_VERTICAL_TOP</OriginAlign>
  2642.        <StatStyles>
  2643.          <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2644.            <StatId>player_helmet</StatId>
  2645.            <StatCriticalValue>0</StatCriticalValue>
  2646.            <OffsetPx>
  2647.              <X>0</X>
  2648.              <Y>0</Y>
  2649.            </OffsetPx>
  2650.            <SizePx>
  2651.              <X>316</X>
  2652.              <Y>143</Y>
  2653.            </SizePx>
  2654.  
  2655.            <Texture>HelmetVisorTopLeft</Texture>
  2656.            <ColorMask>
  2657.              <X>1</X>
  2658.              <Y>1</Y>
  2659.              <Z>1</Z>
  2660.              <W>1</W>
  2661.            </ColorMask>
  2662.          </StatStyle>
  2663.        </StatStyles>
  2664.      </StatControl>-->
  2665.       <!--Helmet Visor Top Right-->
  2666.       <!--<StatControl>
  2667.        <Position>
  2668.          <X>-0.187</X>
  2669.          <Y>0</Y>
  2670.        </Position>
  2671.        <OriginAlign>HORISONTAL_RIGHT_AND_VERTICAL_TOP</OriginAlign>
  2672.        <StatStyles>
  2673.          <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2674.            <StatId>player_helmet</StatId>
  2675.            <StatCriticalValue>0</StatCriticalValue>
  2676.            <OffsetPx>
  2677.              <X>0</X>
  2678.              <Y>0</Y>
  2679.            </OffsetPx>
  2680.            <SizePx>
  2681.              <X>316</X>
  2682.              <Y>143</Y>
  2683.            </SizePx>
  2684.  
  2685.            <Texture>HelmetVisorTopRight</Texture>
  2686.            <ColorMask>
  2687.              <X>1</X>
  2688.              <Y>1</Y>
  2689.              <Z>1</Z>
  2690.              <W>1</W>
  2691.            </ColorMask>
  2692.          </StatStyle>
  2693.        </StatStyles>
  2694.      </StatControl>-->
  2695.       <!--Helmet Visor Bottom Left-->
  2696.  
  2697.       <!--<StatControl>
  2698.        <Position>
  2699.          <X>0</X>
  2700.          <Y>-0.19</Y>
  2701.        </Position>
  2702.        <OriginAlign>HORISONTAL_LEFT_AND_VERTICAL_BOTTOM</OriginAlign>
  2703.        <StatStyles>
  2704.          <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2705.            <StatId>player_helmet</StatId>
  2706.            <StatCriticalValue>0</StatCriticalValue>
  2707.            <OffsetPx>
  2708.              <X>0</X>
  2709.              <Y>0</Y>
  2710.            </OffsetPx>
  2711.            <SizePx>
  2712.              <X>481</X>
  2713.              <Y>208</Y>
  2714.            </SizePx>
  2715.  
  2716.            <Texture>HelmetVisorBottomLeft</Texture>
  2717.            <ColorMask>
  2718.              <X>1</X>
  2719.              <Y>1</Y>
  2720.              <Z>1</Z>
  2721.              <W>1</W>
  2722.            </ColorMask>
  2723.          </StatStyle>
  2724.        </StatStyles>
  2725.      </StatControl>-->
  2726.  
  2727.       <!--Helmet Visor Bottom Right-->
  2728.  
  2729.       <!--<StatControl>
  2730.        <Position>
  2731.          <X>-0.285</X>
  2732.          <Y>-0.19</Y>
  2733.        </Position>
  2734.        <OriginAlign>HORISONTAL_RIGHT_AND_VERTICAL_BOTTOM</OriginAlign>
  2735.        <StatStyles>
  2736.          <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2737.            <StatId>player_helmet</StatId>
  2738.            <StatCriticalValue>0</StatCriticalValue>
  2739.            <OffsetPx>
  2740.              <X>0</X>
  2741.              <Y>0</Y>
  2742.            </OffsetPx>
  2743.            <SizePx>
  2744.              <X>481</X>
  2745.              <Y>208</Y>
  2746.            </SizePx>
  2747.  
  2748.            <Texture>HelmetVisorBottomRight</Texture>
  2749.            <ColorMask>
  2750.              <X>1</X>
  2751.              <Y>1</Y>
  2752.              <Z>1</Z>
  2753.              <W>1</W>
  2754.            </ColorMask>
  2755.          </StatStyle>
  2756.        </StatStyles>
  2757.      </StatControl>-->
  2758.  
  2759.       <!--Helmet Visor Bottom-->
  2760.       <!--<StatControl>
  2761.        <Position>
  2762.          <X>0</X>
  2763.          <Y>-0.155</Y>
  2764.        </Position>
  2765.        <OriginAlign>HORISONTAL_CENTER_AND_VERTICAL_BOTTOM</OriginAlign>
  2766.        <StatStyles>
  2767.          <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2768.            <StatId>player_helmet</StatId>
  2769.            <StatCriticalValue>0</StatCriticalValue>
  2770.            <OffsetPx>
  2771.              <X>-960</X>
  2772.              <Y>0</Y>
  2773.            </OffsetPx>
  2774.            <SizePx>
  2775.              <X>1920</X>
  2776.              <Y>176</Y>
  2777.            </SizePx>
  2778.  
  2779.            <Texture>HelmetVisorBottom</Texture>
  2780.            <ColorMask>
  2781.              <X>1</X>
  2782.              <Y>1</Y>
  2783.              <Z>1</Z>
  2784.              <W>1</W>
  2785.            </ColorMask>
  2786.          </StatStyle>
  2787.        </StatStyles>
  2788.      </StatControl>-->
  2789.      
  2790.      
  2791.       <!--HAZARD ICONS-->
  2792.      
  2793.       <StatControl>
  2794.         <Position>
  2795.           <X>0.0</X>
  2796.           <Y>-0.25</Y>
  2797.         </Position>
  2798.         <OriginAlign>HORISONTAL_CENTER_AND_VERTICAL_BOTTOM</OriginAlign>
  2799.         <StatStyles>
  2800.           <!-- Suffocating -->
  2801.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2802.             <StatId>player_suffocating</StatId>
  2803.             <OffsetPx>
  2804.               <X>45</X>
  2805.               <Y>40</Y>
  2806.             </OffsetPx>
  2807.             <SizePx>
  2808.               <X>80</X>
  2809.               <Y>80</Y>
  2810.             </SizePx>
  2811.  
  2812.             <FadeInTimeMs>500</FadeInTimeMs>
  2813.             <FadeOutTimeMs>1000</FadeOutTimeMs>
  2814.  
  2815.             <VisibleCondition xsi:type="StatCondition">
  2816.                 <StatId>player_suffocating</StatId>
  2817.                 <Value>0.5</Value>
  2818.                 <Operator>Above</Operator>
  2819.             </VisibleCondition>
  2820.  
  2821.             <BlinkCondition xsi:type="StatCondition">
  2822.               <StatId>player_suffocating</StatId>
  2823.               <Value>0.5</Value>
  2824.               <Operator>Above</Operator>
  2825.             </BlinkCondition>
  2826.  
  2827.             <Texture>Suffocating</Texture>
  2828.           </StatStyle>
  2829.  
  2830.           <!-- HealthLow -->
  2831.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2832.             <StatId>player_health</StatId>
  2833.             <OffsetPx>
  2834.               <X>-40</X>
  2835.               <Y>40</Y>
  2836.             </OffsetPx>
  2837.             <SizePx>
  2838.               <X>80</X>
  2839.               <Y>80</Y>
  2840.             </SizePx>
  2841.  
  2842.             <FadeInTimeMs>500</FadeInTimeMs>
  2843.             <FadeOutTimeMs>1000</FadeOutTimeMs>
  2844.  
  2845.             <VisibleCondition xsi:type="Condition">
  2846.               <Operator>Or</Operator>
  2847.               <Terms>
  2848.                 <Term xsi:type="Condition">
  2849.                   <Operator>And</Operator>
  2850.                   <Terms>
  2851.                     <Term xsi:type="StatCondition">
  2852.                       <StatId>player_health</StatId>
  2853.                       <Value>0.3</Value>
  2854.                       <Operator>Below</Operator>
  2855.                     </Term>
  2856.                     <Term xsi:type="StatCondition">
  2857.                       <StatId>hud_show_states</StatId>
  2858.                       <Value>0.5</Value>
  2859.                       <Operator>Above</Operator>
  2860.                     </Term>
  2861.                   </Terms>
  2862.                 </Term>
  2863.                 <Term xsi:type="StatCondition">
  2864.                   <StatId>player_health</StatId>
  2865.                   <Value>0.3</Value>
  2866.                   <Operator>Below</Operator>
  2867.                 </Term>
  2868.               </Terms>
  2869.             </VisibleCondition>
  2870.  
  2871.             <BlinkCondition xsi:type="StatCondition">
  2872.               <StatId>player_health</StatId>
  2873.               <Value>0.3</Value>
  2874.               <Operator>Below</Operator>
  2875.             </BlinkCondition>
  2876.  
  2877.             <Texture>HealthLow</Texture>
  2878.           </StatStyle>
  2879.  
  2880.           <!-- Capacity -->
  2881.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2882.             <OffsetPx>
  2883.               <X>-125</X>
  2884.               <Y>40</Y>
  2885.             </OffsetPx>
  2886.             <SizePx>
  2887.               <X>80</X>
  2888.               <Y>80</Y>
  2889.             </SizePx>
  2890.  
  2891.             <FadeInTimeMs>100</FadeInTimeMs>
  2892.             <FadeOutTimeMs>500</FadeOutTimeMs>
  2893.  
  2894.             <VisibleCondition xsi:type="StatCondition">
  2895.               <StatId>player_inventory_full</StatId>
  2896.               <Value>0.5</Value>
  2897.               <Operator>Above</Operator>
  2898.             </VisibleCondition>
  2899.  
  2900.             <BlinkCondition xsi:type="StatCondition">
  2901.               <StatId>player_inventory_full</StatId>
  2902.               <Value>0.5</Value>
  2903.               <Operator>Above</Operator>            
  2904.             </BlinkCondition>
  2905.  
  2906.             <Blink>
  2907.               <MinAlpha>0.5</MinAlpha>
  2908.               <MaxAlpha>1</MaxAlpha>
  2909.               <IntervalMs>300</IntervalMs>
  2910.             </Blink>
  2911.             <Texture>Capacity</Texture>
  2912.           </StatStyle>
  2913.         </StatStyles>
  2914.       </StatControl>
  2915.       <!-- ****************************************************************************************************************************************************************************************
  2916.      ****************** RIGHT PLATE ****************************************************** RIGHT PLATE *************************************************** RIGHT PLATE ***************************
  2917.      *********************************************************************************************************************************************************************************************-->
  2918.       <StatControl>
  2919.         <Position>
  2920.           <X>-0.003</X>
  2921.           <Y>-0</Y>
  2922.         </Position>
  2923.         <OriginAlign>HORISONTAL_RIGHT_AND_VERTICAL_BOTTOM</OriginAlign>
  2924.         <StatStyles>
  2925.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  2926.             <OffsetPx>
  2927.               <X>-275</X>
  2928.               <Y>-175</Y>
  2929.             </OffsetPx>
  2930.             <SizePx>
  2931.               <X>270</X>
  2932.               <Y>171</Y>
  2933.             </SizePx>
  2934.  
  2935.             <!--<VisibleCondition xsi:type="StatCondition">
  2936.              <Operator>Above</Operator>
  2937.              <Value>0.5</Value>
  2938.              <StatId>controlled_is_grid</StatId>
  2939.            </VisibleCondition>-->
  2940.  
  2941.             <Texture>RightPlate</Texture>
  2942.           </StatStyle>
  2943.  
  2944.           <!--Mass Value On-->
  2945.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  2946.             <StatId>controlled_mass</StatId>
  2947.  
  2948.             <OffsetPx>
  2949.               <X>-82</X>
  2950.               <Y>-140</Y>
  2951.             </OffsetPx>
  2952.             <SizePx>
  2953.               <X>16</X>
  2954.               <Y>16</Y>
  2955.             </SizePx>
  2956.          
  2957.             <VisibleCondition xsi:type="StatCondition">
  2958.               <StatId>controlled_is_grid</StatId>
  2959.               <Value>0.5</Value>
  2960.               <Operator>Above</Operator>
  2961.             </VisibleCondition>
  2962.  
  2963.             <Text>{STAT} Kg</Text>
  2964.             <Font>Blue</Font>
  2965.             <Scale>0.7</Scale>
  2966.             <ColorMask>
  2967.               <X>1</X>
  2968.               <Y>1</Y>
  2969.               <Z>1</Z>
  2970.               <W>0.8</W>
  2971.             </ColorMask>
  2972.             <TextAlign>HORISONTAL_RIGHT_AND_VERTICAL_CENTER</TextAlign>
  2973.           </StatStyle>
  2974.  
  2975.           <!--Mass Value Off-->
  2976.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  2977.             <StatId>controlled_mass</StatId>
  2978.  
  2979.             <OffsetPx>
  2980.               <X>-82</X>
  2981.               <Y>-140</Y>
  2982.             </OffsetPx>
  2983.             <SizePx>
  2984.               <X>16</X>
  2985.               <Y>16</Y>
  2986.             </SizePx>
  2987.  
  2988.             <VisibleCondition xsi:type="StatCondition">
  2989.               <StatId>controlled_is_grid</StatId>
  2990.               <Value>0.5</Value>
  2991.               <Operator>Below</Operator>
  2992.             </VisibleCondition>
  2993.  
  2994.             <Text>{STAT} Kg</Text>
  2995.             <Font>Blue</Font>
  2996.             <Scale>0.7</Scale>
  2997.             <ColorMask>
  2998.               <X>1</X>
  2999.               <Y>1</Y>
  3000.               <Z>1</Z>
  3001.               <W>0.5</W>
  3002.             </ColorMask>
  3003.             <TextAlign>HORISONTAL_RIGHT_AND_VERTICAL_CENTER</TextAlign>
  3004.           </StatStyle>
  3005.          
  3006.           <!--Mass Icon On-->
  3007.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3008.             <StatId>controlled_mass</StatId>
  3009.  
  3010.             <OffsetPx>
  3011.               <X>-65</X>
  3012.               <Y>-142</Y>
  3013.             </OffsetPx>
  3014.             <SizePx>
  3015.               <X>24</X>
  3016.               <Y>24</Y>
  3017.             </SizePx>
  3018.  
  3019.             <VisibleCondition xsi:type="StatCondition">
  3020.               <StatId>controlled_is_grid</StatId>
  3021.               <Value>0.5</Value>
  3022.               <Operator>Above</Operator>
  3023.             </VisibleCondition>
  3024.  
  3025.             <Texture>Mass</Texture>
  3026.           </StatStyle>
  3027.  
  3028.           <!--Mass Icon Off-->
  3029.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3030.             <StatId>controlled_mass</StatId>
  3031.  
  3032.             <OffsetPx>
  3033.               <X>-65</X>
  3034.               <Y>-142</Y>
  3035.             </OffsetPx>
  3036.             <SizePx>
  3037.               <X>24</X>
  3038.               <Y>24</Y>
  3039.             </SizePx>
  3040.  
  3041.             <VisibleCondition xsi:type="StatCondition">
  3042.               <StatId>controlled_is_grid</StatId>
  3043.               <Value>0.5</Value>
  3044.               <Operator>Below</Operator>
  3045.             </VisibleCondition>
  3046.  
  3047.             <Texture>Mass</Texture>
  3048.             <ColorMask>
  3049.               <X>1</X>
  3050.               <Y>1</Y>
  3051.               <Z>1</Z>
  3052.               <W>0.5</W>
  3053.             </ColorMask>
  3054.           </StatStyle>
  3055.          
  3056.           <!--Energy Progress Bar-->
  3057.        
  3058.           <StatStyle xsi:type="MyObjectBuilder_ProgressBarStatVisualStyle">
  3059.             <StatId>controlled_power_usage</StatId>
  3060.             <OffsetPx>
  3061.               <X>-220</X>
  3062.               <Y>-93</Y>
  3063.             </OffsetPx>
  3064.             <SizePx>
  3065.               <X>150</X>
  3066.               <Y>9</Y>
  3067.             </SizePx>
  3068.  
  3069.             <!--<VisibleCondition xsi:type="StatCondition">
  3070.              <StatId>controlled_is_grid</StatId>
  3071.              <Value>0.5</Value>
  3072.              <Operator>Above</Operator>
  3073.            </VisibleCondition>-->
  3074.  
  3075.             <BlinkCondition xsi:type="StatCondition">
  3076.               <StatId>controlled_power_usage</StatId>
  3077.               <Value>0.9</Value>
  3078.               <Operator>Above</Operator>
  3079.             </BlinkCondition>
  3080.  
  3081.             <Inverted>true</Inverted>  
  3082.            
  3083.             <SimpleStyle>
  3084.               <BackgroundTexture>ProgressBar_Background</BackgroundTexture>
  3085.               <ProgressTexture>ProgressBar_Bar</ProgressTexture>              
  3086.               <ProgressTextureOffsetPx>
  3087.                 <X>0</X>
  3088.                 <Y>0</Y>
  3089.               </ProgressTextureOffsetPx>
  3090.               <ProgressColorMask>
  3091.                 <X>0.734375</X>
  3092.                 <Y>0.9137254901960784</Y>
  3093.                 <Z>0.9647058823529412</Z>
  3094.                 <W>1</W>
  3095.               </ProgressColorMask>
  3096.               <BackgroundColorMask>
  3097.                 <X>0.3137</X>
  3098.                 <Y>0.3607</Y>
  3099.                 <Z>0.4039</Z>
  3100.                 <W>1</W>
  3101.               </BackgroundColorMask>
  3102.             </SimpleStyle>
  3103.           </StatStyle>
  3104.          
  3105.           <!--Energy Stat Value On-->
  3106.          
  3107.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  3108.             <StatId>controlled_power_usage</StatId>
  3109.            
  3110.             <OffsetPx>
  3111.               <X>-245</X>
  3112.               <Y>-99</Y>
  3113.             </OffsetPx>
  3114.             <SizePx>
  3115.               <X>16</X>
  3116.               <Y>16</Y>
  3117.             </SizePx>
  3118.  
  3119.             <VisibleCondition xsi:type="StatCondition">
  3120.               <StatId>controlled_is_grid</StatId>
  3121.               <Value>0.5</Value>
  3122.               <Operator>Above</Operator>
  3123.             </VisibleCondition>
  3124.  
  3125.             <BlinkCondition xsi:type="StatCondition">
  3126.               <StatId>controlled_power_usage</StatId>
  3127.               <Value>0.9</Value>
  3128.               <Operator>Above</Operator>
  3129.             </BlinkCondition>
  3130.  
  3131.             <Percentage>true</Percentage>
  3132.             <Precision>0</Precision>
  3133.             <Text>{STAT}</Text>
  3134.             <Font>White</Font>
  3135.             <Scale>0.7</Scale>
  3136.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  3137.           </StatStyle>
  3138.  
  3139.           <!--Energy Stat Value Off-->
  3140.  
  3141.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  3142.             <StatId>controlled_power_usage</StatId>
  3143.  
  3144.             <OffsetPx>
  3145.               <X>-245</X>
  3146.               <Y>-99</Y>
  3147.             </OffsetPx>
  3148.             <SizePx>
  3149.               <X>16</X>
  3150.               <Y>16</Y>
  3151.             </SizePx>
  3152.  
  3153.             <VisibleCondition xsi:type="StatCondition">
  3154.               <StatId>controlled_is_grid</StatId>
  3155.               <Value>0.5</Value>
  3156.               <Operator>Below</Operator>
  3157.             </VisibleCondition>
  3158.  
  3159.             <BlinkCondition xsi:type="StatCondition">
  3160.               <StatId>controlled_power_usage</StatId>
  3161.               <Value>0.9</Value>
  3162.               <Operator>Below</Operator>
  3163.             </BlinkCondition>
  3164.  
  3165.             <Percentage>true</Percentage>
  3166.             <Precision>0</Precision>
  3167.             <Text>{STAT}</Text>
  3168.             <Font>White</Font>
  3169.             <Scale>0.7</Scale>
  3170.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  3171.             <ColorMask>
  3172.               <X>1</X>
  3173.               <Y>1</Y>
  3174.               <Z>1</Z>
  3175.               <W>0.5</W>
  3176.             </ColorMask>
  3177.           </StatStyle>
  3178.          
  3179.           <!--Energy Icon On-->
  3180.        
  3181.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3182.             <StatId>controlled_power_usage</StatId>
  3183.  
  3184.             <OffsetPx>
  3185.               <X>-65</X>
  3186.               <Y>-101</Y>
  3187.             </OffsetPx>
  3188.             <SizePx>
  3189.               <X>24</X>
  3190.               <Y>24</Y>
  3191.             </SizePx>
  3192.  
  3193.             <VisibleCondition xsi:type="StatCondition">
  3194.               <StatId>controlled_is_grid</StatId>
  3195.               <Value>0.5</Value>
  3196.               <Operator>Above</Operator>
  3197.             </VisibleCondition>
  3198.  
  3199.             <Texture>EnergyIcon</Texture>
  3200.           </StatStyle>
  3201.          
  3202.           <!--Energy Icon Off-->
  3203.  
  3204.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3205.             <StatId>controlled_power_usage</StatId>
  3206.  
  3207.             <OffsetPx>
  3208.               <X>-65</X>
  3209.               <Y>-101</Y>
  3210.             </OffsetPx>
  3211.             <SizePx>
  3212.               <X>24</X>
  3213.               <Y>24</Y>
  3214.             </SizePx>
  3215.  
  3216.             <VisibleCondition xsi:type="StatCondition">
  3217.               <StatId>controlled_is_grid</StatId>
  3218.               <Value>0.5</Value>
  3219.               <Operator>Below</Operator>
  3220.             </VisibleCondition>
  3221.  
  3222.             <Texture>EnergyIcon</Texture>
  3223.             <ColorMask>
  3224.               <X>1</X>
  3225.               <Y>1</Y>
  3226.               <Z>1</Z>
  3227.               <W>0.5</W>
  3228.             </ColorMask>
  3229.           </StatStyle>
  3230.  
  3231.           <!--Hydrogen Progress Bar-->
  3232.        
  3233.           <StatStyle xsi:type="MyObjectBuilder_ProgressBarStatVisualStyle">
  3234.             <StatId>controlled_hydrogen_capacity</StatId>
  3235.             <OffsetPx>
  3236.               <X>-220</X>
  3237.               <Y>-65</Y>
  3238.             </OffsetPx>
  3239.             <SizePx>
  3240.               <X>150</X>
  3241.               <Y>9</Y>
  3242.             </SizePx>
  3243.  
  3244.             <!--<VisibleCondition xsi:type="StatCondition">
  3245.              <StatId>controlled_is_grid</StatId>
  3246.              <Value>0.5</Value>
  3247.              <Operator>Above</Operator>
  3248.            </VisibleCondition>-->
  3249.  
  3250.             <Inverted>true</Inverted>
  3251.  
  3252.             <SimpleStyle>
  3253.               <BackgroundTexture>ProgressBar_Background</BackgroundTexture>
  3254.               <ProgressTexture>ProgressBar_Bar</ProgressTexture>              
  3255.               <ProgressTextureOffsetPx>
  3256.                 <X>0</X>
  3257.                 <Y>0</Y>
  3258.               </ProgressTextureOffsetPx>
  3259.               <ProgressColorMask>
  3260.                 <X>0.734375</X>
  3261.                 <Y>0.9137254901960784</Y>
  3262.                 <Z>0.9647058823529412</Z>
  3263.                 <W>1</W>
  3264.               </ProgressColorMask>
  3265.               <BackgroundColorMask>
  3266.                 <X>0.3137</X>
  3267.                 <Y>0.3607</Y>
  3268.                 <Z>0.4039</Z>
  3269.                 <W>1</W>
  3270.               </BackgroundColorMask>
  3271.             </SimpleStyle>
  3272.           </StatStyle>
  3273.          
  3274.           <!--Hydrogen Stat Value On-->
  3275.          
  3276.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  3277.             <StatId>controlled_hydrogen_capacity</StatId>
  3278.             <OffsetPx>
  3279.               <X>-245</X>
  3280.               <Y>-71</Y>
  3281.             </OffsetPx>
  3282.             <SizePx>
  3283.               <X>16</X>
  3284.               <Y>16</Y>
  3285.             </SizePx>
  3286.  
  3287.             <VisibleCondition xsi:type="StatCondition">
  3288.               <StatId>controlled_is_grid</StatId>
  3289.               <Value>0.5</Value>
  3290.               <Operator>Above</Operator>
  3291.             </VisibleCondition>
  3292.  
  3293.             <Percentage>true</Percentage>
  3294.             <Precision>0</Precision>
  3295.             <Text>{STAT}</Text>
  3296.             <Font>White</Font>
  3297.             <Scale>0.7</Scale>
  3298.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  3299.           </StatStyle>
  3300.  
  3301.           <!--Hydrogen Stat Value Off-->
  3302.  
  3303.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  3304.             <StatId>controlled_hydrogen_capacity</StatId>
  3305.             <OffsetPx>
  3306.               <X>-245</X>
  3307.               <Y>-71</Y>
  3308.             </OffsetPx>
  3309.             <SizePx>
  3310.               <X>16</X>
  3311.               <Y>16</Y>
  3312.             </SizePx>
  3313.  
  3314.             <VisibleCondition xsi:type="StatCondition">
  3315.               <StatId>controlled_is_grid</StatId>
  3316.               <Value>0.5</Value>
  3317.               <Operator>Below</Operator>
  3318.             </VisibleCondition>
  3319.  
  3320.             <Percentage>true</Percentage>
  3321.             <Precision>0</Precision>
  3322.             <Text>{STAT}</Text>
  3323.             <Font>White</Font>
  3324.             <Scale>0.7</Scale>
  3325.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  3326.             <ColorMask>
  3327.               <X>1</X>
  3328.               <Y>1</Y>
  3329.               <Z>1</Z>
  3330.               <W>0.5</W>
  3331.             </ColorMask>
  3332.           </StatStyle>
  3333.        
  3334.           <!--Hydrogen Icon On-->
  3335.          
  3336.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3337.  
  3338.             <OffsetPx>
  3339.               <X>-65</X>
  3340.               <Y>-73</Y>
  3341.             </OffsetPx>
  3342.             <SizePx>
  3343.               <X>24</X>
  3344.               <Y>24</Y>
  3345.             </SizePx>
  3346.  
  3347.             <VisibleCondition xsi:type="StatCondition">
  3348.               <StatId>controlled_is_grid</StatId>
  3349.               <Value>0.5</Value>
  3350.               <Operator>Above</Operator>
  3351.             </VisibleCondition>
  3352.  
  3353.             <Texture>HydrogenIcon</Texture>
  3354.           </StatStyle>
  3355.  
  3356.           <!--Hydrogen Icon Off-->
  3357.  
  3358.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3359.  
  3360.             <OffsetPx>
  3361.               <X>-65</X>
  3362.               <Y>-73</Y>
  3363.             </OffsetPx>
  3364.             <SizePx>
  3365.               <X>24</X>
  3366.               <Y>24</Y>
  3367.             </SizePx>
  3368.  
  3369.             <VisibleCondition xsi:type="StatCondition">
  3370.               <StatId>controlled_is_grid</StatId>
  3371.               <Value>0.5</Value>
  3372.               <Operator>Below</Operator>
  3373.             </VisibleCondition>
  3374.  
  3375.             <Texture>HydrogenIcon</Texture>
  3376.             <ColorMask>
  3377.               <X>1</X>
  3378.               <Y>1</Y>
  3379.               <Z>1</Z>
  3380.               <W>0.5</W>
  3381.             </ColorMask>
  3382.           </StatStyle>
  3383.  
  3384.           <!-- Grid Icons -->
  3385.           <!-- Hadnbreak Background -->
  3386.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3387.             <OffsetPx>
  3388.               <X>-209</X>
  3389.               <Y>-234</Y>
  3390.             </OffsetPx>
  3391.             <SizePx>
  3392.               <X>60</X>
  3393.               <Y>60</Y>
  3394.             </SizePx>
  3395.  
  3396.             <Texture>IconsBackground</Texture>
  3397.           </StatStyle>
  3398.           <!--Handbreak On-->
  3399.  
  3400.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3401.             <StatId>controlled_handbreak</StatId>
  3402.  
  3403.             <OffsetPx>
  3404.               <X>-208</X>
  3405.               <Y>-234</Y>
  3406.             </OffsetPx>
  3407.             <SizePx>
  3408.               <X>60</X>
  3409.               <Y>60</Y>
  3410.             </SizePx>
  3411.  
  3412.             <FadeInTimeMs>100</FadeInTimeMs>
  3413.             <FadeOutTimeMs>500</FadeOutTimeMs>
  3414.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  3415.  
  3416.             <VisibleCondition xsi:type="Condition">
  3417.               <Operator>Or</Operator>
  3418.               <Terms>
  3419.                 <Term xsi:type="Condition">
  3420.                   <Operator>And</Operator>
  3421.                   <Terms>
  3422.                     <Term xsi:type="StatCondition">
  3423.                       <StatId>controlled_handbreak</StatId>
  3424.                       <Value>0.5</Value>
  3425.                       <Operator>Above</Operator>
  3426.                     </Term>
  3427.                     <Term xsi:type="StatCondition">
  3428.                       <StatId>hud_show_states</StatId>
  3429.                       <Value>0.5</Value>
  3430.                       <Operator>Above</Operator>
  3431.                     </Term>
  3432.                   </Terms>
  3433.                 </Term>
  3434.                 <Term xsi:type="Condition">
  3435.                   <Operator>And</Operator>
  3436.                   <Terms>
  3437.                     <Term xsi:type="StatCondition">
  3438.                       <StatId>controlled_handbreak</StatId>
  3439.                       <Value>0.5</Value>
  3440.                       <Operator>Above</Operator>
  3441.                     </Term>
  3442.                     <Term xsi:type="StatCondition">
  3443.                       <StatId>controlled_is_grid</StatId>
  3444.                       <Value>0.5</Value>
  3445.                       <Operator>Above</Operator>
  3446.                     </Term>
  3447.                   </Terms>
  3448.                 </Term>
  3449.               </Terms>
  3450.             </VisibleCondition>
  3451.  
  3452.             <Texture>Handbrake</Texture>
  3453.           </StatStyle>
  3454.  
  3455.           <!--Handbreak Off-->
  3456.  
  3457.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3458.             <StatId>controlled_handbreak</StatId>
  3459.  
  3460.             <OffsetPx>
  3461.               <X>-208</X>
  3462.               <Y>-234</Y>
  3463.             </OffsetPx>
  3464.             <SizePx>
  3465.               <X>60</X>
  3466.               <Y>60</Y>
  3467.             </SizePx>
  3468.  
  3469.             <FadeInTimeMs>100</FadeInTimeMs>
  3470.             <FadeOutTimeMs>500</FadeOutTimeMs>
  3471.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  3472.  
  3473.             <VisibleCondition xsi:type="Condition">
  3474.               <Operator>Or</Operator>
  3475.               <Terms>
  3476.                 <Term xsi:type="StatCondition">
  3477.                   <StatId>controlled_is_grid</StatId>
  3478.                   <Value>0.5</Value>
  3479.                   <Operator>Below</Operator>
  3480.                 </Term>
  3481.                 <Term xsi:type="StatCondition">
  3482.                   <StatId>controlled_handbreak</StatId>
  3483.                   <Value>0.5</Value>
  3484.                   <Operator>Below</Operator>
  3485.                 </Term>
  3486.               </Terms>
  3487.             </VisibleCondition>
  3488.  
  3489.             <Texture>Handbrake</Texture>
  3490.             <ColorMask>
  3491.               <X>1</X>
  3492.               <Y>1</Y>
  3493.               <Z>1</Z>
  3494.               <W>0.5</W>
  3495.             </ColorMask>
  3496.           </StatStyle>
  3497.  
  3498.           <!--Handbreak Keybind-->
  3499.          
  3500.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  3501.             <StatId>controlled_handbreak</StatId>
  3502.             <StatCriticalValue>0</StatCriticalValue>
  3503.             <OffsetPx>
  3504.               <X>-187</X>
  3505.               <Y>-234</Y>
  3506.             </OffsetPx>
  3507.             <SizePx>
  3508.               <X>16</X>
  3509.               <Y>16</Y>
  3510.             </SizePx>
  3511.  
  3512.             <FadeInTimeMs>100</FadeInTimeMs>
  3513.             <FadeOutTimeMs>500</FadeOutTimeMs>
  3514.  
  3515.             <VisibleCondition xsi:type="StatCondition">
  3516.               <StatId>hud_show_states</StatId>
  3517.               <Operator>Above</Operator>
  3518.               <Value>0.5</Value>
  3519.             </VisibleCondition>
  3520.  
  3521.             <Text>P</Text>
  3522.             <Font>White</Font>
  3523.             <Scale>0.6</Scale>
  3524.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  3525.           </StatStyle>
  3526.  
  3527.           <!--RemoteControlOn-->
  3528.           <!--
  3529.          <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3530.            <StatId>controlled_remote_access</StatId>
  3531.  
  3532.            <OffsetPx>
  3533.              <X>165</X>
  3534.              <Y>0</Y>
  3535.            </OffsetPx>
  3536.            <SizePx>
  3537.              <X>50</X>
  3538.              <Y>50</Y>
  3539.            </SizePx>
  3540.  
  3541.            <FadeInTimeMs>100</FadeInTimeMs>
  3542.            <FadeOutTimeMs>500</FadeOutTimeMs>
  3543.            <MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>
  3544.  
  3545.            <VisibleCondition xsi:type="Condition">
  3546.              <Operator>Or</Operator>
  3547.              <Terms>
  3548.                <Term xsi:type="Condition">
  3549.                  <Operator>And</Operator>
  3550.                  <Terms>
  3551.                    <Term xsi:type="StatCondition">
  3552.                      <StatId>controlled_remote_access</StatId>
  3553.                      <Value>0.5</Value>
  3554.                      <Operator>Above</Operator>
  3555.                    </Term>
  3556.                    <Term xsi:type="StatCondition">
  3557.                      <StatId>hud_show_states</StatId>
  3558.                      <Value>0.5</Value>
  3559.                      <Operator>Above</Operator>
  3560.                    </Term>
  3561.                  </Terms>
  3562.                </Term>
  3563.                <Term xsi:type="StatCondition">
  3564.                  <StatId>controlled_remote_access</StatId>
  3565.                  <Value>0.5</Value>
  3566.                  <Operator>Above</Operator>
  3567.                </Term>
  3568.              </Terms>
  3569.            </VisibleCondition>
  3570.  
  3571.            <Texture>RemoteControlOn</Texture>
  3572.            <ColorMask>
  3573.              <X>0.734375</X>
  3574.              <Y>0.9137254901960784</Y>
  3575.              <Z>0.9647058823529412</Z>
  3576.              <W>1</W>
  3577.            </ColorMask>
  3578.          </StatStyle>
  3579.          -->
  3580.           <!--RemoteControl Keybind-->
  3581.           <!--
  3582.          <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  3583.  
  3584.            <OffsetPx>
  3585.              <X>195</X>
  3586.              <Y>-15</Y>
  3587.            </OffsetPx>
  3588.            <SizePx>
  3589.              <X>16</X>
  3590.              <Y>16</Y>
  3591.            </SizePx>
  3592.  
  3593.            <VisibleCondition xsi:type="StatCondition">
  3594.              <StatId>hud_show_states</StatId>
  3595.              <Operator>Above</Operator>
  3596.              <Value>0.5</Value>
  3597.            </VisibleCondition>
  3598.  
  3599.            <Text>Shift+K</Text>
  3600.            <Font>White</Font>
  3601.            <Scale>0.6</Scale>
  3602.            <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  3603.          </StatStyle>
  3604.          -->
  3605.  
  3606.           <!--GridBroadcastin Background-->
  3607.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3608.             <OffsetPx>
  3609.               <X>-147</X>
  3610.               <Y>-234</Y>
  3611.             </OffsetPx>
  3612.             <SizePx>
  3613.               <X>60</X>
  3614.               <Y>60</Y>
  3615.             </SizePx>
  3616.  
  3617.             <Texture>IconsBackground</Texture>
  3618.           </StatStyle>
  3619.           <!--GridBroadcastinOn-->
  3620.  
  3621.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3622.             <StatId>controlled_broadcasting</StatId>
  3623.             <OffsetPx>
  3624.               <X>-147</X>
  3625.               <Y>-235</Y>
  3626.             </OffsetPx>
  3627.             <SizePx>
  3628.               <X>60</X>
  3629.               <Y>60</Y>
  3630.             </SizePx>
  3631.  
  3632.             <FadeInTimeMs>100</FadeInTimeMs>
  3633.             <FadeOutTimeMs>500</FadeOutTimeMs>
  3634.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  3635.  
  3636.             <VisibleCondition xsi:type="Condition">
  3637.               <Operator>Or</Operator>
  3638.               <Terms>
  3639.                 <Term xsi:type="Condition">
  3640.                   <Operator>And</Operator>
  3641.                   <Terms>
  3642.                     <Term xsi:type="StatCondition">
  3643.                       <StatId>controlled_is_grid</StatId>
  3644.                       <Value>0.5</Value>
  3645.                       <Operator>Above</Operator>
  3646.                     </Term>
  3647.                     <Term xsi:type="StatCondition">
  3648.                       <StatId>controlled_broadcasting</StatId>
  3649.                       <Value>0.5</Value>
  3650.                       <Operator>Above</Operator>
  3651.                     </Term>
  3652.                     <Term xsi:type="StatCondition">
  3653.                       <StatId>hud_show_states</StatId>
  3654.                       <Value>0.5</Value>
  3655.                       <Operator>Above</Operator>
  3656.                     </Term>
  3657.                   </Terms>
  3658.                 </Term>
  3659.                 <Term xsi:type="Condition">
  3660.                   <Operator>And</Operator>
  3661.                   <Terms>
  3662.                     <Term xsi:type="StatCondition">
  3663.                       <StatId>controlled_is_grid</StatId>
  3664.                       <Value>0.5</Value>
  3665.                       <Operator>Above</Operator>
  3666.                     </Term>
  3667.                     <Term xsi:type="StatCondition">
  3668.                       <StatId>controlled_broadcasting</StatId>
  3669.                       <Value>0.5</Value>
  3670.                       <Operator>Above</Operator>
  3671.                     </Term>
  3672.                   </Terms>
  3673.                 </Term>
  3674.               </Terms>
  3675.             </VisibleCondition>
  3676.  
  3677.             <Texture>GridBroadcastingOn</Texture>
  3678.           </StatStyle>
  3679.  
  3680.           <!--GridBroadcastinOff-->
  3681.  
  3682.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3683.             <StatId>controlled_broadcasting</StatId>
  3684.  
  3685.             <OffsetPx>
  3686.               <X>-147</X>
  3687.               <Y>-234</Y>
  3688.             </OffsetPx>
  3689.             <SizePx>
  3690.               <X>60</X>
  3691.               <Y>60</Y>
  3692.             </SizePx>
  3693.  
  3694.             <FadeInTimeMs>100</FadeInTimeMs>
  3695.             <FadeOutTimeMs>500</FadeOutTimeMs>
  3696.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  3697.  
  3698.             <VisibleCondition xsi:type="Condition">
  3699.               <Operator>Or</Operator>
  3700.               <Terms>
  3701.                 <Term xsi:type="StatCondition">
  3702.                   <StatId>controlled_is_grid</StatId>
  3703.                   <Value>0.5</Value>
  3704.                   <Operator>Below</Operator>
  3705.                 </Term>
  3706.                 <Term xsi:type="StatCondition">
  3707.                   <StatId>controlled_broadcasting</StatId>
  3708.                   <Value>0.5</Value>
  3709.                   <Operator>Below</Operator>
  3710.                 </Term>
  3711.               </Terms>
  3712.             </VisibleCondition>
  3713.  
  3714.             <Texture>GridBroadcastingOn</Texture>
  3715.             <ColorMask>
  3716.               <X>1</X>
  3717.               <Y>1</Y>
  3718.               <Z>1</Z>
  3719.               <W>0.5</W>
  3720.             </ColorMask>
  3721.           </StatStyle>
  3722.  
  3723.           <!--GridBroadcasting Keybind-->
  3724.  
  3725.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  3726.  
  3727.             <OffsetPx>
  3728.               <X>-122</X>
  3729.               <Y>-234</Y>
  3730.             </OffsetPx>
  3731.             <SizePx>
  3732.               <X>16</X>
  3733.               <Y>16</Y>
  3734.             </SizePx>
  3735.  
  3736.             <FadeInTimeMs>100</FadeInTimeMs>
  3737.             <FadeOutTimeMs>500</FadeOutTimeMs>
  3738.  
  3739.             <VisibleCondition xsi:type="StatCondition">
  3740.               <StatId>hud_show_states</StatId>
  3741.               <Operator>Above</Operator>
  3742.               <Value>0.5</Value>
  3743.             </VisibleCondition>
  3744.  
  3745.             <Text>{GAME_CONTROL:BROADCASTING}</Text>
  3746.             <Font>White</Font>
  3747.             <Scale>0.6</Scale>
  3748.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  3749.           </StatStyle>
  3750.  
  3751.           <!--GridPower Background-->
  3752.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3753.             <OffsetPx>
  3754.               <X>-85</X>
  3755.               <Y>-234</Y>
  3756.             </OffsetPx>
  3757.             <SizePx>
  3758.               <X>60</X>
  3759.               <Y>60</Y>
  3760.             </SizePx>
  3761.  
  3762.             <Texture>IconsBackground</Texture>
  3763.           </StatStyle>
  3764.           <!--GridPower On-->
  3765.  
  3766.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3767.             <StatId>controlled_reactors</StatId>
  3768.  
  3769.             <OffsetPx>
  3770.               <X>-85</X>
  3771.               <Y>-234</Y>
  3772.             </OffsetPx>
  3773.             <SizePx>
  3774.               <X>60</X>
  3775.               <Y>60</Y>
  3776.             </SizePx>
  3777.  
  3778.             <FadeInTimeMs>100</FadeInTimeMs>
  3779.             <FadeOutTimeMs>500</FadeOutTimeMs>
  3780.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  3781.  
  3782.             <VisibleCondition xsi:type="Condition">
  3783.               <Operator>Or</Operator>
  3784.               <Terms>
  3785.                 <Term xsi:type="Condition">
  3786.                   <Operator>And</Operator>
  3787.                   <Terms>
  3788.                     <Term xsi:type="StatCondition">
  3789.                       <StatId>controlled_reactors</StatId>
  3790.                       <Value>0.5</Value>
  3791.                       <Operator>Above</Operator>
  3792.                     </Term>
  3793.                     <Term xsi:type="StatCondition">
  3794.                       <StatId>hud_show_states</StatId>
  3795.                       <Value>0.5</Value>
  3796.                       <Operator>Below</Operator>
  3797.                     </Term>
  3798.                   </Terms>
  3799.                 </Term>
  3800.                 <Term xsi:type="StatCondition">
  3801.                   <StatId>controlled_reactors</StatId>
  3802.                   <Value>0.5</Value>
  3803.                   <Operator>Above</Operator>
  3804.                 </Term>
  3805.               </Terms>
  3806.             </VisibleCondition>
  3807.  
  3808.             <Texture>GridPower</Texture>
  3809.           </StatStyle>
  3810.  
  3811.           <!--GridPower Off-->
  3812.  
  3813.           <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3814.             <StatId>controlled_reactors</StatId>
  3815.  
  3816.             <OffsetPx>
  3817.               <X>-85</X>
  3818.               <Y>-234</Y>
  3819.             </OffsetPx>
  3820.             <SizePx>
  3821.               <X>60</X>
  3822.               <Y>60</Y>
  3823.             </SizePx>
  3824.  
  3825.             <FadeInTimeMs>100</FadeInTimeMs>
  3826.             <FadeOutTimeMs>500</FadeOutTimeMs>
  3827.             <!--<MaxOnScreenTimeMs>1000</MaxOnScreenTimeMs>-->
  3828.  
  3829.             <VisibleCondition xsi:type="Condition">
  3830.               <Operator>Or</Operator>
  3831.               <Terms>
  3832.                 <Term xsi:type="Condition">
  3833.                   <Operator>And</Operator>
  3834.                   <Terms>
  3835.                     <Term xsi:type="StatCondition">
  3836.                       <StatId>controlled_reactors</StatId>
  3837.                       <Value>0.5</Value>
  3838.                       <Operator>Below</Operator>
  3839.                     </Term>
  3840.                     <Term xsi:type="StatCondition">
  3841.                       <StatId>hud_show_states</StatId>
  3842.                       <Value>0.5</Value>
  3843.                       <Operator>Below</Operator>
  3844.                     </Term>
  3845.                   </Terms>
  3846.                 </Term>
  3847.                 <Term xsi:type="StatCondition">
  3848.                   <StatId>controlled_reactors</StatId>
  3849.                   <Value>0.5</Value>
  3850.                   <Operator>Below</Operator>
  3851.                 </Term>
  3852.               </Terms>
  3853.             </VisibleCondition>
  3854.  
  3855.             <Texture>GridPower</Texture>
  3856.             <ColorMask>
  3857.               <X>1</X>
  3858.               <Y>1</Y>
  3859.               <Z>1</Z>
  3860.               <W>0.5</W>
  3861.             </ColorMask>
  3862.           </StatStyle>
  3863.          
  3864.           <!--GridPower Keybind-->
  3865.  
  3866.           <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  3867.             <StatId>controlled_reactors</StatId>
  3868.             <StatCriticalValue>0</StatCriticalValue>
  3869.             <OffsetPx>
  3870.               <X>-62</X>
  3871.               <Y>-234</Y>
  3872.             </OffsetPx>
  3873.             <SizePx>
  3874.               <X>16</X>
  3875.               <Y>16</Y>
  3876.             </SizePx>
  3877.  
  3878.             <FadeInTimeMs>100</FadeInTimeMs>
  3879.             <FadeOutTimeMs>500</FadeOutTimeMs>
  3880.  
  3881.  
  3882.             <VisibleCondition xsi:type="StatCondition">
  3883.               <StatId>hud_show_states</StatId>
  3884.               <Operator>Above</Operator>
  3885.               <Value>0.5</Value>
  3886.             </VisibleCondition>
  3887.  
  3888.             <Text>{GAME_CONTROL:TOGGLE_REACTORS}</Text>
  3889.             <Font>White</Font>
  3890.             <Scale>0.6</Scale>
  3891.             <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  3892.           </StatStyle>
  3893.        
  3894.           <!--Cockpit Build Mode-->
  3895.           <!--
  3896.          <StatStyle xsi:type="MyObjectBuilder_ImageStatVisualStyle">
  3897.            <StatId>controlled_reactors</StatId>
  3898.            <OffsetPx>
  3899.              <X>55</X>
  3900.              <Y>0</Y>
  3901.            </OffsetPx>
  3902.            <SizePx>
  3903.              <X>50</X>
  3904.              <Y>50</Y>
  3905.            </SizePx>
  3906.  
  3907.            <Texture>CockpitBuildMode</Texture>
  3908.            <ColorMask>
  3909.              <X>0.734375</X>
  3910.              <Y>0.9137254901960784</Y>
  3911.              <Z>0.9647058823529412</Z>
  3912.              <W>1</W>
  3913.            </ColorMask>
  3914.          </StatStyle>
  3915.          -->
  3916.           <!--Cockpit Build Mode Keybind-->
  3917.           <!--
  3918.          <StatStyle xsi:type="MyObjectBuilder_TextStatVisualStyle">
  3919.            <StatId>controlled_reactors</StatId>
  3920.            <StatCriticalValue>0</StatCriticalValue>
  3921.            <OffsetPx>
  3922.              <X>80</X>
  3923.              <Y>-15</Y>
  3924.           </OffsetPx>
  3925.           <SizePx>
  3926.             <X>16</X>
  3927.             <Y>16</Y>
  3928.           </SizePx>
  3929.  
  3930.           <Text>CTRL+G</Text>
  3931.           <Font>White</Font>
  3932.           <Scale>0.6</Scale>
  3933.           <TextAlign>HORISONTAL_CENTER_AND_VERTICAL_CENTER</TextAlign>
  3934.         </StatStyle>
  3935.          -->
  3936.         </StatStyles>
  3937.       </StatControl>
  3938.       <!-- Grid Stats -->
  3939.     </StatControls>
  3940.   </Definition>
  3941. </Definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement