Showing results 1 to 25 of 500
Search took 0.22 seconds.
Search: Posts Made By: Phanx
Forum: oUF (Otravi Unit Frames) 07-29-18, 06:08 PM
Replies: 27
Views: 26,019
Posted By Phanx
Nope, sorry.

Nope, sorry.
Forum: Tech Chat 05-13-18, 04:41 AM
Replies: 12
Views: 13,666
Posted By Phanx
I had the same experience. When I switched from...

I had the same experience. When I switched from Win7 to Linux at the end of 2015, I gained about 20 FPS in WoW.

I did get a large FPS boost when switching from DX9 to DX11, but I'm pretty sure all...
Forum: Tech Chat 05-12-18, 10:39 AM
Replies: 12
Views: 13,666
Posted By Phanx
I had to upgrade for some 7.x major patch......

I had to upgrade for some 7.x major patch... maybe 7.3? when Blizzard apparently added some new copy protection scheme into WoW and my then-current wine-staging-2.2 no longer worked. Here's what I...
Forum: Tech Chat 05-12-18, 09:41 AM
Replies: 12
Views: 13,666
Posted By Phanx
What version of Wine are you using? If it's the...

What version of Wine are you using? If it's the version from your Ubuntu-based distro, it's probably about as old as the earth; go to https://wiki.winehq.org/Download and add their repo so you can...
Forum: General Authoring Discussion 05-12-18, 06:14 AM
Replies: 3
Views: 2,560
Posted By Phanx
Yes, that's the whole point of everything...

Yes, that's the whole point of everything explained in this thread. ;)
Forum: General Authoring Discussion 05-12-18, 06:13 AM
Replies: 5
Views: 4,325
Posted By Phanx
I don't know why you'd need to do anything with...

I don't know why you'd need to do anything with newlines or tabs. Just structure your data correctly as nested Lua tables:


