Showing results 1 to 25 of 51
Search took 0.00 seconds.
Search: Posts Made By: MinguasBeef
Forum: Lua/XML Help 05-27-23, 11:20 PM
Replies: 6
Views: 685
Posted By MinguasBeef
I checked with GetAddOnMetadata and it looks like...

I checked with GetAddOnMetadata and it looks like you're right it doesn't work for the SavedVariable fields.
Forum: Lua/XML Help 05-27-23, 08:08 PM
Replies: 6
Views: 685
Posted By MinguasBeef
Makes sense. This is what I was assuming. Thanks...

Makes sense. This is what I was assuming.

Thanks very much for taking the time to answer!
Forum: Lua/XML Help 05-27-23, 08:04 PM
Replies: 6
Views: 685
Posted By MinguasBeef
I know this, but this wasn't my question. I am...

I know this, but this wasn't my question. I am trying to figure out how to pull the variables based off the addon name. Or how to pull all of the variables being used for saved variables in general.
Forum: Lua/XML Help 05-27-23, 07:54 PM
Replies: 6
Views: 685
Posted By MinguasBeef
How to identify the SavedVariables / SavedVariablesPerCharacter vars?

So, in my addon toc let's say I have the following...

## SavedVariables: MAV
## SavedVariablesPerCharacter: MCV

I know that the account wide variables will be stored in MAV and the character...
Forum: Lua/XML Help 06-11-21, 07:51 AM
Replies: 2
Views: 1,840
Posted By MinguasBeef
Thanks so much!

Thanks so much!
Forum: Lua/XML Help 06-10-21, 07:16 AM
Replies: 2
Views: 1,840
Posted By MinguasBeef
GetSpellCooldown sometimes returning weird values

Sometimes GetSpellCooldown works exactly like i'd expect. Other times it seems to return strange values.

I was making a basic script to just print out my cooldowns for my tailoring cloths.

Here was...
Forum: Lua/XML Help 05-19-21, 05:38 AM
Replies: 3
Views: 1,865
Posted By MinguasBeef
Thank you to both of you! Much appreciated.

Thank you to both of you! Much appreciated.
Forum: Lua/XML Help 05-18-21, 08:14 AM
Replies: 3
Views: 1,865
Posted By MinguasBeef
How to prevent font string from being multiline?

Is there any way to prevent a font string from being multiline?

I'm creating my font string like so...
frame.Texts[1] = frame:CreateFontString(nil,"OVERLAY")...
Forum: Lua/XML Help 05-18-21, 02:36 AM
Replies: 0
Views: 914
Posted By MinguasBeef
[TBC Beta] Expand Interface Category

Found solution after posting. Needed to assign the hidden variable for the subpanels before calling InterfaceAddOnsList_Update.

I used to be able to do this on an older version of the game, but i'm...
Forum: Lua/XML Help 05-14-21, 08:19 AM
Replies: 2
Views: 1,673
Posted By MinguasBeef
Right, the intention was to send over party and...

Right, the intention was to send over party and that's why I did not pass anything in for the party/target parameters.

I did not know about registering the addon prefix. That fixed it. Thanks!
Forum: Lua/XML Help 05-14-21, 06:53 AM
Replies: 2
Views: 1,673
Posted By MinguasBeef
Issue with CHAT_MSG_ADDON

On the TBC beta, it seems like sending addon messages isn't working properly.

I might be just doing something wrong.

When I am sending the addon chat msg, I am triggering my event. When my party...
Forum: Lua/XML Help 04-23-21, 06:53 PM
Replies: 0
Views: 1,617
Posted By MinguasBeef
[TBC Beta] - Detect when PVP trinket is used.

Is there any way to detect when a PVP trinket is used?

I was checking for combat log event unfiltered, but there are no events from what I can tell being triggered from the trinket being used.

Are...
Forum: Lua/XML Help 03-27-21, 01:55 AM
Replies: 1
Views: 1,486
Posted By MinguasBeef
Getting correct frame ui position.

