Showing results 1 to 25 of 500
Search took 0.03 seconds.
Search: Posts Made By: Xrystal
Forum: Lua/XML Help 03-25-24, 02:21 PM
Replies: 14
Views: 407
Posted By Xrystal
Yeah, that explains what I was seeing in the...

Yeah, that explains what I was seeing in the code, they are probably using the same location for the two icons.

I am sure Xully will appreciate whatever you are able to do for that situation.
Forum: AddOn Help/Support 03-25-24, 04:48 AM
Replies: 12
Views: 407
Posted By Xrystal
Not quite, give this a go. Hopefully despite...

Not quite, give this a go. Hopefully despite the functions having the word target in them they will work on mouseover too.



local addonName, addon = ...
local llRI = nil
local npcToWatch =...
Forum: AddOn Help/Support 03-24-24, 10:38 PM
Replies: 12
Views: 407
Posted By Xrystal
You might be able to use "mouseover" instead of...

You might be able to use "mouseover" instead of "target" and the event "UPDATE_MOUSEOVER_UNIT" but it is still reliant on the mouse moving over the mob and will trigger whenever you mouse over...
Forum: Lua/XML Help 03-24-24, 09:36 PM
Replies: 14
Views: 407
Posted By Xrystal
Thanks for the response Michael.

Thanks for the response Michael.
Forum: Lua/XML Help 03-24-24, 04:38 PM
Replies: 14
Views: 407
Posted By Xrystal
Yeah, sounds like the, not with you , scenario. ...

Yeah, sounds like the, not with you , scenario. But that should be covered by the phasing code if the grid2 developer used the code that was in blizzard's code.

I do notice on the grid2 frames a...
Forum: Lua/XML Help 03-24-24, 02:21 PM
Replies: 14
Views: 407
Posted By Xrystal
This looks to be where the functionality for that...

This looks to be where the functionality for that icon comes into play - basically just telling you they aren't nearby. So either phased, in another zone being summoned or recently refused or...
Forum: AddOn Help/Support 03-24-24, 05:46 AM
Replies: 12
Views: 407
Posted By Xrystal
It won't work exactly like that. This,...

It won't work exactly like that. This, theoretically, is what you want to use. You might have to tweak it but I think it's coded up the way you need it to be.




local addonName, addon =...
Forum: Lua/XML Help 03-23-24, 06:19 PM
Replies: 2
Views: 183
Posted By Xrystal
As an alternative to downloading yourself there...

As an alternative to downloading yourself there are 2 sites I have on my shortcut list that I utilise if I haven't downloaded a recent version of the files.

https://github.com/Gethe/wow-ui-source -...
Forum: AddOn Help/Support 03-23-24, 12:22 PM
Replies: 12
Views: 407
Posted By Xrystal
Ah, then nope, not possible to do that. Not...

Ah, then nope, not possible to do that.

Not sure where that ID you are talking about comes from as the GUID value which is a short term unique id for everything in the game is much longer than a...
Forum: AddOn Help/Support 03-23-24, 07:39 AM
Replies: 12
Views: 407
Posted By Xrystal
No, unitID is a variable that has to hold one of...

No, unitID is a variable that has to hold one of the predefined unit values such as player, target, focus, pet etc. As the unit id link posted by SDPhantom explains.

But as was said, you can...
Forum: Lua/XML Help 03-23-24, 07:11 AM
Replies: 6
Views: 283
Posted By Xrystal
I can't see anything clearly wrong with your...

I can't see anything clearly wrong with your code.

nUI auto switches rep fine ( although admittedly I haven't played properly much recently so a recent patch may have done something, but no one has...
Forum: AddOn Help/Support 03-22-24, 07:32 PM
Replies: 9
Views: 315
Posted By Xrystal
It doesn't come up on the minimap button. My...

It doesn't come up on the minimap button. My addon uses the LibDataBroker part to place a button display on things like titanpanel, chocolatebar type of addons. The addon page explains that....
Forum: AddOn Help/Support 03-22-24, 04:20 PM
Replies: 9
Views: 315
Posted By Xrystal
Codger, if you want to have a look at a...

Codger, if you want to have a look at a relatively simple addon that uses the libdatabroker part of the library you can grab a copy of my AltILevel addon I created 10 years ago. It was still working...
Forum: AddOn Help/Support 03-19-24, 10:54 AM
Replies: 13
Views: 3,102
Posted By Xrystal
This has some examples and info on using it for...

This has some examples and info on using it for sound
https://warcraft.wiki.gg/wiki/API_PlaySound

As to a colour alert, it depends on what you mean.

You could do something as simple as colourizing...
Forum: AddOn Help/Support 03-19-24, 06:20 AM
Replies: 13
Views: 3,102
Posted By Xrystal
That is because you didn't use the the...

That is because you didn't use the the localization version.

L.Running, MyRegion[id].name

L.Running is using the localization version
MyRegion[id].name is using the English version

What you need...
Forum: AddOn Help/Support 03-18-24, 10:52 AM
Replies: 7
Views: 961
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: 1,299
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: 3,817
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: 444
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: 336
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: 336
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: 359
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: 2,975
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: 2,975
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: 822
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...
Showing results 1 to 25 of 500