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 guides.

Can anyone point me to some up-to-date documentation or some places where I can just find better guides?

link|improve this question
I would ask this on gamedev.stackexchange.com – Neil Knight Mar 20 '11 at 16:26
Addon Studio is pretty cool as well as it gives you a nice IDE to work with: wowwiki.com/AddOn_Studio_2010 – Fuji Mar 20 '11 at 16:37
Also you have to regularly check Blizzard's changelog about the their API, which is the reason why addons stop working after major patches expansions. So you have to update your code to match the new standards and take advantage of the new addon functions Blizzard implements. – zangeff Aug 21 '11 at 13:09
feedback

1 Answer

Getting started: http://www.wowpedia.org/Getting_started_with_writing_addons

API: http://www.wowpedia.org/World_of_Warcraft_API

What you want to do is to add a trigger for the combat log event for a killing blow. Shouldn't be to hard. And then play a sound, using the API for that.

Also, another time, please don't lie

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.