Forum: PTR API and Graphics Changes
02-23-21, 06:03 AM
|
Replies: 4
Views: 414
|
Forum: Lua/XML Help
02-19-21, 11:14 AM
|
Replies: 4
Views: 445
|
Forum: Lua/XML Help
02-19-21, 09:13 AM
|
Replies: 4
Views: 445
PLAYERREAGENTBANKSLOTS_CHANGED...
PLAYERREAGENTBANKSLOTS_CHANGED (https://wow.gamepedia.com/PLAYERREAGENTBANKSLOTS_CHANGED) fires when an item is crafted from the reagent bank, or an item was deposited/withdrawn/moved in the reagent...
|
Forum: Macro Help
02-06-21, 01:52 PM
|
Replies: 9
Views: 475
|
Forum: General Authoring Discussion
02-05-21, 08:03 AM
|
Replies: 5
Views: 583
|
Forum: Lua/XML Help
01-17-21, 06:06 AM
|
Replies: 6
Views: 660
The savedvariables become available on the...
The savedvariables become available on the respective ADDON_LOADED event, that is when addons usually initialize and setup them. ADDON_LOADED also fires on /reload
I don't see the specific use case...
|
Forum: Lua/XML Help
01-07-21, 02:16 PM
|
Replies: 8
Views: 1,819
|
Forum: Lua/XML Help
01-07-21, 09:08 AM
|
Replies: 8
Views: 1,819
local guids = {}
local f =...
local guids = {}
local f = CreateFrame("Frame")
function f:NAME_PLATE_UNIT_ADDED(unit)
guids[UnitGUID(unit)] = unit
end
function f:NAME_PLATE_UNIT_REMOVED(unit)
guids[UnitGUID(unit)] = nil
end
|
Forum: Lua/XML Help
01-07-21, 09:04 AM
|
Replies: 8
Views: 1,819
|
Forum: General Authoring Discussion
01-04-21, 06:09 AM
|
Replies: 5
Views: 1,271
So like this but interactively?...
So like this but interactively? https://wow.tools/maps/
Yeah, those functions should help you on your way. Try referencing HereBeDragons (https://www.wowace.com/projects/herebedragons) too
|
Forum: General Authoring Discussion
01-04-21, 05:33 AM
|
Replies: 5
Views: 1,271
There is WorldMapAreaID...
There is WorldMapAreaID (https://wow.gamepedia.com/WorldMapAreaID) which was replaced in patch 8.0.1
But the "old" mapID 14 you're referring to here for Durotar is the AreaID
That is a UiMapID for...
|
Forum: General Authoring Discussion
01-04-21, 05:25 AM
|
Replies: 5
Views: 1,271
So you want to get the parent AreaID for a...
So you want to get the parent AreaID for a specific AreaID?
https://wow.tools/dbc/?dbc=areatable#colFilter[4]=exact%3A14
I don't think that's possible with the in-game API. There is only...
|
Forum: General Authoring Discussion
12-29-20, 01:38 PM
|
Replies: 17
Views: 6,227
|
Forum: General Authoring Discussion
12-27-20, 12:30 AM
|
Replies: 17
Views: 6,227
|
Forum: General Authoring Discussion
12-26-20, 12:28 AM
|
Replies: 17
Views: 6,227
|
Forum: Lua/XML Help
12-25-20, 01:40 PM
|
Replies: 3
Views: 1,868
C_AuctionHouse.SendSearchQuery()...
C_AuctionHouse.SendSearchQuery() (https://wow.gamepedia.com/API_C_AuctionHouse.SendSearchQuery) requires a table of AuctionHouseSortType
local sorts = {
{
sortOrder =...
|
Forum: Lua/XML Help
12-24-20, 02:45 PM
|
Replies: 3
Views: 1,276
|
Forum: Lua/XML Help
12-19-20, 06:42 PM
|
Replies: 10
Views: 11,212
|
Forum: Lua/XML Help
12-19-20, 05:13 PM
|
Replies: 10
Views: 11,212
I added an example to...
I added an example to C_AuctionHouse.SendSearchQuery() (https://wow.gamepedia.com/API_C_AuctionHouse.SendSearchQuery)
|
Forum: Macro Help
12-19-20, 02:29 PM
|
Replies: 2
Views: 1,125
/run if not ProxyAHBack then local f =...
/run if not ProxyAHBack then local f = CreateFrame("Button", "ProxyAHBack", nil, "SecureActionButtonTemplate") f:SetAttribute("type", "click") f:SetAttribute("clickbutton",...
|
Forum: General Authoring Discussion
12-07-20, 12:43 AM
|
Replies: 17
Views: 6,227
|
Forum: Lua/XML Help
11-24-20, 06:40 PM
|
Replies: 5
Views: 1,367
|
Forum: AddOn Help/Support
11-20-20, 05:39 AM
|
Replies: 8
Views: 2,054
|
Forum: Lua/XML Help
11-07-20, 10:45 PM
|
Replies: 6
Views: 5,330
You can parse the XML files for the "virtual"...
You can parse the XML files for the "virtual" attribute
Just a quick test dump which is in a not very useful format, my python sucks
https://gist.github.com/Ketho/7ce16e9e5384d00c28d935bf0fc2779c
|
Forum: Macro Help
11-06-20, 06:41 PM
|
Replies: 9
Views: 11,560
|