-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXP_Text.xml
More file actions
30 lines (27 loc) · 1011 Bytes
/
XP_Text.xml
File metadata and controls
30 lines (27 loc) · 1011 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<Component xmlns="http://www.red5studios.com/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.red5studios.com/ ../../../schemas/component.xsd">
<Info
title="xp-text"
author="camperdave"
description="Text Display of the XP required to ding"
url=""
uiVersion="1000"
/>
<Events>
<Event name="ON_COMPONENT_LOAD" bind="OnComponentLoad"/>
<Event name="MY_TWEAKUI_HANDLER" bind="TWEAKUI_OnEvent"/>
<Event name="MY_HUD_SHOW" bind="OnShow"/>
<Event name="ON_EXPERIENCE_CHANGED" bind="OnExperienceChanged" />
<Event name="ON_BATTLEFRAME_CHANGED" bind="OnBattleframeChanged"/>
</Events>
<Frames>
<HUDFrame name="Main" dimensions="left:5; width:200; bottom:100%-30; height:20">
<Children>
<Text id="XP_Text" dimensions="dock:fill" style="font:Demi_11; halign:left; valign:center; clip:false; wrap:false; alpha:0.8"/>
</Children>
<OnMessage bind="OnMessage"/>
</HUDFrame>
</Frames>
</Component>