Showing results 1 to 25 of 36
Search took 0.00 seconds.
Search: Posts Made By: ZikO
Forum: AddOn Help/Support 08-06-16, 06:04 PM
Replies: 5
Views: 7,075
Posted By ZikO
Thanks very much for the responses. I also...

Thanks very much for the responses. I also appreciate the example code. It will definitely help me to kick off. Thanks


PS. I wasn't sure about Death Strike. I considered that it would be a moving...
Forum: AddOn Help/Support 08-04-16, 01:15 PM
Replies: 5
Views: 7,075
Posted By ZikO
Thanks It's just a thing with a progress bar...

Thanks

It's just a thing with a progress bar which would increase from 0% (Ds is used) to 100% (5 secs passed). 100 % would mean I would potentially benefit from Death Strike in maximal way. Also,...
Forum: AddOn Help/Support 08-04-16, 03:12 AM
Replies: 5
Views: 7,075
Posted By ZikO
Average damage taken within time period

Hello,

I am trying to calculate an average damage taken within last 5 secs.

The reason for that is I have a Blood DK. The new Death Strike (http://www.wowhead.com/spell=49998/death-strike) ability...
Forum: AddOn Help/Support 07-12-16, 09:11 AM
Replies: 1
Views: 2,331
Posted By ZikO
deleted by author

deleted by author
Forum: AddOn Help/Support 07-12-16, 05:03 AM
Replies: 1
Views: 2,331
Posted By ZikO
Weak Auras - help with custom triggers

The topic deleted by athor.
Forum: Lua/XML Help 07-10-16, 05:24 PM
Replies: 6
Views: 6,413
Posted By ZikO
That makes sense. Thanks Seerah :)

That makes sense. Thanks Seerah :)
Forum: Lua/XML Help 07-10-16, 12:48 PM
Replies: 6
Views: 6,413
Posted By ZikO
Hi again, Kenegasi, the function works after a...

Hi again,

Kenegasi, the function works after a couple problems and it now gives me a list of players.

There was an error because I made a typo. If I am given a code like yours, I usually type the...
Forum: Lua/XML Help 07-10-16, 09:57 AM
Replies: 6
Views: 6,413
Posted By ZikO
Hi and thanks for responds. Crap. I did not come...

Hi and thanks for responds.

Crap. I did not come to my mind there would be any difference between LFG and real party -.-. I did tests while joining LFG. I should have mentioned that in the first...
Forum: Lua/XML Help 07-10-16, 07:33 AM
Replies: 6
Views: 6,413
Posted By ZikO
List of players in a party problem.

Hi,
Could anyone help me with my code? I register two events: PLAYER_ENTERING_WORLD and GROUP_ROSTER_UPDATE. Then run functions I have assigned to the events but it doesn't do exactly what I need.

A...
Forum: Lua/XML Help 03-06-09, 04:30 PM
Replies: 15
Views: 6,219
Posted By ZikO
I am just guessing that's all. Anyway, I do not...

I am just guessing that's all.

Anyway, I do not believe three single tables would take much more memory than one table containing all of them. Of course it would be a little more memory taken as...
Forum: Lua/XML Help 03-04-09, 09:43 AM
Replies: 15
Views: 6,219
Posted By ZikO
Thumbs down Honestly I thought LUA could use some kind of...

Honestly I thought LUA could use some kind of efficient implementation like this:
table: <container>
table1: ********** 10 elements
table2: ***** ...
Forum: Lua/XML Help 03-02-09, 07:55 AM
Replies: 6
Views: 4,319
Posted By ZikO
can u see your AddOn in LoadAddon list once...

can u see your AddOn in LoadAddon list once you've logged to the game and clicked on it?

To be honest. I copied your file into LFE folder, made LFE.toc file which looks like below
## Interface:...
Forum: Lua/XML Help 03-02-09, 07:39 AM
Replies: 15
Views: 6,219
Posted By ZikO
That's too bad IMO. Tables in tables etc are...

