Showing results 1 to 25 of 500
Search took 0.01 seconds.
Search: Posts Made By: SDPhantom
Forum: Lua/XML Help 03-26-24, 02:39 PM
Replies: 2
Views: 512
Posted By SDPhantom
tooltip:GetItem() was replaced with...

tooltip:GetItem() was replaced with TooltipUtil.GetDisplayedItem() (https://github.com/Gethe/wow-ui-source/blob/live/Interface/SharedXML/Tooltip/TooltipUtil.lua#L98-L112).
Forum: Lua/XML Help 03-23-24, 08:44 PM
Replies: 6
Views: 284
Posted By SDPhantom
This is how I would implement a fallback list...

This is how I would implement a fallback list using multiple ors.

watchedFactionID = watchedFactionID
or (inInstance and hasDungeonTabard and tabardID)
or (lookUpSubZones and...
Forum: Lua/XML Help 03-23-24, 05:17 PM
Replies: 6
Views: 284
Posted By SDPhantom
Every check for watchedFactionID==nil is...

Every check for watchedFactionID==nil is overwriting watchedFactionID with false whenever it isn't nil.

-also-

watchedFactionID = watchedFactionID == nil and not inInstance and...
Forum: AddOn Help/Support 03-23-24, 01:43 AM
Replies: 12
Views: 417
Posted By SDPhantom
TargetUnit()...

TargetUnit() (https://warcraft.wiki.gg/wiki/API_TargetUnit) is a protected function and can't be called autonomously. Additionally, it only accepts a name or valid UnitID...
Forum: Classic - AddOn Help/Support 03-20-24, 10:27 PM
Replies: 7
Views: 1,670
Posted By SDPhantom
If there isn't a setting for it, then no. The...

If there isn't a setting for it, then no. The plain text names (as opposed to NamePlates) are rendered by C-code and are inaccessible by the UI.

NamePlates do replace the plain text names when...
Forum: Classic - AddOn Help/Support 03-18-24, 07:45 PM
Replies: 7
Views: 1,670
Posted By SDPhantom
It's purely cosmetic and hinders readability....

It's purely cosmetic and hinders readability. Extreme cases like shortening variable names to a single letter may run afoul of Blizzard's addon policy due to their obfuscation rule. You can only...
Forum: Classic - AddOn Help/Support 03-18-24, 05:13 PM
Replies: 7
Views: 1,670
Posted By SDPhantom
I haven't tested this past running it through a...

I haven't tested this past running it through a Lua compiler.
GameTooltip:HookScript("OnShow",function(s)if _G[s:GetName().."TextLeft1"]:GetText():find"^Corpse of "then s:Hide()end end)


I revised...
Forum: Macro Help 03-15-24, 11:29 AM
Replies: 4
Views: 2,989
Posted By SDPhantom
This is what I'd suggest. Since all 3 spells only...

This is what I'd suggest. Since all 3 spells only work on friendly targets, that's one less thing to be checked. Also combining it into a single /cast command ensures only one spell gets called and...
Forum: Macro Help 03-07-24, 09:50 AM
Replies: 6
Views: 468
Posted By SDPhantom
This is what the checkbox ends up calling /run if...

This is what the checkbox ends up calling
/run if not ChatFrame_ContainsMessageGroup(ChatFrame1,"SYSTEM") then ChatFrame_AddMessageGroup(ChatFrame1,"SYSTEM");end
/run if...
Forum: Lua/XML Help 02-05-24, 08:31 PM
Replies: 1
Views: 593
Posted By SDPhantom
The way Lua handles obj.method() vs obj:method()...

The way Lua handles obj.method() vs obj:method() is simple, but not straightforward.
When calling a function, obj:method(...) is the same as obj.method(obj,...).
When defining a function,...
Forum: Lua/XML Help 02-03-24, 12:35 AM
Replies: 5
Views: 718
Posted By SDPhantom
I don't see anything standing out at the moment....

I don't see anything standing out at the moment. I'd suggest making sure you have error alerts turned on, I think they're off by default.
The command is /console scriptErrors 1



PS:

-Lua: about -...
Forum: Lua/XML Help 02-01-24, 12:20 PM
Replies: 2
Views: 507
Posted By SDPhantom
Have you registered your addon chat messages to...

Have you registered your addon chat messages to be received using C_ChatInfo.RegisterAddonMessagePrefix() (https://warcraft.wiki.gg/wiki/API_C_ChatInfo.RegisterAddonMessagePrefix)?
This tells the...
Forum: Lua/XML Help 02-01-24, 12:08 PM
Replies: 5
Views: 718
Posted By SDPhantom
You can use PLAYER_DEAD...

You can use PLAYER_DEAD (https://warcraft.wiki.gg/wiki/PLAYER_DEAD) when the user has died. For raid/party members, I'd rather track their health by UNIT_HEALTH...
Forum: AddOn Help/Support 01-25-24, 11:13 PM
Replies: 3
Views: 725
Posted By SDPhantom
It depends on what tasks you want to do. Keep in...

It depends on what tasks you want to do. Keep in mind things like moving, casting a spell, using abilities, etc are protected actions and can't be run autonomously.
Forum: Lua/XML Help 01-25-24, 11:08 PM
Replies: 1
Views: 566
Posted By SDPhantom
I made Modern TargetFrame...

I made Modern TargetFrame (https://www.wowinterface.com/downloads/info25510-ModernTargetFrame.html) to backport the WotLK Target Frame to Classic Era. It'll work for the most part with some caveats....
Forum: Lua/XML Help 01-25-24, 10:52 PM
Replies: 1
Views: 424
Posted By SDPhantom
If this is related to your other post...

If this is related to your other post (https://www.wowinterface.com/forums/showthread.php?t=59773), we're not allowed to help with projects running on private servers.
Forum: AddOn Search/Requests 01-25-24, 10:49 PM
Replies: 1
Views: 536
Posted By SDPhantom
As per site rules, discussion involving private...

As per site rules, discussion involving private servers is prohibited.
Forum: Lua/XML Help 01-22-24, 07:22 PM
Replies: 6
Views: 689
Posted By SDPhantom
Did you try making the EditBox wider? It looks...

Did you try making the EditBox wider? It looks like the text is having problems fitting all 3 digits until you move the cursor back to the beginning. It's possible it could be some anomaly in an...
Forum: AddOn Help/Support 01-20-24, 08:44 AM
Replies: 12
Views: 1,319
Posted By SDPhantom
It didn't have the SoundKitIDs listed when I...

It didn't have the SoundKitIDs listed when I tried to use it earlier.
Seems to be there now.
Forum: AddOn Help/Support 01-19-24, 05:23 PM
Replies: 12
Views: 1,319
Posted By SDPhantom
There's a lookup table in the DBC files....

There's a lookup table in the DBC files. Currently, WoW.Tools is the only site I can find with complete info though it's been discontinued since Dec 2022...
Forum: AddOn Help/Support 01-17-24, 03:54 PM
Replies: 12
Views: 1,319
Posted By SDPhantom
In all honesty, you don't need to wait for events...

In all honesty, you don't need to wait for events to fire to use MuteSoundFile(). You can call it from the main chunk. Also, SoundKitIDs can map to multiple FileIDs in which a random one is picked at...
Forum: AddOn Help/Support 01-17-24, 02:55 PM
Replies: 12
Views: 1,319
Posted By SDPhantom
Considering MuteSoundFile() works for C-side...

Considering MuteSoundFile() works for C-side calls too (you can mute creature sounds with it), I think it'll be fine.
Forum: AddOn Help/Support 01-17-24, 01:46 AM
Replies: 12
Views: 1,319
Posted By SDPhantom
The lines responsible for playing the target...

The lines responsible for playing the target select and lost sounds are...
Forum: AddOn Search/Requests 01-16-24, 11:28 PM
Replies: 3
Views: 1,093
Posted By SDPhantom
When you log on an alt, it gathers and stores...

When you log on an alt, it gathers and stores info on it. For recipes, you have to open your professions on the alt at least once for it to store what recipes you have. After then, it'll show on any...
Forum: AddOn Search/Requests 01-13-24, 02:00 AM
Replies: 3
Views: 1,093
Posted By SDPhantom
Only other one I can think of is Altoholic...

Only other one I can think of is Altoholic (https://www.wowinterface.com/downloads/info8533-Altoholic.html).
Showing results 1 to 25 of 500