Showing results 1 to 25 of 500
Search took 0.01 seconds.
Search: Posts Made By: Fizzlemizz
Forum: AddOn Help/Support Today, 01:00 PM
Replies: 7
Views: 295
Posted By Fizzlemizz
For completeness: List of Slot IDs...

For completeness: List of Slot IDs (https://warcraft.wiki.gg/wiki/InventorySlotId)
Forum: AddOn Help/Support Today, 12:06 PM
Replies: 7
Views: 295
Posted By Fizzlemizz
C_Item.DoesItemExist...

C_Item.DoesItemExist (https://warcraft.wiki.gg/wiki/API_C_Item.DoesItemExist)

local slotID = GetInventorySlotInfo(Headslot)
local itemLocation = ItemLocation:CreateFromEquipmentSlot(slotID)
if...
Forum: AddOn Help/Support Today, 11:07 AM
Replies: 6
Views: 887
Posted By Fizzlemizz
If you remove 1 then the overall session of 3...

If you remove 1 then the overall session of 3 hours would run 8 times in a day (24/3). If you added 1 (5 hours) then it would run 4.8 times (24/5) which wouldn't work as it would break the startTime...
Forum: AddOn Help/Support Today, 10:56 AM
Replies: 7
Views: 295
Posted By Fizzlemizz
You never know what 11 may bring to the table ;)

You never know what 11 may bring to the table ;)
Forum: AddOn Help/Support Today, 10:29 AM
Replies: 7
Views: 295
Posted By Fizzlemizz
C_Item.GetCurrentItemLevel...

