Thread Tools Display Modes
07/20/22, 07:27 PM   #1
joshleeman
Join Date: Jun 2022
Posts: 1
Need some help editing very simple addon

I have no experience with lua or coding but what Im wanting is probably easy for someone with a little author knowledge. I want to make this addon icon only appear when the skill is running. Right now the icon is static and only the countdown number changes which is ok and all but essentially its just a blown up action bar icon. Id love to be able to edit this to make it appear when the skill is cast and disappear when the skill ends and it hits 0. Basically the opposite if what the addon Crystal shard helper does, that one shows an icon when the ability is ready to be used and disappears when you use the proc. The addon and the xml pasted below id be so grateful for help.

https://www.esoui.com/downloads/info...nAssau....html

<GuiXml>
<Controls>
<TopLevelControl name="ShalkTrackerPanel" mouseEnabled="true" movable="true" clampedToScreen="false" hidden="true">
<Dimensions x="64" y="64" />
<Anchor point="CENTER" relativeTo="GuiRoot" />
<OnMoveStop>
Shalk.SavedVariables.Panel.Left = ShalkTrackerPanel:GetLeft()
Shalk.SavedVariables.Panel.Top = ShalkTrackerPanel:GetTop()
</OnMoveStop>
<Controls>
<Texture name="$(parent)Icon" textureFile="/esoui/art/icons/ability_warden_015.dds">
<Anchor point="CENTER" relativeTo="$(parent)" />
<Dimensions x="64" y="64" />
</Texture>
<Texture textureFile="/esoui/art/actionbar/abilityframe64_up.dds">
<Anchor point="CENTER" relativeTo="$(parent)" />
<Dimensions x="64" y="64" />
</Texture>
<Label name="$(parent)Label" font="/esoui/common/fonts/univers67.otf|50|soft-shadow-thick" color="FFFFFF"
verticalAlignment="CENTER" horizontalAlignment="CENTER" text="0">
<Anchor point="CENTER" relativeTo="$(parent)" />
</Label>
</Controls>
</TopLevelControl>
</Controls>
</GuiXml>
  Reply With Quote

ESOUI » Developer Discussions » General Authoring Discussion » Need some help editing very simple addon

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off