diff --git a/modules/UI/botmgr/botmgr.client.ts b/modules/UI/botmgr/botmgr.client.ts index 0a00fdd..8ab883a 100644 --- a/modules/UI/botmgr/botmgr.client.ts +++ b/modules/UI/botmgr/botmgr.client.ts @@ -329,7 +329,11 @@ if(!aio.AddAddon()) { if(!statValue) { statValue = parent.CreateFontString(id(`StatValue-${statName}`), "ARTWORK", "GameFontNormalSmall"); statValue.SetPoint("TOPRIGHT", parent, "TOP", -4, -5 - (i * 14)); - statValue.SetSize(50, 14); + if(statName === "Damage") { + statValue.SetSize(90, 14); + } else { + statValue.SetSize(50, 14); + } statValue.SetJustifyH("RIGHT"); ComponentsPool.set(compId(botData.entry, `StatValue-${statName}`), statValue); } diff --git a/modules/UI/transmog/transmog.client.ts b/modules/UI/transmog/transmog.client.ts new file mode 100644 index 0000000..e69de29 diff --git a/modules/UI/transmog/transmpg.server.ts b/modules/UI/transmog/transmpg.server.ts new file mode 100644 index 0000000..a8e3a8b --- /dev/null +++ b/modules/UI/transmog/transmpg.server.ts @@ -0,0 +1,10 @@ +let aio: AIO = {}; + +import { AccountInfo } from "../../classes/account"; + +function GetTransmogItems(player: Player) { + + // SELECT * from acore_characters.custom_unlocked_appearances cua + // join acore_world.item_template it ON (cua.item_template_id = it.entry) where account_id = 252 + +} \ No newline at end of file