Edit: Found the solution right after I posted. https://wowwiki-archive.fandom.com/wiki/API_GetCursorPosition

I needed to divide the cursor coordinates by UIParent:GetEffectiveScale(). Sorry about...
Forum: Lua/XML Help 03-26-21, 11:35 AM
Replies: 2
Views: 2,463
Posted By MinguasBeef
Thank you very much for the quick answer! Finally...

Thank you very much for the quick answer! Finally getting back into the swing of working on addons with the tbc announcement. Appreciate the help.
Forum: Lua/XML Help 03-26-21, 09:25 AM
Replies: 2
Views: 2,463
Posted By MinguasBeef
[Classic] Create & show tooltip

I'm working on my own unit frames.

I want to show a tooltip for the buff at index 1 when I mouse over my frame. I am not seeing anything, however.

Wrote up a simple example to see what i'm...
Forum: Lua/XML Help 12-01-20, 10:38 AM
Replies: 2
Views: 2,887
Posted By MinguasBeef
Thanks, it looks like I had to use the string...

Thanks, it looks like I had to use the string identifier that you mentioned instead of the numeric id that I was using.

It works now.
Forum: Lua/XML Help 12-01-20, 05:14 AM
Replies: 2
Views: 2,887
Posted By MinguasBeef
CreateMacro default icon

Is there any way to call CreateMacro and have the icon default to what is occurring like when you manually make a macro?

For example,

if I manually make a macro with

#showtooltip
/cast [mod:shift]...
Forum: Macro Help 11-23-20, 06:29 AM
Replies: 1
Views: 4,777
Posted By MinguasBeef
Shift into cat form, prowl, rake

For some reason i'm unable to make a spammable macro to do the following...

Shift into cat(if not in cat)
Cast prowl (if in cat and out of combat)
Cast rake(if in stealth)

I tried this...


/cast...
Forum: Lua/XML Help 05-02-20, 06:25 PM
Replies: 5
Views: 3,162
Posted By MinguasBeef
Ah, this was the issue! Thanks! I was porting...

Ah, this was the issue! Thanks!

I was porting some old stuff that was compatible with the 2.4.3 client and it did not use that template. I didn't even know about it. Ty!
Forum: Lua/XML Help 05-02-20, 05:52 PM
Replies: 5
Views: 3,162
Posted By MinguasBeef
I've updated my code, but I still get the same...

I've updated my code, but I still get the same behavior. :(
Forum: Lua/XML Help 05-02-20, 05:32 PM
Replies: 5
Views: 3,162
Posted By MinguasBeef
Cooldown frame not seeing cooldown animation?

This is my code i'm using to create a frame with a texture/cooldown frame attached.

local f = CreateFrame("FRAME")
f:SetWidth(32)
f:SetHeight(32)
f:SetPoint("CENTER")

local cdFrame =...
Forum: Lua/XML Help 05-01-20, 01:17 PM
Replies: 6
Views: 2,931
Posted By MinguasBeef
Ooooh! That works! Thanks so much Vrul! :)

Ooooh! That works! Thanks so much Vrul! :)
Forum: Lua/XML Help 05-01-20, 10:03 AM
Replies: 6
Views: 2,931
Posted By MinguasBeef
Sorry, I didn't post the code just because it...

Sorry, I didn't post the code just because it would've been a lot of code for someone to look at for the example in the video. The code has been changed a bit since the version that was uploaded to...
Forum: Lua/XML Help 05-01-20, 01:47 AM
Replies: 6
Views: 2,931
Posted By MinguasBeef
Nested subcategory options in addon interface options

I currently have an expandable category inside of my addon category for the interface options. When I expand the subcategory, the options show at the bottom instead of under the category being...
Forum: Lua/XML Help 04-30-20, 01:14 AM
Replies: 1
Views: 2,047
Posted By MinguasBeef
Determine pet owner from combat log event?

When you receive a combat log event from an action caused by a pet, how can you determine who the owner of that pet is?

Better yet, is there any way I can determine the owner's guid from a combat...
Showing results 1 to 25 of 51