This is a modification of a raid window submitted by EQAditu. Big thanks to him/her for the original.
This has modifications that are Fury Specific - most of the FAQ has been taken from EQAditu's description and instructions.
------------------------------------------------
The main feature of this Raid Window mod is 3 buttons next to each raid member.
Pressing one of the buttons will do the following sequence:
Clears queued abilities -- So that the spell attached to the button is the next cast
Cancels any current casting -- /useabilityonplayer cannot button-queue to the correct target
Casts the button ability on raid member -- No target switching occurs; /target_previous history stays intact
Clears queued abilities -- /useabilityonplayer cannot queue, so if the spell is not ready immediately, it does not falsely cast
Unless you are a Fury, you will have to edit( Notepad or similar) the XML file before the first time you use it.
Line 7 onward will appear as:
Code:
Code:
<Data Name="HealSpell1" SpellName="Greater Bloodflow" />
<Data Name="HealSpell2" SpellName="Wild Salve" />
<Data Name="HealSpell3" SpellName="Nature's Elixir" />
Currently, the spell icons are associated, left to right, with the spells above. Changing the spell names or the order will NOT change the icons.
If you want to change the order left to right of the icons (after changing the order of the spells above, OR if you want to know the code to change to replace - it starts on line 26:
Code:
<ImageStyle Name="Heal1Icon">
<ImageFrame Name="image" Source="/images/icons/icon_ss6.dds" SourceRect="210,42,251,83"/>
</ImageStyle>
<RectangleStyle Center="Heal2Icon" Name="Heal2Style" CenterShrinkH="true" CenterShrinkV="true" />
<ImageStyle Name="Heal2Icon">
<ImageFrame Name="image" Source="/images/icons/icon_ss19.dds" SourceRect="0,42,42,84"/>
</ImageStyle>
<RectangleStyle Center="Heal3Icon" Name="Heal3Style" CenterShrinkH="true" CenterShrinkV="true" />
<ImageStyle Name="Heal3Icon">
<ImageFrame Name="image" Source="/images/icons/icon_ss14.dds" SourceRect="0,0,38,41"/>
</ImageStyle>
So, for example, Greater Bloodflow - the icon code is:
Source="/images/icons/icon_ss6.dds" SourceRect="210,42,251,83". I used the EQ2UIBuilder and photoshop to identify the proper dds file and location of the appropriate icons.
It is not recommended to change any other part of the file unless you know what you are doing.
From top to bottom will change the spells attached to the buttons left to right, when you change the SpellName variable.
This raid window can be resized to different column/row arrangements. 4x1(1060px/120px) and 1x4(264px/475px) would be most common.
Limitations/comments:
The click-to-heal buttons do not shade if the ability they are connected to is not ready to cast. If pressed before ready,
nothing will happen. If EQ2 is extremely unresponsive the buttons may not respond to quick clicks; press for slightly longer
to ensure casting.