Showing results 1 to 25 of 320
Search took 0.01 seconds.
Search: Posts Made By: LudiusMaximus
Forum: AddOn Help/Support 02-12-24, 07:05 PM
Replies: 7
Views: 9,135
Posted By LudiusMaximus
Can you share your "condition" script,...

Can you share your "condition" script, please?
Forum: Macro Help 01-26-24, 02:40 AM
Replies: 10
Views: 2,787
Posted By LudiusMaximus
You could change every graphics settings variable...

You could change every graphics settings variable separately. I used to do this to switch between different shadow settings via hotkey:

VER 3 000000000000003D "ShadLow"...
Forum: AddOn Help/Support 01-16-24, 01:12 PM
Replies: 12
Views: 1,128
Posted By LudiusMaximus
Have you tried...

Have you tried this?
https://www.wowinterface.com/forums/showthread.php?p=325688#post325688

What you have to do is to find the event that happens when you select or deselect an NPC.
Forum: AddOn Help/Support 01-01-24, 04:48 PM
Replies: 0
Views: 617
Posted By LudiusMaximus
FPS drop caused by CreateFrame("PlayerModel")

After some thorough testing, we discovered the following:

Whenever the FPS is capped by the CPU (GPU usage < 90%), just having

local modelFrame = CreateFrame("PlayerModel")

in your addon (no...
Forum: Site help, bugs, suggestions/questions 11-11-23, 05:47 PM
Replies: 60
Views: 36,565
Posted By LudiusMaximus
Hi, it's me again! :) I merged the...

Hi, it's me again! :)

I merged the client-specific versions of Immersion ExtraFade (https://www.wowinterface.com/downloads/info25504-ImmersionExtraFade.html) into one.

So if you could please delete...
Forum: Site help, bugs, suggestions/questions 07-27-23, 07:58 AM
Replies: 60
Views: 36,565
Posted By LudiusMaximus
Yes, that's what I meant! :) Thank you!

Yes, that's what I meant! :) Thank you!
Forum: Site help, bugs, suggestions/questions 07-26-23, 11:21 PM
Replies: 60
Views: 36,565
Posted By LudiusMaximus
Hi, my Addon "DynamicCam" now works with a single...

Hi, my Addon "DynamicCam" now works with a single version for all clients.

So the Classic version https://www.wowinterface.com/downloads/info25578-DynamicCamClassic.html (25578) is not needed any...
Forum: Lua/XML Help 06-11-23, 02:38 PM
Replies: 6
Views: 1,207
Posted By LudiusMaximus
Nice, this is even better! Thank you! :)

Nice, this is even better! Thank you! :)
Forum: Lua/XML Help 06-07-23, 04:15 PM
Replies: 6
Views: 1,207
Posted By LudiusMaximus
Hm, it definitely works for the plural escape...

Hm, it definitely works for the plural escape sequences. E.g. turning "2 |4car:cars;" into "2 cars".
Forum: Lua/XML Help 06-06-23, 02:35 PM
Replies: 6
Views: 1,207
Posted By LudiusMaximus
I found a way. :) local converterTooltip =...

I found a way. :)

local converterTooltip = CreateFrame("GameTooltip", "converterTooltip", nil, "GameTooltipTemplate")
local function CovertLine(line)
converterTooltip:ClearLines()
...
Forum: Lua/XML Help 06-05-23, 06:12 PM
Replies: 6
Views: 1,207
Posted By LudiusMaximus
How to spell out the result of plural UI escape sequences?

