Showing results 1 to 25 of 61
Search took 0.01 seconds.
Search: Posts Made By: LBXZero
Forum: Lua/XML Help 01-03-20, 04:59 AM
Replies: 5
Views: 3,427
Posted By LBXZero
If you want a little fun detail in regards to pet...

If you want a little fun detail in regards to pet spells, pet spells' spell ID can be used with "cast by spellID" functions. The spell IDs are 32bit integers, and pet spells carry flag bits in the...
Forum: Lua/XML Help 01-02-20, 09:17 AM
Replies: 5
Views: 3,427
Posted By LBXZero
I worked through the SpellbookFrame.lua file. ...

I worked through the SpellbookFrame.lua file. The function "HasPetSpells()" returns number of pet spells.

https://wow.gamepedia.com/API_HasPetSpells

I haven't used libraries for anything, yet.
Forum: Lua/XML Help 12-22-19, 09:16 AM
Replies: 9
Views: 3,945
Posted By LBXZero
I am guessing that you want a chat link like...

I am guessing that you want a chat link like items where you can view a tolltip when clicking on the link in the chat window.

Edit:
A small look at what it could take to add a spell chatlink like...
Forum: Lua/XML Help 12-19-19, 10:37 PM
Replies: 9
Views: 3,945
Posted By LBXZero
I could take a look at it for my addon. In my...

I could take a look at it for my addon. In my testing, the chat link from a spell in the spellbook in Classic only puts the name, no tooltip link.
Forum: Lua/XML Help 12-17-19, 03:49 AM
Replies: 9
Views: 3,945
Posted By LBXZero
May I ask, what are you intending to do with...

May I ask, what are you intending to do with GetSpellLink and SpellID?
Forum: Released AddOns 12-05-19, 08:42 AM
Replies: 3
Views: 10,618
Posted By LBXZero
If you are referring to "Rank Filter" and "Auto...

If you are referring to "Rank Filter" and "Auto Up-Rank", you can hold control+right click on the option and drag it to a different location.
Forum: Released AddOns 11-28-19, 04:02 PM
Replies: 3
Views: 10,618
Posted By LBXZero
Spellbook Abridged for WoW Classic

I made the addon back during Burning Crusade because for my fire mage, I hated sifting through a few pages for 5 spells. Then, it was made obsolete in Wrath of the Lich King, which was not a bad...
Forum: General Authoring Discussion 11-14-19, 10:28 AM
Replies: 2
Views: 4,675
Posted By LBXZero
So far, I decided to play to the limits of what I...

