Showing results 1 to 25 of 317
Search took 0.01 seconds.
Search: Posts Made By: Ailae
Forum: Lua/XML Help 11-10-19, 03:04 AM
Replies: 2
Views: 2,833
Posted By Ailae
You're defining a variable table at row 8 in your...

You're defining a variable table at row 8 in your code, overwriting the default table implementation.

table.insert({},1) -- works
table = {}
table.insert({},1) -- nil error
Forum: Lua/XML Help 09-14-13, 09:27 AM
Replies: 6
Views: 5,100
Posted By Ailae
Well, of course it's possible to use more than...

Well, of course it's possible to use more than one event, and maybe that's the way to go after all. I was just curious if I was missing any key events, that's all.

Thank you all for your...
Forum: Lua/XML Help 09-13-13, 11:14 AM
Replies: 6
Views: 5,100
Posted By Ailae
Yes, I've tried both /eventtrace and logging to...

Yes, I've tried both /eventtrace and logging to file, but I can't find any reference to it getting extended at all.



I also track spell casts by me on other people, even if they're not in my party,...
Forum: Lua/XML Help 09-12-13, 01:38 PM
Replies: 6
Views: 5,100
Posted By Ailae
Glyph of Inquisition missing from combat log

I'm trying to add support for the new Inquisition glyph that extends the duration of the Inquisition buff by 30 seconds each time you land a killing blow. The problem is that my addon is combat log...
Forum: General Authoring Discussion 04-13-13, 01:04 PM
Replies: 21
Views: 14,710
Posted By Ailae
I suppose that should be tagged as HARDWARE then...

I suppose that should be tagged as HARDWARE then rather than PROTECTED, no?

When I said protected I was thinking about stuff like CastSpellByID etc. Mainly just the ones with a protected-banner on...
Forum: General Authoring Discussion 04-13-13, 12:48 PM
Replies: 21
Views: 14,710
Posted By Ailae
Looks pretty sweet! Although I don't see the...

Looks pretty sweet!

Although I don't see the point in adding the PROTECTED functions, since they are unusable by definition.
Forum: Lua/XML Help 04-06-13, 01:57 PM
Replies: 41
Views: 42,733
Posted By Ailae
Yeah, I too use them just like that. I find it...

Yeah, I too use them just like that. I find it much easier then mucking about with XML-files. :)

I'm fairly sure you don't even need to use XML for secure stuff either.
Forum: Lua/XML Help 04-06-13, 09:48 AM
Replies: 19
Views: 10,340
Posted By Ailae
I guess you could, but why would you? You're...

I guess you could, but why would you?

You're creating a function just to call another function that does all the stuff (I presume). As long as your PVPSound table is local, the...
Forum: Lua/XML Help 04-06-13, 05:50 AM
Replies: 41
Views: 42,733
Posted By Ailae
Couldn't you create a function that creates the...

Couldn't you create a function that creates the frame and then call on that function every time you create such a frame?

-- Creates an ordinary frame, just more awesome
function...
Forum: News 08-16-12, 06:13 PM
Replies: 27
Views: 50,700
Posted By Ailae
Congratulations! And thanks for all the hard...

Congratulations! And thanks for all the hard work. I haven't been here 10 years (yet!), but I've sure enjoyed it greatly this far.
Forum: UI Screenshots, Feedback and Design Discussion 05-13-12, 12:01 PM
Replies: 7
Views: 11,318
Posted By Ailae
Images has to have sizes that are a power of 2,...

Images has to have sizes that are a power of 2, eg. 2, 4, 16, 32, 64, 128, 256, 512, 1024 pixels.

Chances are those 250 px of emptiness is padding so the image will fit that critera.
Forum: Lua/XML Help 02-08-12, 02:38 PM
Replies: 1
Views: 2,594
Posted By Ailae
Check here: http://www.lua.org/pil/22.1.html %I...

Check here: http://www.lua.org/pil/22.1.html