Hi, how can I get the interpreted version of a string including plural UI escape sequences (https://wowpedia.fandom.com/wiki/UI_escape_sequences#Plural)?


local pluralString = "2 |4car:cars;"
-- Do...
Forum: General Authoring Discussion 05-30-23, 03:16 PM
Replies: 4
Views: 2,696
Posted By LudiusMaximus
When I want to search recursively for strings in...

When I want to search recursively for strings in tables, I use this function:

local function PrintTable(t, indent)
assert(type(t) == "table", "PrintTable() called for non-table!")

local...
Forum: Macro Help 03-05-23, 05:54 PM
Replies: 1
Views: 1,384
Posted By LudiusMaximus
/run SetCVar("graphicsComputeEffects", x) with x...

/run SetCVar("graphicsComputeEffects", x) with x in {0, ..., 4} works for me.

But your Graphics panel will not show another value until all cvars match.
The "Compute Effects" UI switch does not just...
Forum: General Authoring Discussion 02-10-23, 11:26 AM
Replies: 4
Views: 3,960
Posted By LudiusMaximus
Works for me, but of course only while not in...

Works for me, but of course only while not in combat.
Forum: General Authoring Discussion 02-07-23, 01:40 AM
Replies: 4
Views: 3,960
Posted By LudiusMaximus
Hi! Could you give a reproducible example with...

Hi! Could you give a reproducible example with the action bar in question?
Notice, that you are not allowed to show/hide action bars while in combat.
Forum: Lua/XML Help 01-29-23, 02:49 PM
Replies: 2
Views: 1,311
Posted By LudiusMaximus
You could use a timer and execute your code a few...

You could use a timer and execute your code a few seconds after login.
Forum: Lua/XML Help 01-26-23, 02:21 AM
Replies: 22
Views: 8,299
Posted By LudiusMaximus
That's true. Thanks for pointing it out. :) In...

That's true. Thanks for pointing it out. :)
In fact, it seems that the registered functions are executed in the order they have been registered. So it is not possible to make sure you are first by...
Forum: Lua/XML Help 01-25-23, 01:51 AM
Replies: 22
Views: 8,299
Posted By LudiusMaximus
I just found out that there is also a...

I just found out that there is also a `TooltipDataProcessor.AddTooltipPreCall`, which seems to let you do stuff to the tooltip before any other addons have done their modifications.
Forum: Lua/XML Help 01-20-23, 02:21 AM
Replies: 1
Views: 1,564
Posted By LudiusMaximus
I solved it myself. Turns out that for recipes,...

I solved it myself. Turns out that for recipes, which create usable items, the hyperlink returned by GetItem() does not match the returned id. The hyperlink is of the created item but the id is of...
Forum: Lua/XML Help 01-18-23, 05:57 AM
Replies: 1
Views: 1,564
Posted By LudiusMaximus
Get tooltip of recipes creating an item that teaches you something

Since OnTooltipSetItem does no longer exist (https://wowpedia.fandom.com/wiki/Patch_10.0.2/API_changes), we have to use TooltipDataProcessor.AddTooltipPostCall.

I am running into the following...
Forum: Lua/XML Help 01-18-23, 05:05 AM
Replies: 5
Views: 2,963
Posted By LudiusMaximus
For the record: The ID variables (e.g....

For the record:

The ID variables (e.g. LE_ITEM_CLASS_RECIPE) do not exist any more.
Instead, you now use this Enum table (e.g. Enum.ItemClass.Recipe).

https://wowpedia.fandom.com/wiki/ItemType
Forum: Lua/XML Help 01-17-23, 02:04 AM
Replies: 0
Views: 917
Posted By LudiusMaximus
Sync code with in-game attack animation?

How can I make my code execute something exactly in the moment the player attacks something?

I tried the COMBAT_LOG_EVENT_UNFILTERED event, but this appears to happen a noticeabe time before the...
Forum: Site help, bugs, suggestions/questions 12-02-22, 10:08 PM
Replies: 60
Views: 36,565
Posted By LudiusMaximus
Great, thanks a lot! :)

Great, thanks a lot! :)
Forum: Site help, bugs, suggestions/questions 12-02-22, 09:25 PM
Replies: 60
Views: 36,565
Posted By LudiusMaximus
Hi, my Addon "Sell Price Per Unit" now works with...

Hi, my Addon "Sell Price Per Unit" now works with a single version for all clients.
So I don't need separate changelogs any more, which is the only reason I still had 3 different addon pages on...
Forum: Lua/XML Help 11-30-22, 08:54 AM
Replies: 22
Views: 8,299
Posted By LudiusMaximus
Is there still a way to do a pre-hook on what...

Is there still a way to do a pre-hook on what used to be OnTooltipSetItem?

I want to operate on the tooltip of items before any other addons added their lines to it.
Before 10.0.2 I executed this...
Showing results 1 to 25 of 320