Tagged Questions

World of Warcraft is an MMO from Blizzard Enterainment

learn more… | top users | synonyms

10
votes
4answers
1k 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 experience ...
7
votes
7answers
4k views

Apache HttpClient on Android producing CertPathValidatorException (IssuerName != SubjectName)

I'm developing an Android application for accessing some battle.net (https://eu.battle.net) account data (for World of Warcraft) and I'm using the org.apache.http.client.HttpClient to do so. This is ...
5
votes
3answers
3k views

wowarmory.com API help

I'm developing a simple application that fetches some data from wowarmory.com. What I need to do is fetch reputations for a character. I know where's the api located: ...
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"); ...
4
votes
2answers
826 views

WOW Addon Development / Events

Not sure if this is an appropriate programming question or not; but here goes.... I've written a very simple add-on that displays text/plays a sound when certain spells become usable (Overpower / ...
2
votes
1answer
70 views

New Lua user looking for some answers about WoW and luaxml

I'm trying to use the LuaXml module in my world of warcraft addon. Every time I test the addon I get an error that I am calling a nil value with require(). I suspect that this is because the thing I ...
2
votes
1answer
162 views

How does WoW handle the graphics of armor swapping?

I've been trying to figure this out for .. forever and I while i've gotten my head around a good deal of it .. there are a few things I just can't seem to grasp. First, do they merge textures ...
2
votes
4answers
664 views

Where is Blizzards official World of Warcraft API?

I want to know if I can access World of Warcraft in an API. My requirements are very precise: MUST be official blizzard API MUST be accessible out-of-game.
2
votes
1answer
261 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, ...
1
vote
0answers
67 views

WoW Lua - why won't this frame print out the string? [closed]

The following code should be creating a frame and outputting "helloooo" local f = CreateFrame("Frame",nil,UIParent) f:SetFrameStrata("BACKGROUND") f:print('hellooooo') f:Show() This is in World of ...
1
vote
4answers
41 views

HTML Data Scraping (I think)

I am currently doing some work for a client which happens to be a video game group for the game World of Warcraft. They want to show their current rating on their website. The ratings are shown ...
1
vote
0answers
106 views

battle.net wow armory PHP API Accent in character names

API I am using http://sourceforge.net/p/wowarmoryapi/home/Home/ How do I handle Accented characters in a character name. I tried urlencode() it didn't help. This is my specific example... ( Alt 0232 ...
1
vote
1answer
61 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
1answer
315 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 ...
1
vote
3answers
647 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
56 views

Lua - I have created a frame in Lua but am stumped on how to insert text into it?

local MyAddon = CreateFrame("frame","MyAddonFrame") MyAddon:SetBackdrop({ bgFile="Interface\\DialogFrame\\UI-DialogBox-Background", edgeFile="Interface\\DialogFrame\\UI-DialogBox-Border", ...
0
votes
1answer
120 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
165 views

World of Warcraft (Online Game) Server Development [closed]

I want to develope a server for World Of Warcraft. Where can i find a reference for this? I got Mangos source code already.
0
votes
1answer
307 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
1answer
1k views

How to read xml-page source from WebView

I'm opening an xml-page in the WebView and I'm trying to read its xml-source (i.e. the xml that hasn't been "translated" by the browser), but I'm always getting the html source. I've tried this way, ...
0
votes
1answer
277 views

How to get item's detail info(like attack power, agility..) from WOWARMORY?

I already know that parse the wowarmoy's xml to get the data. But there are some data that I can't find where to get. Like this url "http://www.wowarmory.com/item-info.xml?i=40155". <itemInfo> ...
0
votes
3answers
866 views

WebClient security error when accessing the world of warcraft armoury

I am trying to piece together a solution to a problem. Basically I am using Silverlight 4 with C# 4.0 to access the world of warcraft armoury. If anyone has done this - please oh please provide the ...
0
votes
1answer
769 views

Asynchronous Silverlight 4 call to the World of Warcraft armoury streaming XML in C#

I have been stuck on this all weekend and failed miserably! Please help me to claw back my sanity!! Your challenge For my first Silverlight application I thought it would be fun to use the World of ...
-2
votes
1answer
70 views

Check if mining World of Warcraft

How would I check if the player is mining in World of Warcraft and then cast a mount once mining is complete?