%I is hours in 12 h format, while %H is 24 h.
Forum: Lua/XML Help 01-24-12, 03:37 PM
Replies: 4
Views: 3,773
Posted By Ailae
Well, what's the error then? Chances are you're...

Well, what's the error then?

Chances are you're not getting any values or invalid values (strings when you expect numbers) returned back from your functions.
Forum: Wish List 11-27-11, 02:22 PM
Replies: 8
Views: 22,501
Posted By Ailae
The post is from 2008, so is this even a problem...

The post is from 2008, so is this even a problem now? The cache is wiped between sessions now. I've queried for hundreds of items in quick succession, without being disconnected.

Granted those were...
Forum: Lua/XML Help 11-17-11, 04:32 PM
Replies: 4
Views: 4,025
Posted By Ailae
Wild guess, but wouldn't the parent rather be...

Wild guess, but wouldn't the parent rather be TransmogrifyModelFrame?

Thus, the texture would be TransmogrifyModelFrameMarbleBg.
Forum: Lua/XML Help 09-19-11, 11:55 AM
Replies: 13
Views: 17,594
Posted By Ailae
Only EditBoxes have an...

Only EditBoxes have an OnEscapePressed-method.

If you want to hide your frame with ESC you have to name it (in the global namespace) and then insert into the UISpecialFrames-table.
Forum: General Authoring Discussion 09-05-11, 03:58 PM
Replies: 5
Views: 5,337
Posted By Ailae
Managed to somewhat work around it by checking if...

Managed to somewhat work around it by checking if I have something stored for that presence when I receive/send a whisper. If not, save it. And then update whenever someone logs on. Works well enough.
Forum: General Authoring Discussion 09-04-11, 11:53 AM
Replies: 5
Views: 5,337
Posted By Ailae
I see, that would "explain" things at...

I see, that would "explain" things at least.

Suppose I could register for PLAYER_ENTERING_WORLD and do that once and hope that stuff are ready the next the player zones. :P
Forum: General Authoring Discussion 09-04-11, 10:30 AM
Replies: 5
Views: 5,337
Posted By Ailae
When is Battle.net information available?

Does anyone when in the UI loading order information requested via Battle.net is available?

I have an addon that colors name by class they're currently playing and every once in a while (I think...
Forum: Gameplay 08-21-11, 03:24 PM
Replies: 10
Views: 22,401
Posted By Ailae
Thank you for your constructive input four months...

Thank you for your constructive input four months after the fact. :p
Forum: Lua/XML Help 08-20-11, 01:29 PM
Replies: 10
Views: 6,229
Posted By Ailae
A quick lock at the code doesn't reveal anything...

A quick lock at the code doesn't reveal anything out of the ordinary. I took the liberty to download the released version of your addon and noticed that you use ExecuteSoundTable as your...
Forum: Lua/XML Help 08-20-11, 12:06 PM
Replies: 10
Views: 6,229
Posted By Ailae
You've made sure the variable is initialized...

You've made sure the variable is initialized before the event-handler?

I guess it would help if you posted your code in its entirety, via pastebin.com or similar.
Forum: AddOn Help/Support 06-12-11, 12:35 PM
Replies: 1
Views: 4,146
Posted By Ailae
I believe the option is removed since it doesn't...

I believe the option is removed since it doesn't work anyway. Clicking it would yield an error saying that an interface action has been blocked. This is a issue for all unitframes addons I'm afraid,...
Forum: Lua/XML Help 06-03-11, 01:05 PM
Replies: 9
Views: 6,368
Posted By Ailae
Silly question perhaps, but when declaring it via...

Silly question perhaps, but when declaring it via xml does it have to literally be elapsed for it to work?

And are there any errors in FrameXML.log?
Forum: AddOn Search/Requests 05-30-11, 03:19 AM
Replies: 3
Views: 3,696
Posted By Ailae
Try...

Try Bing.

http://www.wowinterface.com/downloads/info13797-Bing.html
Showing results 1 to 25 of 317