0
votes
1answer
68 views

World of Warcraft Lua - Changing frame:SetAttribute()

I'm working on an addon for World of Warcraft that completely overhauls the interface to adapt to my play style. In this addon, I would like to have a large button that acts as a "main dps rotation" ...
0
votes
1answer
50 views

World of Warcraft Lua - If statement flow

I'm trying to create an addon for World of Warcraft. I have created a function that checks whether a buff has been added to the current player. Button:RegisterEvent("UNIT_AURA"); local function ...
1
vote
2answers
89 views

Using Lua to detect a combination of keyboard key presses

I'm in the middle of writing a World of Warcraft addon and I want the addon to be able to perform certain functions based on a key press or a combination of key presses. Most of the key states are ...
3
votes
1answer
175 views

Lua, WOW and “…”

Getting my feet wet in Lua and writing some simple addons for World of Warcraft. Primarily looking through other addons, inspecting the code, etc. I'm seeing one thing that has me confused. I know ...
2
votes
4answers
461 views

Primary source for WoW lua API?

I've been looking for first-hand information on the World of Warcraft addon API. There are a couple wikis that are pretty good, but their reference links only point internally. Surely there is some ...
2
votes
2answers
678 views

Finding a number in a string lua

A simple question. When a roll has been done it shows as: "Need Roll - 150 for [SomeItem] by [SomePerson] + role bonus" I wish for some way to isolate the number 150. However there is no such thing ...
2
votes
2answers
2k 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 ...
-1
votes
1answer
2k 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 ...
1
vote
1answer
372 views

White frame around images in WoW Addon

I am having some trouble with my World of Warcraft addon. Whenever I display my TGA files in the addon, there is a thin white frame around them. The same happens when I convert them to BLPs. When I ...
2
votes
1answer
343 views

Issue with code using Interface Options Addon in World of Warcraft

I am writing a UI to a pre-existing addon. Or, more specifically, adding configuration options and trying to take advantage of the Interface Options Addons (IOA) panel. I've been referencing wowwiki, ...
11
votes
4answers
2k views

Developing addins for World of Warcraft - Getting started?

As a long time World of Warcraft player, and a passionate developer I have decided that I would like to combine the two and set about developing some addins. Not only to improve my gameplay ...