mirror of
https://github.com/araxiaonline/ets-module-collection.git
synced 2026-06-13 02:52:20 -04:00
updates to add new transmog interface
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
0
modules/UI/transmog/transmog.client.ts
Normal file
0
modules/UI/transmog/transmog.client.ts
Normal file
10
modules/UI/transmog/transmpg.server.ts
Normal file
10
modules/UI/transmog/transmpg.server.ts
Normal file
@@ -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
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user