Showing results 1 to 25 of 188
Search took 0.01 seconds.
Search: Posts Made By: Waverian
Forum: Lua/XML Help 11-29-10, 06:58 AM
Replies: 9
Views: 6,220
Posted By Waverian
Why don't you just use slash command handler for...

Why don't you just use slash command handler for /tdps? The SlashCmdList table is global.

SlashCmdList["<tdps index name>"]("<tdps args>")
Forum: oUF (Otravi Unit Frames) 11-26-10, 04:02 AM
Replies: 4
Views: 4,465
Posted By Waverian
Just for future reference it is possible to add...

Just for future reference it is possible to add textures to a fontstring.

http://www.wowpedia.org/UI_escape_sequences#Textures

For example:...
Forum: oUF (Otravi Unit Frames) 11-26-10, 03:54 AM
Replies: 11
Views: 12,617
Posted By Waverian
Are you just trying to make a druid mana bar?...

Are you just trying to make a druid mana bar? Look at the code posted in this addon's description:

http://www.wowinterface.com/downloads/info8961-oUFDruidMana.html

If you want it to completely...
Forum: General WoW Chat 07-27-10, 06:21 PM
Replies: 179
Views: 64,871
Posted By Waverian
None of these are even examples at all, let alone...

None of these are even examples at all, let alone "concrete examples of ... risk ... of physical harm". They're you just saying "Well, these groups could be targeted."

You also have absolutely no...
Forum: General Authoring Discussion 07-26-10, 06:10 AM
Replies: 1
Views: 3,135
Posted By Waverian
Ones that use textures from the client. ...

Ones that use textures from the client.


Consistency in design between different addons is one of the most important features of GUI implementation because it relates to intuitive use. We have a...
Forum: oUF (Otravi Unit Frames) 07-15-10, 08:52 PM
Replies: 1
Views: 2,971
Posted By Waverian
Header visibility conditionals: arena?

Is there a custom visibility conditional to show party frames in a party or 5 main raid (i.e. arena), but not in a raid otherwise? I don't see anything that applies in the predefined ones nor can I...
Forum: General Authoring Discussion 07-14-10, 01:18 PM
Replies: 6
Views: 5,513
Posted By Waverian
If you write readable and maintainable code then...

If you write readable and maintainable code then you won't have to rewrite it entirely because of potential API changes.
Forum: AddOn Help/Support 07-13-10, 11:38 AM
Replies: 1
Views: 3,063
Posted By Waverian
Here's some code I'm using for the instance size...

Here's some code I'm using for the instance size / difficulty tag on my minimap (mostly ripped from the FrameXML for the minimap difficulty icon anyway)

local UpdateDifficultyTag = function()
local...
Forum: oUF (Otravi Unit Frames) 07-13-10, 07:10 AM
Replies: 9
Views: 7,180
Posted By Waverian
You should likely be using a CustomFilter rather...

You should likely be using a CustomFilter rather than PostUpdateIcon. Check oUF\elements\auras for the arguments.
Forum: oUF (Otravi Unit Frames) 07-11-10, 11:38 AM
Replies: 12
Views: 5,897
Posted By Waverian
If you want to mimic the default value for...

If you want to mimic the default value for accurate energy updates use .1
Forum: General Authoring Discussion 07-10-10, 07:02 AM
Replies: 4
Views: 9,770
Posted By Waverian
SetCVar("var", value)

SetCVar("var", value)
Forum: AddOn Help/Support 07-07-10, 08:02 AM
Replies: 5
Views: 4,534
Posted By Waverian
I can't imagine boss mod alerts ever drawing too...

I can't imagine boss mod alerts ever drawing too much attention; Their role is pretty much to draw as much attention as possible. You just need to configure them extensively to filter our unnecessary...
Forum: Lua/XML Help 07-02-10, 08:22 AM
Replies: 17
Views: 10,791
Posted By Waverian
It only hides the textures. The editbox itself is...

