-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMobHealth.xml
45 lines (42 loc) · 1.23 KB
/
MobHealth.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!--
Name: MobHealth2
Version: 2.6
Author: Wyv ([email protected])
Description: Displays health value for mobs.
Original version by Telo.
URL: http://www.curse-gaming.com/mod.php?addid=1087
http://ui.worldofwar.net/ui.php?id=681
http://www.wowinterface.com/downloads/fileinfo.php?id=3938
-->
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
C:\Projects\WoW\Bin\Interface\FrameXML\UI.xsd">
<Script file="localization.lua"/>
<Script file="MobHealth.lua"/>
<Frame name="MobHealthFrame" toplevel="true" frameStrata="HIGH" movable="true" enableMouse="true" parent="UIParent">
<Size>
<AbsDimension x="128" y="32"/>
</Size>
<Anchors>
<Anchor point="TOP" relativeTo="TargetFrameHealthBar" relativePoint="BOTTOM">
<Offset>
<AbsDimension x="-2" y="22"/>
</Offset>
</Anchor>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<FontString name="MobHealthText" inherits="GameFontNormalSmall">
<Color r="1.0" g="1.0" b="1.0"/>
</FontString>
</Layer>
</Layers>
<Scripts>
<OnLoad>
MobHealth_OnLoad();
</OnLoad>
<OnEvent>
MobHealth_OnEvent(event);
</OnEvent>
</Scripts>
</Frame>
</Ui>