Tagged Questions

5
votes
6answers
1k views

How do you make a combo of two emotes in lua in World of Warcraft work?

How do you make a combo of two emotes in lua in World of Warcraft work? function Button2_OnClick() PlaySoundFile("Interface\\Addons\\Fart\\common_fart[1].wav"); DoEmote("moon"); ...
1
vote
1answer
69 views

Wow addon failing to work with array

I'm trying to create a simple addon for world of warcraft which records my kills. I've already got'n quite far except there is a problem with the writing of a lua array. The code I have so far ...
1
vote
3answers
658 views

What's with PCALL or is Wowwiki wrong?

This is a WoW (World of Warcraft) lua script question. Not many of these get asked here but I have no where to turn and Stackoverflow is the programmer oasis for answers. Question: Wowwiki states ...
0
votes
1answer
129 views

how to log the wow network latency in to a file

I want log the wow network latency in to a file ,like c:/wowlatency.txt now ,I can use some lua stript to log it into wow's chat log file.but I want log it to my own log file .can do this ?
0
votes
1answer
325 views

How do I make a World of Warcraft addon?

I want to create a simple addon that will play sound files when the player kills an enemy player (gets a killing blow). I've looked around on Google but haven't found much in terms of documentation or ...
0
votes
5answers
243 views

What does it mean, in Lua, to assign an undefined identifier to an undeclared variable?

I was perusing an Lua code file, and the very top of the file contains: 1 | TradeSkillFrameReset = TradeSkillFrame_LoadUI; 2 | 3 | TradeSkillFrame_LoadUI = function() 4 | ...
0
votes
2answers
547 views

Problems with multiline EditBox widget in World of Warcraft AddOn

When I try to set the width of a multiline EditBox widget, it flickers for a moment, then gets set. Is there a way to get rid of the flickering? Or, alternatively, is there a workaround?
-1
votes
2answers
1k views

Lua Timer Delay

I'm trying to write a extremely simple addon for WoW. I need to know if it is possible at all to delay a function for 30sec or a minute and then call a different function. I tried to do a hack job ...