It only hides the textures. The editbox itself is still always shown.
Forum: Lua/XML Help 07-01-10, 11:26 PM
Replies: 17
Views: 10,791
Posted By Waverian
Autocomplete for recipient names? My code...

Autocomplete for recipient names? My code shouldn't change that at all, it still works for me.

Also keep in mind that code doesn't fully replicate classic style, which I realized afterwards. The...
Forum: Lua/XML Help 06-29-10, 01:42 AM
Replies: 17
Views: 10,791
Posted By Waverian
for i = 1, NUM_CHAT_WINDOWS do local eb =...

for i = 1, NUM_CHAT_WINDOWS do
local eb = _G['ChatFrame'..i..'EditBox']
eb:Hide()
eb:HookScript('OnEnterPressed', function(s) s:Hide() end)
end
Forum: AddOn Search/Requests 06-27-10, 05:54 AM
Replies: 7
Views: 11,257
Posted By Waverian
http://www.youtube.com/watch?v=_6HYzRP8IvI#t=5m26s...

http://www.youtube.com/watch?v=_6HYzRP8IvI#t=5m26s

They most definitely select their target and position before they land. I've also personally experienced this - We stand in a pile before they...
Forum: AddOn Search/Requests 06-25-10, 07:39 PM
Replies: 7
Views: 11,257
Posted By Waverian
The valkyr pick their target before they land,...

The valkyr pick their target before they land, and they will land at the position their target was when they picked it. If they select you, you move 10 yards away, then they swoop down they'll just...
Forum: Site help, bugs, suggestions/questions 06-20-10, 12:36 PM
Replies: 5
Views: 2,592
Posted By Waverian
All executables hosted on wowinterface are...

All executables hosted on wowinterface are checked extensively before any user can even try to download them. Unless the database has been tampered with to alter the file after it was...
Forum: Lua/XML Help 06-18-10, 10:17 PM
Replies: 1
Views: 4,388
Posted By Waverian
% is used to precede a formatting token. For...

% is used to precede a formatting token. For example %02x in your string is a single token that formats an integer value to hex. If you want your formatted string to have a % sign in the string...
Forum: Lua/XML Help 06-13-10, 10:30 AM
Replies: 6
Views: 5,594
Posted By Waverian
Is your combat log working? There is an...

Is your combat log working? There is an occasional UI bug that prevents the client from receiving combat log data. It usually happens after changing zone to a new area (loading...
Forum: Lua/XML Help 06-12-10, 03:25 PM
Replies: 8
Views: 5,856
Posted By Waverian
It won't. The difference in execution time of...

It won't. The difference in execution time of local vs global functions is trivial. The difference between them for me, over a million iterations, is .077 second. If a user is running at 60 FPS with...
Forum: General Authoring Discussion 06-11-10, 01:24 PM
Replies: 3
Views: 5,555
Posted By Waverian
I don't see any efficiency problems. You only...

I don't see any efficiency problems. You only need to scan when the faction list changes otherwise you just use a cache. In most play sessions this is one iteration of the faction list and a simple...
Forum: Lua/XML Help 06-11-10, 07:02 AM
Replies: 2
Views: 3,740
Posted By Waverian
This could get expensive depending on how often...

This could get expensive depending on how often the table values are being added & removed. While it's not likely that you'll generate enough tables to have an effect by themselves, if the additional...
Forum: Lua/XML Help 06-11-10, 06:34 AM
Replies: 3
Views: 3,188
Posted By Waverian
You can't reliably sort a hash table because the...

You can't reliably sort a hash table because the returns you receive when iterating it aren't necessarily going to be in sorted order. Use an array instead, or add an additional data...
Forum: AddOn Search/Requests 06-07-10, 04:20 AM
Replies: 3
Views: 3,992
Posted By Waverian
I'm not sure what more you could want that a boss...

I'm not sure what more you could want that a boss mod doesn't already give you. They already have flash & shake, a sound cue, and a text alert for the target.
Showing results 1 to 25 of 188