Showing results 1 to 21 of 21
Search took 0.00 seconds.
Search: Posts Made By: fullmoon_sulfuras
Forum: Lua/XML Help 10-15-23, 09:22 PM
Replies: 2
Views: 795
Posted By fullmoon_sulfuras
Thanks to your post, I was able to fix my addon!

Thanks to your post, I was able to fix my addon!
Forum: Lua/XML Help 10-14-23, 03:18 PM
Replies: 2
Views: 795
Posted By fullmoon_sulfuras
GetCompanionInfo("MOUNT") broken for WotLK Classic 3.4.3?

GetCompanionInfo (https://wowwiki-archive.fandom.com/wiki/API_GetCompanionInfo) seems broken when getting mount information on WotLK 3.4.3. The following snippet works:


for...
Forum: Macro Help 04-12-23, 06:13 PM
Replies: 3
Views: 4,023
Posted By fullmoon_sulfuras
Thanks! Swapping the talents takes 5 seconds, so...

Thanks! Swapping the talents takes 5 seconds, so this works perfectly:


#showtoolip Bloodlust
/run SetActiveTalentGroup(1) C_Timer.After(6,function() C_EquipmentSet.UseEquipmentSet(1) end)
Forum: Macro Help 04-10-23, 08:52 PM
Replies: 3
Views: 4,023
Posted By fullmoon_sulfuras
Macro to swap the talent set and the equipment set

Hi! I'm trying to come up with a macro to swap to a equipment set and the talents.

I play a enh shaman, and sometimes I go OS for healing. So I'd like a macro that:

1. Switches to the secondary...
Forum: Lua/XML Help 09-07-22, 05:23 PM
Replies: 4
Views: 2,528
Posted By fullmoon_sulfuras
Thanks for the answers. I could not find...

Thanks for the answers. I could not find GetCompanionInfo in https://www.townlong-yak.com/framexml/3.3.5
Forum: Lua/XML Help 09-05-22, 05:57 PM
Replies: 4
Views: 2,528
Posted By fullmoon_sulfuras
WotLK Classic: GetCompanionInfo does not return mountType

I was looking at this thread (https://www.wowinterface.com/forums/showthread.php?t=47140&highlight=mount+IsSpellKnown) about GetCompanionInfo, but when running on client 30400 (BCC pre-patch)


/run...
Forum: Lua/XML Help 12-06-21, 08:51 PM
Replies: 5
Views: 2,760
Posted By fullmoon_sulfuras
I have the exact same problem. Is there an...

I have the exact same problem. Is there an alternative way to get the spell link in Classic?

Thanks!
Forum: Lua/XML Help 12-05-21, 05:42 PM
Replies: 9
Views: 6,272
Posted By fullmoon_sulfuras
Thanks very much for your answers. OK I'm...

Thanks very much for your answers.




OK



I'm not sure what you wrote that is new. The '"GameToolTip" frame'? Or that it inherits from SharedTooltipTemplate? Or that SharedTooltipTemplate has the...
Forum: Lua/XML Help 11-11-21, 10:07 PM
Replies: 9
Views: 6,272
Posted By fullmoon_sulfuras
Thanks for the answer. I'm still not sure that...

Thanks for the answer. I'm still not sure that the line

GameTooltip:GetBackdrop()

Is supposed to do. Pardon my ignorance, what's the difference between that call above...
Forum: Lua/XML Help 11-08-21, 09:02 AM
Replies: 9
Views: 6,272
Posted By fullmoon_sulfuras
Thanks for the suggestion! Indeed, the code...

Thanks for the suggestion!

Indeed, the code below works:


if not GameTooltip.GetBackdrop then
print("No GetBackdrop")
Mixin(GameTooltip, BackdropTemplateMixin)
else
print("GetBackdrop")
Forum: Lua/XML Help 11-07-21, 03:56 PM
Replies: 9
Views: 6,272
Posted By fullmoon_sulfuras
GameTooltip:GetBackdrop() a nil value for Shadowlands 90105

Hi there! I'm a little baffled by the following line working on Classic, BCc and Restila (up to 90100), but throwing an exception in Retail 90105:



backdrop = GameTooltip:GetBackdrop();


I get the...
Forum: Lua/XML Help 08-06-21, 06:01 PM
Replies: 12
Views: 3,741
Posted By fullmoon_sulfuras
That's a great point, I'll switch to a (longer)...

That's a great point, I'll switch to a (longer) list of item IDs.

Thanks!!
Forum: Lua/XML Help 07-31-21, 09:09 AM
Replies: 12
Views: 3,741
Posted By fullmoon_sulfuras
I came up with the following function: function...

I came up with the following function:


function Lunar.Items:BCCIsFlyingMount(mount)
local items = { "Windrider", "Gryphon", "Cenarion War Hippogryph", "Netherwing Drake", "Nether Ray", "Ashes of...
Forum: Lua/XML Help 07-30-21, 07:44 AM
Replies: 12
Views: 3,741
Posted By fullmoon_sulfuras
Is C_MountJournal available in BCC?

Is C_MountJournal available in BCC?
Forum: Lua/XML Help 07-29-21, 07:26 PM
Replies: 12
Views: 3,741
Posted By fullmoon_sulfuras
BCC: Any good way to tell if a mount can fly?

Hi! I'm trying to figure out if a mount, say, the Great While Kodo (ID 18793), can fly. I know it can't, but is there an API function that could tell me if a mount can fly? The best I could come up...
Forum: Lua/XML Help 05-26-21, 08:20 PM
Replies: 2
Views: 1,437
Posted By fullmoon_sulfuras
Resize frames with texture

Hi there! I'm trying to understand why the following code won't create frames of different sizes:


local x

x = CreateFrame("Button", "LSSettings" .. "StanceIcon0x", UIParent,...
Forum: Lua/XML Help 05-24-21, 08:42 PM
Replies: 1
Views: 1,649
Posted By fullmoon_sulfuras
Problem using a custom backdrop with the new backdrop system changes

Hi there! I'm having a hard time understanding how to translate the old <Backdrop> tags to the new system.

I'm creating the following frame in XML:


<Frame name="TestFrame" parent="UIParent"...
Forum: Lua/XML Help 05-24-21, 08:17 PM
Replies: 6
Views: 1,629
Posted By fullmoon_sulfuras
The problem goes away if I explicitly inherit...

The problem goes away if I explicitly inherit from BackdropTemplate. So I'm guessing that

Mixin(self, BackdropTemplateMixin)


Would fix that. To be clear: the error is thrown in the...
Forum: Lua/XML Help 05-24-21, 06:41 PM
Replies: 6
Views: 1,629
Posted By fullmoon_sulfuras
Thanks for the reply! I've tried your suggestion...

Thanks for the reply!

I've tried your suggestion and now I'm getting an `attempt to call method 'SetBackdropColor' (a nil value)` error when trying to create the frame. Where should the `OnLoadFunc`...
Forum: Lua/XML Help 05-24-21, 04:26 PM
Replies: 6
Views: 1,629
Posted By fullmoon_sulfuras
All my frames are transparent in Retail/BCC

I'm updating an addon to BCC and I managed to make it work with the Backdrop System Changes (https://github.com/Stanzilla/WoWUIBugs/wiki/9.0.1-Consolidated-UI-Changes#backdrop-system-changes) by...
Forum: Lua/XML Help 05-24-21, 10:34 AM
Replies: 2
Views: 1,267
Posted By fullmoon_sulfuras
Supporting multiple clients

Hi there! I'm working on fixing LunarSphere for TBC Classic and wed like to have it working for the three clients: Retail, Classic, and BCC. The Backdrop System Changes...
Showing results 1 to 21 of 21