Showing results 1 to 25 of 500
Search took 0.01 seconds.
Search: Posts Made By: Xrystal
Forum: AddOn Help/Support Today, 10:52 AM
Replies: 7
Views: 357
Posted By Xrystal
Oh, thanks for reminding me of that change. I...

Oh, thanks for reminding me of that change. I haven't updated my item level addon in ages as I forgot that was added a while back.

Nevermind, I already updated to Dragonflight with no issues. ...
Forum: Macro Help 03-15-24, 03:41 AM
Replies: 2
Views: 793
Posted By Xrystal
I concur. The mount information is only known...

I concur. The mount information is only known by the player who called it, and you visually looking at it and finding the same one in your mount list and summoning it.

-- A NOT Possible Option
IF...
Forum: AddOn Help/Support 03-14-24, 10:39 AM
Replies: 19
Views: 2,604
Posted By Xrystal
Some questions: 1. What EXACTLY are you trying...

Some questions:

1. What EXACTLY are you trying to monitor, an event that the game runs outside of your control ( what is it ) , or an event you have created yourself which you have total control...
Forum: AddOn Help/Support 03-13-24, 04:17 PM
Replies: 2
Views: 276
Posted By Xrystal
It might be possible using a combination of...

It might be possible using a combination of location of team mates and pinning an icon on the map at that location.

This addon shows candy buckets on the map. It might be a good one to look at to...
Forum: General Authoring Discussion 03-10-24, 09:21 PM
Replies: 2
Views: 235
Posted By Xrystal
oh my .. I totally forgot the return statement. ...

oh my .. I totally forgot the return statement. I thought it was supposed to lead back to that line with the atlas doing its stuff behind the scenes ..
Thanks, made me check their code again as I...
Forum: General Authoring Discussion 03-10-24, 06:05 PM
Replies: 2
Views: 235
Posted By Xrystal
Setting Class Icon via SetAtlas and GetClassAtlas doesn't seem to work for me

As the title says.

I've been trying to create a custom unit frame piece by piece ( for reasons - have you seen nUI's archaic code? rofl ) and have stumbled on the portrait part.

Based on Blizzards...
Forum: Lua/XML Help 03-10-24, 03:48 AM
Replies: 2
Views: 266
Posted By Xrystal
This is code I got from the official action...

This is code I got from the official action button file and incorporated into my own button.


-- Get the binding key ( if any ) for this button and display it
local key =...
Forum: Macro Help 03-07-24, 05:04 PM
Replies: 4
Views: 1,594
Posted By Xrystal
As far as I am aware you can just tag @mouseover...

As far as I am aware you can just tag @mouseover on the front of your ones ( in the square brackets that is ) and if you wanted to, harm/help depending on if they are for allies or enemies.

For...
Forum: Macro Help 03-07-24, 01:56 PM
Replies: 4
Views: 1,594
Posted By Xrystal
These are my old shaman mouseover macros. Not...

These are my old shaman mouseover macros. Not used them in a while but should still work.


#showtooltip
/cast [@mouseover,harm] [@target,harm] [@targettarget,harm] Lightning...
Forum: AddOn Search/Requests 03-06-24, 01:29 PM
Replies: 10
Views: 677
Posted By Xrystal
And .. drum roll ........

And .. drum roll .....

https://www.wowinterface.com/downloads/info26700-XMountDynamicFlight.html

Give it a test run. You might see something or do stuff in a different way to me and it may need...
Forum: AddOn Search/Requests 03-01-24, 12:48 PM
Replies: 10
Views: 677
Posted By Xrystal
Aha, problem solved.. I was using the index...

Aha, problem solved.. I was using the index rather than the mountID to get the info.

I also found this one while searching for options
local mountIDs =...
Forum: AddOn Search/Requests 03-01-24, 05:14 AM
Replies: 10
Views: 677
Posted By Xrystal
Good news and Bad news Good news - button works...

Good news and Bad news

Good news - button works ( it moves, it toggles etc )

Bad news - apparently the dragonriding mounts don't get selected when listing mounts. And none of the mounts that are...
Forum: Lua/XML Help 03-01-24, 01:24 AM
Replies: 4
Views: 453
Posted By Xrystal
Unfortunately we are unable to assist with...

