Showing results 1 to 19 of 19
Search took 0.00 seconds.
Search: Posts Made By: Flickerstreak
Forum: General Authoring Discussion 07-01-09, 12:07 PM
Replies: 11
Views: 10,682
Posted By Flickerstreak
That was what I'd figured, thanks. I have the...

That was what I'd figured, thanks. I have the diff dump from the latest live to PTR 3.2 initial, but wowcompares is so much nicer to work with. :)
Forum: General Authoring Discussion 06-29-09, 11:54 AM
Replies: 11
Views: 10,682
Posted By Flickerstreak
Question wowcompares in limbo?

Anyone have info as to when wowcompares.com will be operational again (or suggest an alternative)? It shows a listing of patches (including the new PTR) but no actual links to the diffs.
Forum: General Authoring Discussion 01-10-07, 06:37 PM
Replies: 1
Views: 4,027
Posted By Flickerstreak
CastSpellByName() works just fine for pet spells....

CastSpellByName() works just fine for pet spells. At least, it used to: I haven't looked in awhile. You can easily test this out by targeting an enemy and typing the following in chat with your water...
Forum: Wish List 01-08-07, 07:17 PM
Replies: 1
Views: 5,843
Posted By Flickerstreak
That's a really good idea... if it didn't set the...

That's a really good idea... if it didn't set the global name (instead just storing the frame object at parent.name). It would avoid polluting the global namespace.

You can do exactly what you're...
Forum: Wish List 01-08-07, 07:08 PM
Replies: 1
Views: 5,807
Posted By Flickerstreak
That one will never happen, because you could...

That one will never happen, because you could write a custom sort function that sorts raid units by health deficit, which is exactly what they want to expressly prohibit. The best you might get would...
Forum: Wish List 01-08-07, 06:59 PM
Replies: 4
Views: 9,904
Posted By Flickerstreak
Arrow Request: SecureTemplate access for forgotten protected functions

There are quite a few "forgotten" protected functions which don't have any secure template access (and really need it):

- StopAttack()
- TogglePetAutocast()
- PetStopAttack()
-...
Forum: Lua/XML Help 12-15-06, 01:09 PM
Replies: 4
Views: 3,220
Posted By Flickerstreak
Just put a for loop around it. Like this: for i...

Just put a for loop around it. Like this:


for i = 1, 16 do
local name, rank, icon, count, debuffType = UnitDebuff("target", 1)
if (debuffType == "Poison")then
-- do something here
end
end
Forum: Lua/XML Help 12-14-06, 05:44 PM
Replies: 5
Views: 4,075
Posted By Flickerstreak
Looking at your example code, you don't use any...

Looking at your example code, you don't use any global variables at all - everything is done in the slash-command function locally. You're not storing the result of the commands anywhere, you're just...
Forum: Lua/XML Help 12-13-06, 04:38 PM
Replies: 4
Views: 3,220
Posted By Flickerstreak
local name, rank, icon, count, type =...

local name, rank, icon, count, type = UnitDebuff("target","Deadly Poison")

That usage of UnitDebuff is new in 2.0 (previously you needed to pass the debuff slot ID, an integer 1-16, for the second...
Forum: Lua/XML Help 12-13-06, 04:06 PM
Replies: 1
Views: 2,813
Posted By Flickerstreak
I don't think a macro can decipher whether you...

I don't think a macro can decipher whether you are behind a target or not. However the ambush/backstab macro is easy:


/cast [stealth] Ambush; [nostealth] Backstab


If there were a 'behindtarget'...
Forum: Lua/XML Help 12-13-06, 03:56 PM
Replies: 5
Views: 4,075
Posted By Flickerstreak
SavedVariables in a nutshell: When you log in,...

SavedVariables in a nutshell:


When you log in, a sequence of things happen:

(1) AddOn code is parsed and executed for each addon
(2) "ADDON_LOADED" event is sent to each addon
(3) Saved variables...
Forum: Lua/XML Help 12-12-06, 12:55 PM
Replies: 3
Views: 3,780
Posted By Flickerstreak
Aha, it seems there is an event generated for...

Aha, it seems there is an event generated for each chat message. This will probably be easier and more efficient than just hooking ChatFrame:AddMessage().

See...
Forum: AddOn Help/Support 12-11-06, 06:16 PM
Replies: 2
Views: 2,887
Posted By Flickerstreak
There's a threshold where you can adjust the...

There's a threshold where you can adjust the minimum amount of healing you want to see - anything that heals less than this doesn't show. It's not a perfect solution to what you want, but could be a...
Forum: AddOn Help/Support 12-11-06, 06:14 PM
Replies: 4
Views: 3,392
Posted By Flickerstreak
Looks like it was made with Discord Unit frames,...

Looks like it was made with Discord Unit frames, which does not work with 2.0. In fact it's being completely scrapped, to be replaced by Discord UI Builder, which probably won't be available until...
Forum: AddOn Search/Requests 12-11-06, 05:34 PM
Replies: 4
Views: 3,996
Posted By Flickerstreak
vBagnon is another similar such mod. You can find...

vBagnon is another similar such mod. You can find it in the download section here at wowinterface.
Forum: AddOn Search/Requests 12-11-06, 05:33 PM
Replies: 1
Views: 2,712
Posted By Flickerstreak
CT_UnitFrames can do this (though it does it in...

CT_UnitFrames can do this (though it does it in addition to, rather than replacing, the bar).

It may or may not be overkill for your needs, or you might like the other features it offers.

see...
Forum: Lua/XML Help 12-11-06, 05:30 PM
Replies: 3
Views: 3,780
Posted By Flickerstreak
There doesn't appear to be a documented event....

There doesn't appear to be a documented event. Instead, you could hook the chat frame add messages command and filter for "You have been outbid on X" (and the localized versions, if you want to go...
Forum: Lua/XML Help 12-11-06, 05:18 PM
Replies: 1
Views: 3,353
Posted By Flickerstreak
CastSpellByName() or anything like it is no...

CastSpellByName() or anything like it is no longer available to macros, so you'll have to use /castsequence. It would be really nice if you could nest macro calls from within /castsequence (e.g....
Forum: Lua/XML Help 12-11-06, 04:55 PM
Replies: 0
Views: 2,507
Posted By Flickerstreak
Multiple paged action bars?

So, I've read Mairelon's basic state header introduction, here (http://forums.worldofwarcraft.com/thread.html?topicId=50956831&sid=1). And I have a question that someone more knowledgeable than I...
Showing results 1 to 19 of 19