Showing results 1 to 25 of 75
Search took 0.00 seconds.
Search: Posts Made By: elcius
Forum: Macro Help 04-15-22, 03:28 AM
Replies: 2
Views: 1,806
Posted By elcius
you can do something like this: /cleartarget /tar...

you can do something like this:
/cleartarget
/tar mobname
/cast [exists] spellname
/targetlasttarget
but there is no perfect solution and it's better practice to just use focus casting.
Forum: AddOn Search/Requests 02-05-22, 11:36 AM
Replies: 20
Views: 6,198
Posted By elcius
I think this is something you should be doing...

I think this is something you should be doing with the web api instead of in-game
https://develop.battle.net/documentation/world-of-warcraft/profile-apis
Forum: AddOn Search/Requests 07-26-21, 08:09 PM
Replies: 4
Views: 5,241
Posted By elcius
the GetAll request is not instant, it streams the...

the GetAll request is not instant, it streams the auctions over at 2048/second, you can work with the results instantly but you'll obviously only have access to the data that has already...
Forum: General Authoring Discussion 06-16-21, 02:00 PM
Replies: 7
Views: 3,862
Posted By elcius
most likely the problem is this part: local...

most likely the problem is this part:
local inputRaw = splitStringToTable(value,"\n");

for k,v in pairs(inputRaw) do
if not (ShortStats[v]) then -- Check if player entered nonsence. And...
Forum: AddOn Search/Requests 07-14-20, 07:16 PM
Replies: 7
Views: 9,078
Posted By elcius
if you want to use the file ids, then you'll need...

if you want to use the file ids, then you'll need to make a lookup table like the one you linked. I'm pretty sure that data is stored in /dbfilesclient/texturefiledata.db2 (could be wrong, just...
Forum: AddOn Search/Requests 07-14-20, 04:21 PM
Replies: 7
Views: 9,078
Posted By elcius
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: 2,046
Posted By elcius
the code that handles item clicking can be found...

the code that handles item clicking can be found here (https://github.com/tomrus88/BlizzardInterfaceCode/blob/master/Interface/FrameXML/ContainerFrame.lua#L1216), but that's probably not what you...
Forum: Lua/XML Help 02-28-20, 01:42 AM
Replies: 10
Views: 4,057
Posted By elcius
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: 2,130
Posted By elcius
the first issue is probably a layering problem,...

the first issue is probably a layering problem, make sure the button texture is attached to something on a higher frame level than whatever the background...
Forum: Lua/XML Help 08-22-19, 09:26 PM
Replies: 10
Views: 4,849
Posted By elcius
I see, some auctions do get removed, most likely...

I see, some auctions do get removed, most likely due to the fact character names of the posters get resolved when querying GetAuctionItemInfo, which in turn causes the auction list to refresh/update...
Forum: Lua/XML Help 08-22-19, 06:50 PM
Replies: 10
Views: 4,849
Posted By elcius
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: 4,849
Posted By elcius
Not exactly sure what the problem you're having...

Not exactly sure what the problem you're having is, but the most efficient way to handle a GetAll response is to ignore the event. just scan and keep track of your position in the results with...
Forum: oUF (Otravi Unit Frames) 08-17-19, 05:58 AM
Replies: 2
Views: 5,708
Posted By elcius
most likely caused by floating point errors on a...

most likely caused by floating point errors on a parent frames position or size.
doing this may work:
self:SetSize(220.1, 41.1)
Forum: General Authoring Discussion 06-28-19, 08:31 AM
Replies: 5
Views: 5,274
Posted By elcius
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: 2,573
Posted By elcius
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: 3,162
Posted By elcius
just mouse over the pin and type "/dump...

just mouse over the pin and type "/dump GetMouseFocus().pinTemplate", then find that template file.
Forum: Lua/XML Help 06-09-19, 05:13 AM
Replies: 5
Views: 3,162
Posted By elcius
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: 5,853
Posted By elcius
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,999
Posted By elcius
Everything except the inventory, followers and...

Everything except the inventory, followers and possibly transmog can be obtained through the Community Platform API.
Forum: AddOn Help/Support 04-06-19, 04:35 PM
Replies: 3
Views: 5,744
Posted By elcius
https://wow.gamepedia.com/SecureActionButtonTempla...

https://wow.gamepedia.com/SecureActionButtonTemplate

If you want the blizzard art and stuff you can inherit from ActionButtonTemplate again, but you'll need to do most of the event handlers...
Forum: AddOn Help/Support 04-06-19, 03:11 PM
Replies: 3
Views: 5,744
Posted By elcius
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: 1,503
Posted By elcius
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: 7,310
Posted By elcius
Since i'm pretty sure PlayerModel derived objects...

Since i'm pretty sure PlayerModel derived objects can't be masked, i'm assuming you're working with non-animated 3D portraits, which iirc only come from SetPortraitTextureFromCreatureDisplayID, which...
Forum: AddOn Help/Support 02-24-19, 08:11 PM
Replies: 8
Views: 10,351
Posted By elcius
you need to create your frame as a secure action...

you need to create your frame as a secure action button, and then bind it with either the "target" or "macro" actions.

https://wow.gamepedia.com/SecureActionButtonTemplate
Forum: General Authoring Discussion 11-29-18, 01:02 AM
Replies: 2
Views: 2,201
Posted By elcius
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.
Showing results 1 to 25 of 75