Unfortunately we are unable to assist with private servers, only official wow versions.
Forum: Lua/XML Help 02-29-24, 02:02 PM
Replies: 4
Views: 453
Posted By Xrystal
That reminds me of one of my first addons back in...

That reminds me of one of my first addons back in the old Burning Crusade days when I was mage tanking Krosh Firehand. Wrote an addon to track the shield buff on him so I could steal it rofl.

I...
Forum: AddOn Help/Support 02-27-24, 08:12 PM
Replies: 1
Views: 285
Posted By Xrystal
Backdrops are done differently now. This page...

Backdrops are done differently now.

This page explains how to use the new way.

https://warcraft.wiki.gg/wiki/BackdropTemplate
Forum: AddOn Search/Requests 02-26-24, 09:37 AM
Replies: 10
Views: 677
Posted By Xrystal
It sounds feasible and could give the new...

It sounds feasible and could give the new dragonriding able mounts a new lease for life.

What I was envisioning was a single moveable button ( think ExtraAction or ZoneAbility ) that would randombly...
Forum: AddOn Search/Requests 02-26-24, 08:46 AM
Replies: 10
Views: 677
Posted By Xrystal
Are you wanting an addon that only wants...

Are you wanting an addon that only wants Dragonriding ONLY mounts ( the ones you can ONLY get in Dragonflight zone ) in a random shuffle or dynamic flight able mounts ?

The changes Blizzard are...
Forum: AddOn Search/Requests 02-25-24, 02:10 PM
Replies: 10
Views: 677
Posted By Xrystal
Have you tried this one. It might have more than...

Have you tried this one. It might have more than what you want but it looks to have random mount functionality, hopefully that includes the dragonflight mounts as well....
Forum: AddOn Help/Support 02-24-24, 08:44 AM
Replies: 52
Views: 2,380
Posted By Xrystal
Assuming you have the same file in each of the...

Assuming you have the same file in each of the addons. Simply changing the frame name on line 8 as well as setting f to be local not global ( that would mess things up there ) and the frame_x and...
Forum: AddOn Help/Support 02-24-24, 05:31 AM
Replies: 52
Views: 2,380
Posted By Xrystal
Did you make sure that each display has it's own...

Did you make sure that each display has it's own location ?

You will need to adjust the anchor if you want them both displayed at the same time.

If you notice in Fizzle's example...
Forum: AddOn Help/Support 02-24-24, 02:46 AM
Replies: 52
Views: 2,380
Posted By Xrystal
Double check that you have no common non local...

Double check that you have no common non local functions or variables. These would overwrite each other and thus cause one to not work properly.

If you can't see anything like this in both addons...
Forum: PTR API and Graphics Changes 02-23-24, 04:27 AM
Replies: 4
Views: 10,609
Posted By Xrystal
That I haven't been able to do since Dragonflight...

That I haven't been able to do since Dragonflight came out. Their code keeps resetting it to what they want. The code I posted worked for me in Shadowlands but not Dragonflight. Which is awkward...
Forum: AddOn Search/Requests 02-22-24, 02:11 AM
Replies: 2
Views: 532
Posted By Xrystal
The question is whether the variant thought is...

The question is whether the variant thought is because the developers used the same model for a new creature to save time or whether they designed multiple creatures as part of a *species* range and...
Forum: AddOn Help/Support 02-21-24, 08:28 AM
Replies: 9
Views: 671
Posted By Xrystal
oh, thought I had that covered with the...

oh, thought I had that covered with the RANGE_INDICATOR addition if there isn't a hot key set up

You could try using this in the hotkey functions and see if that works better


if ( binding == "" )...
Forum: AddOn Help/Support 02-21-24, 06:04 AM
Replies: 9
Views: 671
Posted By Xrystal
Okay, took a while, but managed to get it working...

Okay, took a while, but managed to get it working on Wrath Classic 3.4.3 using the following code




local function UpdateHotKeys(self,buttonType)
local hotkey = self.HotKey;
...
Showing results 1 to 25 of 500