local data = {
{ "this is a cell", "", "5" },
{ "hello world", "row...
Forum: General Authoring Discussion 05-10-18, 10:45 PM
Replies: 5
Views: 4,325
Posted By Phanx
AceGUI and Sushi are intended primarily for...

AceGUI and Sushi are intended primarily for configuration GUIs -- they provide checkboxes, dropdowns, sliders, etc. Based on the screenshots on your addon page, those don't really apply in your...
Forum: General Authoring Discussion 05-06-18, 02:30 PM
Replies: 9
Views: 4,360
Posted By Phanx
For things like this, rather than targeting...

For things like this, rather than targeting specific objects by name in a list whose members are dynamically created, just hook the function that updates all the objects in the list, and hook each...
Forum: Lua/XML Help 05-06-18, 02:12 PM
Replies: 5
Views: 5,035
Posted By Phanx
Actually after looking at the grand total of 3...

Actually after looking at the grand total of 3 objects in the default UI that are resizable using this method, I think the (main) problem is that you need to specify a direction in which to resize...
Forum: Lua/XML Help 05-06-18, 02:01 PM
Replies: 5
Views: 5,035
Posted By Phanx
I'm not sure how that second part (frames drag...

I'm not sure how that second part (frames drag when you use the right mouse button) can happen, given the code you posted:

JWRepBarFrame:SetScript("OnMouseDown", function(self, button)
if button...
Forum: AddOn Help/Support 05-06-18, 01:43 PM
Replies: 6
Views: 4,398
Posted By Phanx
Based on my reading of the Blizzard change...

Based on my reading of the Blizzard change thread, the spell name value was removed along with the spell rank. Without seeing the rest of the code (and I'm too lazy to go hunt the addon down and...
Forum: AddOn Search/Requests 05-06-18, 01:28 PM
Replies: 5
Views: 4,272
Posted By Phanx
Masque skins action buttons (and things that use...

Masque skins action buttons (and things that use the same structure as an action button), and the experience bar isn't an action button or anything like one, so it's just not possible to use Masque...
Forum: Lua/XML Help 05-06-18, 01:21 PM
Replies: 5
Views: 5,035
Posted By Phanx
What is your actual question? You said "the frame...

What is your actual question? You said "the frame moves regardless of which modifier I use", but is that a description something your code does now that you don't want, or a description of something...
Forum: Released AddOns 05-04-18, 01:23 PM
Replies: 153
Views: 91,218
Posted By Phanx
I've added WoW 8.x (BfA) compatibility, but can't...

I've added WoW 8.x (BfA) compatibility, but can't test it since I don't have beta access, and don't expect to get a beta invite since my account doesn't have an active subscription.

If you do have...
Forum: Lua/XML Help 03-24-18, 12:39 AM
Replies: 4
Views: 2,460
Posted By Phanx
That will only update the frame once, when the...

That will only update the frame once, when the unit is first set (e.g. to "target"). If you click on another unit to change your target, the unit attribute doesn't change (it's still "target") so...
Forum: AddOn Search/Requests 03-24-18, 12:19 AM
Replies: 1
Views: 3,370
Posted By Phanx
1. Adding entries to right-click menus is highly...

1. Adding entries to right-click menus is highly inadvisable, as doing so will taint the entire dropdown menu system, which will block a wide variety of actions (join/leave battleground, dismiss pet,...
Forum: Lua/XML Help 03-24-18, 12:15 AM
Replies: 2
Views: 1,883
Posted By Phanx
No; zone actions are just spells that your...

No; zone actions are just spells that your character knows, but that are hidden from the spellbook. You can verify this by examining the return values from GetActionInfo(slotID)...
Forum: Lua/XML Help 03-23-18, 11:41 PM
Replies: 1
Views: 1,903
Posted By Phanx
There are these global...

There are these global constants:
https://www.townlong-yak.com/framexml/live/Constants.lua#270

GetItemInfo will give you something like "INVTYPE_HEAD", so you could replace "INVTYPE" with "INVSLOT"...
Forum: Lua/XML Help 03-15-18, 03:16 PM
Replies: 7
Views: 7,348
Posted By Phanx
Look again. The line you highlights assigns the...

Look again. The line you highlights assigns the returned outer table to a variable, and then the very next line loops over the inner table(s).
Forum: Lua/XML Help 03-15-18, 03:14 PM
Replies: 7
Views: 7,348
Posted By Phanx
Yes, that's why I posted it. :p Unclear. I...

Yes, that's why I posted it. :p



Unclear. I can't test, but maybe there's a second table for something like an enhancement shaman's Healing Surge which costs mana but can additionally consume...
Forum: Lua/XML Help 03-15-18, 01:05 AM
Replies: 7
Views: 7,348
Posted By Phanx
/dump GetSpellPowerCost(2061) { { cost =...

/dump GetSpellPowerCost(2061)
{
{
cost = 10,
costPercent = 3,
costPerSec = 0,
hasRequiredAura = false,
minCost = 10,
name = "MANA",
requiredAuraID = 0,
Forum: Lua/XML Help 03-15-18, 12:35 AM
Replies: 30
Views: 8,516
Posted By Phanx
If you mean it no longer tests if the character...

If you mean it no longer tests if the character knows flying skills required for the current area (e.g. you need Broken Isles Pathfinder to fly in Legion zones) that's not really a change; it's...
Forum: AddOn Search/Requests 03-09-18, 02:56 AM
Replies: 10
Views: 2,849
Posted By Phanx
Not possible. Addons cannot change what happens...

Not possible. Addons cannot change what happens when you click on a unit in the game world.

You could compensate by running your existing macro, with minor changes, after selecting the...
Forum: Chit-Chat 03-09-18, 02:48 AM
Replies: 21
Views: 20,234
Posted By Phanx
The problem with all of those is that none of...

The problem with all of those is that none of them, as far as I can tell, are capable of recognizing addons that are already installed, or that get installed outside of them. With 150+ addons, like...
Forum: AddOn Help/Support 03-06-18, 12:15 AM
Replies: 8
Views: 11,884
Posted By Phanx
If you just want to show that you have the buff,...

If you just want to show that you have the buff, then yes, the first way will work.

If you want to show how much time is left on the buff, or any other information about it other than "it exists",...
Showing results 1 to 25 of 500