Forum: Lua/XML Help
Yesterday, 12:15 AM
|
Replies: 7
Views: 271
|
Forum: Lua/XML Help
03-01-21, 07:27 AM
|
Replies: 7
Views: 271
|
Forum: Lua/XML Help
02-20-21, 05:41 PM
|
Replies: 2
Views: 164
NotifyChange is for when something outside of...
NotifyChange is for when something outside of your AceConfig changes a value while the config is open and you want it updated. Changing a setting within AceConfig automatically updates your options....
|
Forum: Lua/XML Help
02-09-21, 05:33 PM
|
Replies: 2
Views: 221
|
Forum: Lua/XML Help
01-29-21, 07:45 AM
|
Replies: 2
Views: 465
|
Forum: AddOn Help/Support
01-25-21, 05:09 PM
|
Replies: 7
Views: 582
The OP only wanted commas between numbers...
The OP only wanted commas between numbers removed, not all commas.
Using the OP's sample text:
"The number 45,678 is big, but 1,234 is small."
Kanegasi's result:
"The number 45678 is big, but...
|
Forum: Lua/XML Help
01-22-21, 12:24 PM
|
Replies: 4
Views: 819
|
Forum: AddOn Help/Support
01-03-21, 08:09 AM
|
Replies: 17
Views: 5,313
hooksecurefunc("QuestLogQuests_Update",...
hooksecurefunc("QuestLogQuests_Update", function()
for button in QuestScrollFrame.headerFramePool:EnumerateActive() do
-- button.questLogIndex
button.ButtonText:SetText("My translated...
|
Forum: AddOn Help/Support
01-02-21, 05:56 PM
|
Replies: 17
Views: 5,313
hooksecurefunc("QuestLogQuests_Update",...
hooksecurefunc("QuestLogQuests_Update", function()
for button in QuestScrollFrame.headerFramePool:EnumerateActive() do
button.ButtonText:SetText("My translated header")
end
for button in...
|
Forum: AddOn Help/Support
01-02-21, 11:15 AM
|
Replies: 17
Views: 5,313
|
Forum: AddOn Help/Support
01-01-21, 10:33 PM
|
Replies: 17
Views: 5,313
hooksecurefunc(QUEST_TRACKER_MODULE,...
hooksecurefunc(QUEST_TRACKER_MODULE, "SetBlockHeader", function(self, block)
print("QuestID:", block.id)
print("QuestHeader:", block.HeaderText:GetText())
print("QuestObjectives:")
local...
|
Forum: Lua/XML Help
12-31-20, 07:47 PM
|
Replies: 2
Views: 1,657
function ADDITEMTOLISTFUNCTION()
if...
function ADDITEMTOLISTFUNCTION()
if GameTooltip:IsShown() then
local _, itemLink = GameTooltip:GetItem()
if itemLink then
local itemID = GetItemInfoFromHyperlink(itemLink)
if itemID...
|
Forum: Lua/XML Help
12-31-20, 03:24 PM
|
Replies: 3
Views: 1,672
|
Forum: AddOn Help/Support
12-29-20, 05:21 PM
|
Replies: 17
Views: 5,313
local regions = {...
local regions = { QuestMapFrame.DetailsFrame.RewardsFrame:GetRegions() }
for index = 1, #regions do
local region = regions[index]
if region:GetObjectType() == "FontString" and region:GetText() ==...
|
Forum: Lua/XML Help
12-29-20, 05:05 PM
|
Replies: 4
Views: 1,960
|
Forum: AddOn Help/Support
12-29-20, 02:10 PM
|
Replies: 17
Views: 5,313
|
Forum: Lua/XML Help
12-29-20, 11:13 AM
|
Replies: 5
Views: 1,968
|
Forum: Lua/XML Help
12-20-20, 05:57 PM
|
Replies: 3
Views: 1,681
|
Forum: Lua/XML Help
12-19-20, 11:15 PM
|
Replies: 5
Views: 1,657
|
Forum: Lua/XML Help
12-19-20, 07:26 AM
|
Replies: 19
Views: 7,759
These are the default...
These are the default names:
TopLeftCorner
TopRightCorner
BottomLeftCorner
BottomRightCorner
TopEdge
BottomEdge
LeftEdge
RightEdge
Center
|
Forum: Lua/XML Help
12-17-20, 12:39 PM
|
Replies: 7
Views: 1,699
I grouped up duplicates and removed the...
I grouped up duplicates and removed the repetitive stuff ("sounds\\", ".ogg"):
local sounds
if UnitExists("boss1") then
local bossHP = UnitHealth("boss1") / UnitHealthMax("boss1")
if bossHP > 0.8...
|
Forum: Lua/XML Help
12-14-20, 10:48 PM
|
Replies: 10
Views: 3,002
You are loading the xml before the lua so the...
You are loading the xml before the lua so the function is set to nil. But do as Kanegasi suggested as there is no point in having a separate xml when you are already doing everything in the lua file...
|
Forum: Lua/XML Help
12-12-20, 07:10 AM
|
Replies: 4
Views: 1,348
|
Forum: Lua/XML Help
12-09-20, 06:46 PM
|
Replies: 9
Views: 2,870
local SPELL_ID = 24275 -- Hammer of Wrath
local...
local SPELL_ID = 24275 -- Hammer of Wrath
local SPELL_NAME = GetSpellInfo(SPELL_ID)
local UPDATE_INTERVAL = 0.1
local frame = CreateFrame("Frame", nil, UIParent)
frame:SetPoint("CENTER", UIParent,...
|
Forum: Lua/XML Help
12-09-20, 01:32 PM
|
Replies: 9
Views: 2,870
|