Showing results 1 to 25 of 158
Search took 0.01 seconds.
Search: Posts Made By: sezz
Forum: Lua/XML Help 09-04-21, 08:04 AM
Replies: 7
Views: 2,001
Posted By sezz
you could use onupdate to process x items every...

you could use onupdate to process x items every frame or coroutines or a mix of both (that's what i do, throttling based on fps)

are you sure the issue isn't how you process (or even access) your...
Forum: AddOn Search/Requests 09-01-21, 10:48 AM
Replies: 2
Views: 1,905
Posted By sezz
something like this exists, i don't know how the...

something like this exists, i don't know how the addon is called but it's phrase "may i please have [item] if you don't need it?" is in my chat filters
Forum: Lua/XML Help 07-08-21, 09:33 AM
Replies: 1
Views: 1,205
Posted By sezz
slot, slotName, sourceID, visualID 1,...

slot, slotName, sourceID, visualID

1, "HEADSLOT", 77344, 29124
3, "SHOULDERSLOT", 77343, 24531
4, "SHIRTSLOT", 83202, 33155
5, "CHESTSLOT", 104602, 40282
6, "WAISTSLOT", 84223, 33252
8, "FEETSLOT",...
Forum: Lua/XML Help 07-08-21, 04:20 AM
Replies: 1
Views: 1,205
Posted By sezz
nAre hidden appareances not saved aymore in 9.1?

I'm not sure if this is this a 9.1 bug or an issue on my side:

"Hidden Chestpiece", "Hidden Cloak" and others don't enable the "Save" button anymore in the wardrobe + they aren't saved on the...
Forum: Lua/XML Help 07-05-21, 12:23 PM
Replies: 0
Views: 1,118
Posted By sezz
Test if code is triggered by hardware event?

Does anybody know if there a way to know if a function is triggered by a hardware event and can run secure code?
Forum: Lua/XML Help 05-27-21, 05:30 PM
Replies: 9
Views: 3,394
Posted By sezz
GetNumFactions() returns 0 at the time you're...

GetNumFactions() returns 0 at the time you're calling it, C_Covenants.GetActiveCovenantID() aswell.

Maybe you could get all the faction data in OnEnable instead? I think AceAddon's OnEnable is...
Forum: AddOn Search/Requests 05-25-21, 03:04 PM
Replies: 26
Views: 10,400
Posted By sezz
I'd do it like this: local binding =...

I'd do it like this:

local binding = "SPACE";
local target = "Collector Unta";

local UnitExists, UnitName, SetOverrideBinding, ClearOverrideBindings, SetOverrideBindingClick, IsMounted,...
Forum: AddOn Search/Requests 05-24-21, 03:20 PM
Replies: 26
Views: 10,400
Posted By sezz
Well, because it's 2 button presses - I...

Well, because it's 2 button presses - I specifically asked if it's only 1 single key press.
Nevertheless, I'm glad you found it though :) Do you still need help with removing everything that's...
Forum: AddOn Search/Requests 05-21-21, 08:18 PM
Replies: 26
Views: 10,400
Posted By sezz
Your current addon works with 1 single button...

Your current addon works with 1 single button press without using a lua unlocker on official servers?

Just curious, because InteractTarget and RunBinding are protected and I currently can't think of...
Forum: AddOn Search/Requests 05-21-21, 02:33 PM
Replies: 26
Views: 10,400
Posted By sezz
1. use a macro that contains /target npcname 2....

1. use a macro that contains /target npcname
2. bind "interact with target"

?
Forum: PTR General Discussion 04-14-21, 12:28 PM
Replies: 3
Views: 4,822
Posted By sezz
Sweet, they finally fixed scrolling. It doesn't...

Sweet, they finally fixed scrolling.

It doesn't yet refresh automatically after removing an event (unless the scrollbar is at the buttom) and filtering is buggy sometimes but it's still awesome -...
Forum: Lua/XML Help 04-11-21, 07:16 PM
Replies: 11
Views: 8,356
Posted By sezz
Any known workarounds yet or I'm I really the...

Any known workarounds yet or I'm I really the only one who clicks on tracked world quests in combat? :confused:
Forum: Lua/XML Help 04-11-21, 03:53 PM
Replies: 16
Views: 7,074
Posted By sezz
Personally I'd would use my solution because it...

Personally I'd would use my solution because it doesn't rely on Blizzard to provide a up-to-date and complete documentation (also you don't need to load the addon which itself takes about 2-3 times...
Forum: Lua/XML Help 04-11-21, 06:22 AM
Replies: 16
Views: 7,074
Posted By sezz
did you try if it works without using acevent...

did you try if it works without using acevent which itself uses callbackhandler and that's propably why it doesn's work as you expect it?

local f = CreateFrame("Frame");

local EventExists =...
Forum: Lua/XML Help 04-04-21, 09:50 PM
Replies: 19
Views: 8,725
Posted By sezz
What do you need the spell id for/what should...

What do you need the spell id for/what should happen after dragging the pet on the button?
Forum: Lua/XML Help 04-03-21, 11:26 PM
Replies: 19
Views: 8,725
Posted By sezz
Did you try it? Edit: Still...

Did you try it?

Edit: Still works:
https://i.imgur.com/Cvyk9tk.png
Forum: Lua/XML Help 04-03-21, 12:54 PM
Replies: 7
Views: 1,986
Posted By sezz
Exactly - if you change SetWidth back to...

Exactly - if you change SetWidth back to SetLenght you should see an error popup.
Forum: Lua/XML Help 04-03-21, 12:16 PM
Replies: 7
Views: 1,986
Posted By sezz
Last time I checked there was a checkbox in the...

Last time I checked there was a checkbox in the game settings, but I can't find it right now (maybe Blizzard removed it?). Anyways, you can also use this:

/run SetCVar("scriptErrors", 1);
Forum: Lua/XML Help 04-03-21, 11:17 AM
Replies: 19
Views: 8,725
Posted By sezz
I use C_PetJournal.GetPetInfoByPetID...

I use C_PetJournal.GetPetInfoByPetID (https://wowpedia.fandom.com/wiki/API_C_PetJournal.GetPetInfoByPetID) for handling pets on action bars, maybe that's what you're looking for.
Forum: Lua/XML Help 04-03-21, 11:04 AM
Replies: 7
Views: 1,986
Posted By sezz
Do you have Lua errors enabled? AFAIK SetLenght...

Do you have Lua errors enabled?

AFAIK SetLenght doesn't exist, replace it with SetWidth (or use SetSize).
Forum: Lua/XML Help 03-07-21, 05:07 PM
Replies: 2
Views: 2,007
Posted By sezz
Interesting, but seems to fire even before...

Interesting, but seems to fire even before PLAYER_ENTERING_WORLD.

I just had a a look at some random WAs related to conduits and they all seem to use a timer for this, maybe that's currently really...
Forum: Lua/XML Help 03-07-21, 11:58 AM
Replies: 2
Views: 2,007
Posted By sezz
Event that indicates that conduit data is available?

Is there an event that fires when installed conduits can be queried after logging in (specifically soulbindData.tree.nodes returned by C_Soulbinds.GetSoulbindData or...
Forum: Lua/XML Help 02-16-21, 04:44 PM
Replies: 2
Views: 1,617
Posted By sezz
MoP CM = Mythic+ Events: CHALLENGE_MODE_*...

MoP CM = Mythic+

Events: CHALLENGE_MODE_* (https://wow.gamepedia.com/Events#C_ChallengeMode)
API: C_ChallengeMode (https://wow.gamepedia.com/Category:API_namespaces/C_ChallengeMode)
Forum: AddOn Search/Requests 01-24-21, 04:18 PM
Replies: 8
Views: 4,622
Posted By sezz
When the python script finds item X on server Y...

When the python script finds item X on server Y for a price less then Z it creates/updates a shopping list in [not yet existing addon's] SavedVariables lua -> we don't need to care about this.

So...
Forum: AddOn Search/Requests 01-09-21, 10:21 AM
Replies: 4
Views: 5,753
Posted By sezz
i have the soul trader pet, he can't be used as a...

i have the soul trader pet, he can't be used as a normal vendor

in my auto-vendoring module i just register the BAG_UPDATE_DELAYED event when the option to automatically sell on bag update is...
Showing results 1 to 25 of 158