That's too bad IMO. Tables in tables etc are great structures which help keeping the code tidy. I would like it but unfortunately it takes too much memory, sadly.
Forum: Lua/XML Help 03-01-09, 01:05 PM
Replies: 5
Views: 5,401
Posted By ZikO
thanks for that Akryn, it sounds reasonable. Can...

thanks for that Akryn, it sounds reasonable. Can I ask you one more question? What are protected functions?

Sorry if I ask these questions post by post. This is the way I learn all this stuff...
Forum: Lua/XML Help 03-01-09, 09:37 AM
Replies: 5
Views: 5,401
Posted By ZikO
What are those hardware events and do all...

What are those hardware events and do all protected API functions require hardware events?

Thanks
Forum: Lua/XML Help 03-01-09, 09:29 AM
Replies: 15
Views: 5,280
Posted By ZikO
llocal function DeepMetatable(tbl, deftbl) ...

llocal function DeepMetatable(tbl, deftbl)
for k, v in pairs(deftbl) do
if type(v) == "table" then
tbl[k] = DeepMetatable(tbl[k] or {}, v)
end
end
return...
Forum: Lua/XML Help 02-27-09, 08:56 AM
Replies: 6
Views: 11,292
Posted By ZikO
Hmmm, I'm still confused. I am after the lecture...

Hmmm, I'm still confused. I am after the lecture of Programming in LUA (http://www.lua.org/pil/) where things are described roughly well but this is one I can't get through easily :/

So, is the...
Forum: Lua/XML Help 02-26-09, 07:54 AM
Replies: 6
Views: 11,292
Posted By ZikO
Thanks guys.

Thanks guys.
Forum: Lua/XML Help 02-24-09, 03:13 PM
Replies: 6
Views: 11,292
Posted By ZikO
What does _G mean?

Hi guys.

As you see, I have started coding in lua and I also try to understand cod written by the others. I found something I can't quite understand. One of the codes I found is part of BugSack....
Forum: Lua/XML Help 02-24-09, 05:16 AM
Replies: 4
Views: 3,269
Posted By ZikO
Post I believe WoW using lua as interpreter read all...

I believe WoW using lua as interpreter read all lua files indicated in *.toc file (as well as XML file if it's there too) before any events have been fired. If there are also commands as well as...
Forum: Lua/XML Help 02-24-09, 02:50 AM
Replies: 5
Views: 3,632
Posted By ZikO
I got your point Mera ty vm =) I was reading the...

I got your point Mera ty vm =)

I was reading the tutorial about the scope here (http://lua-users.org/wiki/ScopeTutorial) and I found this line
I think it's what you meant about CPU =)

DreamStorm
I...
Forum: Lua/XML Help 02-23-09, 02:58 PM
Replies: 5
Views: 3,632
Posted By ZikO
Thanks Mera. Hehe My first pure lua AddOn has...

Thanks Mera. Hehe My first pure lua AddOn has been run and it's working perfectly. I have also keep in mind all this stuff about local functions, variables etc.

To be honest, one more question just...
Forum: Lua/XML Help 02-23-09, 01:09 PM
Replies: 15
Views: 5,280
Posted By ZikO
Thanks for answers. Well, you might ask yourself...

Thanks for answers.

Well, you might ask yourself why that silly person use this memory eating solution not anything easier and more efficient. The answer is:
because im beginner and you have just...
Forum: Lua/XML Help 02-23-09, 06:56 AM
Replies: 5
Views: 3,632
Posted By ZikO
AddOn purely coded in lua.

Hi guys

I probably have very uncommon request to you and if you think you would have to put too much effort to help me just skip this threat.

I hate all this stuff with XML but unfortunately I need...
Forum: Lua/XML Help 02-23-09, 06:43 AM
Replies: 15
Views: 5,280
Posted By ZikO
Hi. It's me again Well, I have found the...

Hi. It's me again

Well, I have found the problem, which was besically with wrong definition of the variable BattleCrySv. Since I have defined it as

BattleCrySv = {
Cries = {},
...
Showing results 1 to 25 of 36