View Single Post
  #69  
Old 07-22-2010, 01:55 PM
Savok Savok is offline
Fire Giant

Savok's Avatar

Join Date: May 2010
Posts: 971
Default

Quote:
Originally Posted by fwaits [You must be logged in to view images. Log in or Register.]
Oh one tiny thing I noticed about this UI. The little blue line (or whatever color it was in this version of Vert) that shows a smaller breakdown of the exp % meter is not present. Is that something that can be added easily? It is neither present in the Player window, or the Inventory window and I recall it being in both before.
Open your xml file and look for the EXP section:

Code:
	<Gauge item = "IW_ExpGauge">
		<ScreenID>ExpGauge</ScreenID>
		<!--<Font>3</Font>-->
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>260</X>
			<Y>135</Y>
		</Location>
		<Size>
			<CX>100</CX>
			<CY>8</CY>
		</Size>
		<GaugeOffsetY>0</GaugeOffsetY>
		<Style_VScroll>false</Style_VScroll>
		<Style_HScroll>false</Style_HScroll>
		<Style_Transparent>false</Style_Transparent>
		<!--<TooltipReference/>-->
		<FillTint>
				<R>220</R>
				<G>150</G>
				<B>0</B>
		</FillTint>
		<LinesFillTint>
				<R>0</R>
				<G>80</G>
				<B>220</B>
		</LinesFillTint>
		<DrawLinesFill>false</DrawLinesFill>
		<EQType>4</EQType>
		<GaugeDrawTemplate>
			<Background>A_GaugeBackground</Background>
			<Fill>A_GaugeFill</Fill>
			<Lines>A_GaugeLines</Lines>
			<LinesFill>A_GaugeLinesFill</LinesFill>
		</GaugeDrawTemplate>
	</Gauge>
Find the red highlighted line and change it to true from false to see the fill line. You can do this for any gauge you want - personally with percentage numbers I feel they are unnecessary.
__________________
Reply With Quote