Forum: AddOn Search/Requests
07-14-20, 07:16 PM
|
Replies: 7
Views: 2,994
|
Forum: AddOn Search/Requests
07-14-20, 04:21 PM
|
Replies: 7
Views: 2,994
The minimap textures are stored in...
The minimap textures are stored in /World/Minimaps/, iirc addons were forbidden from accessing files outside of /Interface in a recent patch, so you'll have to make a copy in the addons...
|
Forum: Lua/XML Help
04-21-20, 03:42 PM
|
Replies: 1
Views: 1,142
|
Forum: Lua/XML Help
02-28-20, 01:42 AM
|
Replies: 10
Views: 1,794
The minimap textures are stored in...
The minimap textures are stored in /World/Minimaps/, iirc addons were forbidden from accessing files outside of /Interface in a recent patch, so you'll have to make a copy in the addons...
|
Forum: Lua/XML Help
08-23-19, 06:42 PM
|
Replies: 4
Views: 682
|
Forum: Lua/XML Help
08-22-19, 09:26 PM
|
Replies: 10
Views: 1,850
|
Forum: Lua/XML Help
08-22-19, 06:50 PM
|
Replies: 10
Views: 1,850
it's a common misunderstanding that GetAll...
it's a common misunderstanding that GetAll delivers the auctions all at once, that's why most people still listen for the event, or even worse they wait until everything as arrived and then lock up...
|
Forum: Lua/XML Help
08-22-19, 05:28 PM
|
Replies: 10
Views: 1,850
|
Forum: oUF (Otravi Unit Frames)
08-17-19, 05:58 AM
|
Replies: 2
Views: 2,028
|
Forum: General Authoring Discussion
06-28-19, 08:31 AM
|
Replies: 5
Views: 3,295
As of 8.2 addons are only allowed to access...
As of 8.2 addons are only allowed to access textures inside ./Interface, Minimap textures are in the ./World subdirectory.
Most likely the addon will need to be updated to include copies of the...
|
Forum: Lua/XML Help
06-18-19, 12:24 AM
|
Replies: 3
Views: 1,222
It's probably not a simple task to do it in a...
It's probably not a simple task to do it in a single click, as both the cancelaura and the interact commands both require hardware events, and since interacting with npc's is an action that must be...
|
Forum: Lua/XML Help
06-10-19, 06:38 AM
|
Replies: 5
Views: 1,067
|
Forum: Lua/XML Help
06-09-19, 05:13 AM
|
Replies: 5
Views: 1,067
if you can determine which DataProvider...
if you can determine which DataProvider (https://github.com/tomrus88/BlizzardInterfaceCode/tree/master/Interface/AddOns/Blizzard_SharedMapDataProviders) the pin comes from (you can check by calling...
|
Forum: General Authoring Discussion
06-01-19, 05:23 PM
|
Replies: 8
Views: 1,937
The problem is that it uses GetCursorPosition,...
The problem is that it uses GetCursorPosition, but does not account for frame scale. if you override the handler it may work.
WorldMapFrame.ScrollContainer.GetCursorPosition = function(f)
local x,y...
|
Forum: AddOn Search/Requests
04-13-19, 04:11 PM
|
Replies: 3
Views: 1,022
|
Forum: AddOn Help/Support
04-06-19, 04:35 PM
|
Replies: 3
Views: 1,782
|
Forum: AddOn Help/Support
04-06-19, 03:11 PM
|
Replies: 3
Views: 1,782
make it a CheckButton and inherit from...
make it a CheckButton and inherit from ActionBarButtonTemplate instead, it contains all the action bar event handlers.
but action slots only go to like 120, if you need more you'll have to simulate...
|
Forum: Lua/XML Help
03-19-19, 11:16 PM
|
Replies: 4
Views: 748
most api functions that provide data about the...
most api functions that provide data about the character or account will return data from the previously logged in character if called before PLAYER_LOGIN.
If you close the game you'll probably find...
|
Forum: AddOn Help/Support
03-17-19, 12:32 PM
|
Replies: 9
Views: 2,507
|
Forum: AddOn Help/Support
02-24-19, 08:11 PM
|
Replies: 8
Views: 3,409
|
Forum: General Authoring Discussion
11-29-18, 01:02 AM
|
Replies: 2
Views: 1,206
this addon...
this addon (https://wow.curseforge.com/projects/allthesets) exists, not well known but it does what you're trying to achieve i think.
|
Forum: General Authoring Discussion
11-29-18, 12:56 AM
|
Replies: 2
Views: 971
The npc id is the 5th value in the pet...
The npc id is the 5th value in the pet guid
Pet-0-3888-1220-15-89689-0102621669
I think in bfa they added some new systems to query npc info, if not you can resolve the name through scraping a...
|
Forum: General Authoring Discussion
07-11-18, 10:39 PM
|
Replies: 5
Views: 2,242
Most of the sub pixel issues in wow stem from...
Most of the sub pixel issues in wow stem from loss of precision on frame dimensions & position, check the actual position and size of whatever you're having issues with, most likely there will be...
|
Forum: PTR API and Graphics Changes
06-21-18, 12:57 AM
|
Replies: 31
Views: 19,028
|
Forum: PTR API and Graphics Changes
06-15-18, 09:38 PM
|
Replies: 31
Views: 19,028
local MapRects = {};
local TempVec2D =...
local MapRects = {};
local TempVec2D = CreateVector2D(0,0);
function GetPlayerMapPos(MapID)
local R,P,_ = MapRects[MapID],TempVec2D;
if not R then
R = {};
_, R[1] =...
|