So far, I decided to play to the limits of what I can access. I am parsing the tooltip data, look for a text line that has an available form in the line, and then check if the line is red (if red...
Forum: Lua/XML Help 11-14-19, 06:55 AM
Replies: 11
Views: 8,200
Posted By LBXZero
For taint, some reading...

For taint, some reading material.

https://wow.gamepedia.com/Secure_Execution_and_Tainting
Forum: Lua/XML Help 11-13-19, 05:52 AM
Replies: 11
Views: 8,200
Posted By LBXZero
I think the problem is not our code. The problem...

I think the problem is not our code. The problem may be that you need to add an xml file and create a base frame for your addon so you can make use of the "OnLoad" and "OnEvent" scripts. Certain...
Forum: Wish List 11-11-19, 12:50 PM
Replies: 0
Views: 25,384
Posted By LBXZero
Is Spell Usable in Current Form

The function(s) I wish were in the UI:

IsUsableInForm(spellID, [x])

Input:
spellID = spellID of Spell being checked
x = Index based on class's available forms (Use GetShapeshiftFormInfo index). ...
Forum: Lua/XML Help 11-10-19, 07:16 AM
Replies: 11
Views: 8,200
Posted By LBXZero
Looking at the code, the point where the...

Looking at the code, the point where the individual ArenaEnemyFrame items are being modified is when "ArenaEnemyFrame_UpdatePlayer" gets called.

Move the lines that clear and set the points for the...
Forum: General Authoring Discussion 11-09-19, 05:06 PM
Replies: 2
Views: 4,675
Posted By LBXZero
Spellbook in Classic WoW, looking for Feedback

The mod I made and am still working on is SpellBook Abridged for WoW Classic. Right now, I am trying to keep the Spellbook normal, but I added a filter to select between showing all spells and...
Forum: Lua/XML Help 11-09-19, 05:12 AM
Replies: 11
Views: 8,200
Posted By LBXZero
The last 5 lines of your script taints those...

The last 5 lines of your script taints those Arena Frames. Why do you need to disable that function?
Forum: AddOn Help/Support 10-29-19, 09:14 PM
Replies: 2
Views: 5,401
Posted By LBXZero
What macros do you have? If you have any macros,...

What macros do you have? If you have any macros, I suggest posting the macros here for review.

Also, if something that "is not Blizzard" modifies a frame in some way, it becomes "tainted". Tainted...
Forum: General Authoring Discussion 10-22-19, 02:54 AM
Replies: 4
Views: 5,115
Posted By LBXZero
I found a method that works, after a little...

I found a method that works, after a little epiphany...

First, I can't reassign the function for Show() for the specific frame. It became a script error, probably due to the nature of the...
Forum: General Authoring Discussion 10-21-19, 05:16 PM
Replies: 4
Views: 5,115
Posted By LBXZero
I will try the "nop()" method first. I prefer...

I will try the "nop()" method first. I prefer simple solutions. If that doesn't stop the spellbook from opening during combat, then I will have to disable keybindings and the Blizzard button.

I...
Forum: General Authoring Discussion 10-21-19, 04:51 AM
Replies: 4
Views: 5,115
Posted By LBXZero
How do I prevent a frame from showing during combat

Currently, I have an addon that directly modifies the behavior of Blizzard's Spellbook to filter what spells are shown. Due to nature of operation, I can't avoid tainting it.

I have gotten around...
Forum: Lua/XML Help 10-11-19, 12:20 PM
Replies: 5
Views: 3,427
Posted By LBXZero
Are you still working on this problem? I...

Are you still working on this problem? I recently did some work modifying the spellbook for WoW Classic, and I may be able to help given the experimentation I did.
Forum: Tutorials & Other Helpful Info. 10-07-19, 05:00 PM
Replies: 0
Views: 5,675
Posted By LBXZero
Pet Spell ID info I discovered

In the process of configuring a Secure Action Button to replicate a Spell Button's click actions, I discovered some data on the Pet Spell IDs. I don't know if this is already know, useful, or where...
Forum: AddOn Search/Requests 12-19-10, 04:04 PM
Replies: 8
Views: 5,026
Posted By LBXZero
Thanks Blanckaert. The most annoying buffs are...

Thanks Blanckaert. The most annoying buffs are those costume buffs. I was tanking in HoS when someone put the bat costume on me. From that point on, it got very annoying to have a buff that can...
Forum: AddOn Search/Requests 12-19-10, 07:29 AM
Replies: 8
Views: 5,026
Posted By LBXZero
Unit or Buff Frame that allows cancelling buffs

I am seeking a UnitFrames mod or Buff Frame mod that has the code for cancelling buffs on my character. It seems most of the mods that involve the Buff Frames exclude the "click to cancel buff"...
Forum: General Authoring Discussion 09-05-08, 04:50 AM
Replies: 4
Views: 4,751
Posted By LBXZero
SPELLS_CHANGED is fired whenever UpdateSpells()...

SPELLS_CHANGED is fired whenever UpdateSpells() is called, which is only used in the Spell Book frame. By my search of all files in FrameXML folder, the only frame that uses SPELLS_CHANGED is the...
Forum: AddOn Search/Requests 09-02-08, 11:30 AM
Replies: 8
Views: 8,100
Posted By LBXZero
Looking at the Talent Frame's code to show the...

Looking at the Talent Frame's code to show the pet talent frame, you should duplicate the code in PlayerTalentFrameType_OnClick() but remove the conditionals and make it directly as if the pet button...
Forum: AddOn Search/Requests 08-31-08, 05:18 PM
Replies: 8
Views: 8,100
Posted By LBXZero
Now comparing changes in function list from 8820...

Now comparing changes in function list from 8820 to 8885

Functions added were "forceinsecure" and "tostringall"

Most function name changes were in the context of animation and similar. Calendar...
Showing results 1 to 25 of 61