View Single Post
  #2  
Unread 08-31-2010, 09:24 PM
Deewe Deewe is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Sep 2007
Posts: 104
Quote:
Originally Posted by myskaal
In my search to find a skin that will simply remove all the art, the menu buttons and the bag buttons from the main toolbar (and finding how impossible to find an updated one that does this is) I stumbled across the Yessh UI skin. It accomplishes what I would like to look at when in game without moving my bar somewhere I don't want it with one minor annoyance: The Eye/auto-attack button.

I am trying to find out how I can remove said eye from the UI. I'm not a skinner, I know othing about skin definitions, and really don't want to be a skinner which is why I was looking for something that was already done... however I could delve far enough into it if someone could simply tell me what I need to edit to get rid of this eye.

On the other hand, if someone had an updated, working version of a minimalist hotkeys only version of the main toolbar, I'd love to know where it's at!

Thanks in advance!
Author here,

Edit the following lines in the SkinDefinition.XML file
Code:
<Element ID="AutoAttackIndicatorButton" X="800" Y="826" Width="79" Height="79" /> 
<Element ID="ViolentModeIndicator" X="808" Y="836" Width="63" Height="63" />

to:
Code:
<Element ID="AutoAttackIndicatorButton" X="0" Y="0" Width="1" Height="1" />
<Element ID="ViolentModeIndicator" X="0" Y="0" Width="1" Height="1" />

Should do the trick. However if you play a hunter or a champion you will have the fervor pips in the middle of nowhere...
Reply With Quote