Showing results 1 to 9 of 9
Search took 0.00 seconds.
Search: Posts Made By: Malreth
Forum: General Authoring Discussion 01-19-08, 09:42 AM
Replies: 3
Views: 3,467
Posted By Malreth
But you can recreate the functionality of...

But you can recreate the functionality of inherited frames by creating a factory function. You call it and it returns a new frame with all of the attributes that you desire. Since the function can...
Forum: Chit-Chat 01-04-08, 04:48 PM
Replies: 21
Views: 6,488
Posted By Malreth
I was planning to go farm some signets for Scryer...

I was planning to go farm some signets for Scryer faction by AoE pulling Sunfury Researchers over by Manaforge Coruu a week ago. As I rounded up a whole mess of blood elves, another mage came by and...
Forum: Lua/XML Help 01-01-08, 09:53 AM
Replies: 11
Views: 10,826
Posted By Malreth
Z coordinates are supported in the game engine...

Z coordinates are supported in the game engine everywhere, obviously, just by nature of being a 3D game. They are not, however, exposed to the UI so you can't get at them. We used to but a patch a...
Forum: General Authoring Discussion 11-22-07, 09:12 AM
Replies: 3
Views: 3,131
Posted By Malreth
The wiki is only as good as the people who use it...

The wiki is only as good as the people who use it and it's the only centralized compendium of information that we have about the UI API. If you find something that is incorrect, you should figure it...
Forum: General Authoring Discussion 11-22-07, 09:04 AM
Replies: 1
Views: 2,816
Posted By Malreth
Lua-specific optimization tips can be found...

Lua-specific optimization tips can be found here:

http://lua-users.org/wiki/OptimisationCodingTips
Forum: AddOn Search/Requests 11-22-07, 08:15 AM
Replies: 7
Views: 4,285
Posted By Malreth
I saw this request over on the wowace.com forum...

I saw this request over on the wowace.com forum and I thought about it for a bit. Such an addon should:

On opening the guild vault:
1. Record the current amount of money
2. If there is a previous...
Forum: Lua/XML Help 11-20-07, 11:00 PM
Replies: 2
Views: 4,709
Posted By Malreth
For completeness sake, I'll post the solution I...

For completeness sake, I'll post the solution I worked out...
function append(a, n, b, ...)
if n == 0 then
return a
else
return b, append(a, n-1, ...)
end
end

function curry(f, ...)
Forum: Graphics Help 12-20-06, 12:55 PM
Replies: 8
Views: 11,696
Posted By Malreth
Why use a model for the cooldown animation? It's...

Why use a model for the cooldown animation? It's not an exact replacement so I don't know if it'll be acceptable or not, but since you've gone and done a bit of work to change the artwork to make...
Forum: Released AddOns 07-06-06, 09:31 AM
Replies: 0
Views: 2,720
Posted By Malreth
Ensemble

Ensemble, an addon that automatically accepts group invitations from friends and guild members, is out.

http://www.wowinterface.com/downloads/fileinfo.php?id=5132

*clap* *clap* Let the discussion...
Showing results 1 to 9 of 9