C_Item.GetCurrentItemLevel (https://warcraft.wiki.gg/wiki/API_C_Item.GetCurrentItemLevel) requires an ItemLocationMixin (https://warcraft.wiki.gg/wiki/ItemLocationMixin) not slotID

local slotID =...
Forum: AddOn Help/Support Yesterday, 10:47 AM
Replies: 6
Views: 887
Posted By Fizzlemizz
Your code doesn't contain a btn to...

Your code doesn't contain a btn to hide/show.

You want to hide/show the frame that you created and for that (in this case) you would use the frame name ZAMTimer777. If you are giving frames a name...
Forum: AddOn Help/Support Yesterday, 10:23 AM
Replies: 6
Views: 887
Posted By Fizzlemizz
It's all variations on a theme (and math)....

It's all variations on a theme (and math). Knowing the remainder of a session (session totalDuration of 1, 2, 4, 6 or 12 hours). This is based on the start time (startTime - serverTime) %...
Forum: AddOn Help/Support 03-16-24, 11:19 PM
Replies: 6
Views: 887
Posted By Fizzlemizz
Or is it two events repeating ie. 5 mins doing...

Or is it two events repeating ie.


5 mins doing something +
55 mins doing nothing

Totaling 1 hour repeating 24/7/365.

or is it
Forum: Macro Help 03-14-24, 11:19 PM
Replies: 2
Views: 769
Posted By Fizzlemizz
I'm not aware of anything in the API that gives...

I'm not aware of anything in the API that gives you that information (your targets mount).
Forum: AddOn Help/Support 03-14-24, 11:02 PM
Replies: 19
Views: 2,569
Posted By Fizzlemizz
If Trial of the Element is what you are wanting...

If Trial of the Element is what you are wanting to track, then why not use the addon and remove the entries for all the other events (or disable them) instead of trying to re-invent the wheel?
Forum: AddOn Help/Support 03-14-24, 01:14 PM
Replies: 19
Views: 2,569
Posted By Fizzlemizz
I wasn't going to but... Your numbers still dont...

I wasn't going to but...
Your numbers still dont add up
Session Start (6 hours):
(line 0) Time 06:00 - Sub-Session B -- + 60 min = 07:00 (120 minutes until next event)
(line 1) Time 07:00 -...
Forum: AddOn Help/Support 03-13-24, 10:24 AM
Replies: 19
Views: 2,569
Posted By Fizzlemizz
Given you can't see the inconsistency between...

Given you can't see the inconsistency between what you described and what you listed there's little chance of getting a result. It can't all be just translation because you are not addressing each...
Forum: AddOn Help/Support 03-12-24, 12:06 PM
Replies: 19
Views: 2,569
Posted By Fizzlemizz
No you didn't, because the code expects each...

No you didn't, because the code expects each "event" to run 24/7/365 lasting "duration" seconds repeating every interval seconds without "interuption" (same as your original request on this topic)...
Forum: General Authoring Discussion 03-11-24, 01:41 PM
Replies: 3
Views: 1,030
Posted By Fizzlemizz
Both for _, colorTable in...

Both
for _, colorTable in pairs(RAID_CLASS_COLORS) do
and
local colorTable = RAID_CLASS_COLORS[class]
are making changes directly into the global RAID_CLASS_COLORS table. That will change the...
Forum: AddOn Help/Support 03-11-24, 12:53 PM
Replies: 19
Views: 2,569
Posted By Fizzlemizz
1 possible method based on information given and...

1 possible method based on information given and no idea how the interaction between the start times might play into calculating session A/B start times day-to-day etc. etc.

The test times, if you...
Forum: General Authoring Discussion 03-10-24, 07:41 PM
Replies: 2
Views: 232
Posted By Fizzlemizz
Maybe I'm missing something but this always ends...

Maybe I'm missing something but this always ends up at SetPortraitTexture (https://warcraft.wiki.gg/wiki/API_SetPortraitTexture)

if useClassIcon == "1" then
local _, class =...
Forum: AddOn Help/Support 03-10-24, 08:46 AM
Replies: 19
Views: 2,569
Posted By Fizzlemizz
There's some information missing from your OP A...

There's some information missing from your OP


A guess at what you want:

Event B Starts at 1709629200, lasts for 6 hours. During that 6 hours, the time between the events is 2 hours (instead of...
Forum: AddOn Help/Support 03-06-24, 11:55 AM
Replies: 19
Views: 2,569
Posted By Fizzlemizz
Sounds like you would want to replace the ticker...

Sounds like you would want to replace the ticker with an OnUdate script with a countdown that does essentially the same thing but with an added second countdown adjusting the resets etc. of the first...
Forum: Macro Help 03-06-24, 11:08 AM
Replies: 6
Views: 358
Posted By Fizzlemizz
For both macros, after /run and before if...

For both macros, after /run and before if insert

CURRENT_CHAT_FRAME_ID = 1 ChatConfigOtherSettings_OnShow()

This will change the setting for the "General" chat frame. Each chat frame has it's own...
Forum: Macro Help 03-04-24, 11:21 PM
Replies: 6
Views: 358
Posted By Fizzlemizz
Presumably: /run if...

Presumably:


/run if ChatConfigOtherSettingsSystemCheckBox1Check:GetChecked() then ChatConfigOtherSettingsSystemCheckBox1Check:Click() else print("Already OFF!") end


and:


/run if not...
Forum: AddOn Search/Requests 03-04-24, 09:16 AM
Replies: 3
Views: 1,602
Posted By Fizzlemizz
MuteSoundFile...

MuteSoundFile (https://www.wowinterface.com/downloads/info25045-MuteSoundFile.html)
Forum: AddOn Help/Support 03-03-24, 11:13 AM
Replies: 52
Views: 2,352
Posted By Fizzlemizz
Congratulations:banana: The more you play with...

Congratulations:banana:

The more you play with it, the more you'll learn. Have Fun!
Forum: AddOn Help/Support 03-02-24, 09:38 AM
Replies: 2
Views: 285
Posted By Fizzlemizz
Then you should be fine as it's only (based on...

Then you should be fine as it's only (based on code shown) replying to sender
Forum: Lua/XML Help 02-29-24, 04:48 PM
Replies: 4
Views: 448
Posted By Fizzlemizz
It's a bit of a loaded question as it's missing...

It's a bit of a loaded question as it's missing details (most of which probably come with WeakAuras). You could start with something like:


local spellID, SnDID = 315496 -- S&D
local _, _, icon =...
Forum: AddOn Help/Support 02-29-24, 11:13 AM
Replies: 12
Views: 748
Posted By Fizzlemizz
If you've installed the debugging addons and get...

If you've installed the debugging addons and get an error the BugSack icon will turn from green to red (that and you should hear a warning sound...get used to that ;)).

Clicking the BugSack icon...
Showing results 1 to 25 of 500