Showing results 1 to 25 of 131
Search took 0.00 seconds.
Search: Posts Made By: Elkano
Forum: Lua/XML Help 03-17-15, 08:49 AM
Replies: 7
Views: 5,574
Posted By Elkano
if it's really caused by replacing that global...

if it's really caused by replacing that global string, you could also try something that is iirc not part of standard Lua but included in WoW: changing the arguments' order

since the original string...
Forum: Lua/XML Help 03-11-15, 10:57 AM
Replies: 10
Views: 7,098
Posted By Elkano
This part of ActionBarControler.lua should be...

This part of ActionBarControler.lua should be what handles switching the bar in the default code:
function...
Forum: Lua/XML Help 03-11-15, 08:27 AM
Replies: 10
Views: 7,098
Posted By Elkano
Judging from this code in ActionButton.lua ...

Judging from this code in ActionButton.lua
function ActionButton_CalculateAction (self, button)
if ( not button ) then
button = SecureButton_GetEffectiveButton(self);
end
if ( self:GetID()...
Forum: General WoW Chat 03-02-15, 10:16 AM
Replies: 5
Views: 8,522
Posted By Elkano
And iirc, Pandas go to 300%.

And iirc, Pandas go to 300%.
Forum: Lua/XML Help 03-02-15, 05:28 AM
Replies: 4
Views: 1,963
Posted By Elkano
The following three are equivalent: -...

The following three are equivalent:
- self.event(self)
- self:event()
- self["event"](self)

if however event is a variable (in contrast to the string "event"), your only way of calling is
-...
Forum: Lua/XML Help 03-02-15, 04:44 AM
Replies: 4
Views: 1,963
Posted By Elkano
Your call self[event](...) is the culprit. It...

Your call self[event](...) is the culprit. It resullts in the call self.CHAT_MSG_GUILD(...) instead of self:CHAT_MSG_GUILD(...). The latter is equivalent to self.CHAT_MSG_GUILD(self, ...).

So simply...
Forum: Lua/XML Help 02-25-15, 01:57 PM
Replies: 10
Views: 5,903
Posted By Elkano
Does it really work or just not error? There's s...

Does it really work or just not error? There's s slight difference between the two ;)

also, if the unit type is "Pet", the GUID will be "Pet-0-...", so it's still the longest sequence of non-dash...
Forum: Lua/XML Help 02-25-15, 10:52 AM
Replies: 10
Views: 5,903
Posted By Elkano
Never did much work with GUIDs myself, so I don't...

Never did much work with GUIDs myself, so I don't know which is used for what, sorry.

But regarding getting the first part of the string, your syntax for :sub is wrong (e.g. starts at 5th char and...
Forum: Lua/XML Help 02-25-15, 08:37 AM
Replies: 10
Views: 5,903
Posted By Elkano
just a quick reply: 1. it's Lua, not LUA ;) 2. "a...

just a quick reply:
1. it's Lua, not LUA ;)
2. "a = b == c" is the same as "a = (b == c)", so a = true if b equals c
3. regarding your error:

It's caused by this statement: BB =...
Forum: AddOn Help/Support 01-30-15, 03:09 AM
Replies: 8
Views: 4,096
Posted By Elkano
There are currently at least two types of...

There are currently at least two types of dropdown menus around for selecting textures:
- a simple menu that will only show the name
- an advanced menu provided by AceGUI-3.0-SharedMediaWidgets that...
Forum: General Authoring Discussion 01-30-15, 03:02 AM
Replies: 6
Views: 5,503
Posted By Elkano
On a side note, according to the patch notes, 6.1...

On a side note, according to the patch notes, 6.1 should fix that vendor.
Forum: AddOn Help/Support 01-29-15, 03:47 PM
Replies: 8
Views: 4,096
Posted By Elkano
My babies...

My babies http://abload.de/img/e0n8upytkti.gif

Sadly, stuff like ERROR #132 is hard to debug.
Howerver, SharedMedia/LibSharedMedia-3.0 shouldn't be the source (unless for some reasons, one of the...
Forum: Chit-Chat 11-05-13, 12:45 PM
Replies: 28
Views: 28,367
Posted By Elkano
Done as well......

Done as well... http://abload.de/img/elk_music9we2.gif

Some of the questions don't lead to a general binary answer though, e.g. if you'd pick a job as an addon developer. Would most likely depend a...
Forum: General Authoring Discussion 10-01-12, 12:55 AM
Replies: 5
Views: 5,491
Posted By Elkano
it's easy: frame:EnableMouse(false)

it's easy:
frame:EnableMouse(false)
Forum: MoP Beta archived threads 09-06-12, 12:44 AM
Replies: 15
Views: 31,882
Posted By Elkano
should be 2002:...

should be 2002: http://wowprogramming.com/utils/xmlbrowser/test/FrameXML/FontStyleOverrides.xml
Forum: AddOn Search/Requests 09-02-12, 02:25 AM
Replies: 7
Views: 5,371
Posted By Elkano
maybe there is something wrong with how the addon...

maybe there is something wrong with how the addon in question registers the path which worked pre 5.x but is now no longer accepted as valid path by the client? LSM just stores the string so you...
Forum: General Authoring Discussion 08-15-12, 03:05 AM
Replies: 187
Views: 138,084
Posted By Elkano
I got a mail from them, too, but with a slightly...

I got a mail from them, too, but with a slightly different text than the one Saiket posted:


So they turned the opt-in into an opt-out...
Forum: News 10-14-10, 02:58 AM
Replies: 20
Views: 52,503
Posted By Elkano
Talking about that, is there any working mpq...

Talking about that, is there any working mpq browser for 4.x, yet? So that one could extract single art files without having to load the whole package.
Forum: Site help, bugs, suggestions/questions 10-14-08, 02:09 AM
Replies: 0
Views: 620
Posted By Elkano
[bug] displayed comment date behaving strange

In the "my addons" comments list, I've got a comment that whose date was shown as "Today 12:06 AM" yesterday, "Yesterday 12:06 AM" today. That's fine so far. But on the project page, the comment was...
Forum: News 07-28-08, 12:54 AM
Replies: 256
Views: 130,019
Posted By Elkano
I'm pretty sure there will since we did it for BC...

I'm pretty sure there will since we did it for BC beta, too :)
Forum: News 12-03-07, 01:55 AM
Replies: 56
Views: 37,329
Posted By Elkano
It's sad to see people doing such stuff knowing...

It's sad to see people doing such stuff knowing that there is hardly a way to stop them. :/
But good to see that it's taken care of. As tekkub said on wowace by targeting the addon developers they've...
Forum: AddOn Help/Support 11-22-07, 02:02 AM
Replies: 2
Views: 5,655
Posted By Elkano
as you listed: Quartz - Casting bars so check...

as you listed:
Quartz - Casting bars

so check it's options, eg try /quartz
Forum: AddOn Help/Support 11-08-07, 01:45 AM
Replies: 10
Views: 6,803
Posted By Elkano
...which is fixed in a branched version:...

...which is fixed in a branched version: http://svn.wowace.com/wowace/branches/ElkBuffBars/2.3/
Forum: AddOn Help/Support 11-05-07, 02:28 AM
Replies: 2
Views: 4,479
Posted By Elkano
Filtering out timeless de/buffs could work too...

Filtering out timeless de/buffs could work too since for those you applied there should be time information available but not for those from other people.
Forum: AddOn Search/Requests 08-30-07, 10:23 AM
Replies: 22
Views: 10,014
Posted By Elkano
maybe I'll add a spark sometimes, shouldn't be...

maybe I'll add a spark sometimes, shouldn't be that hard by the way EBB works now...
Showing results 1 to 25 of 131