Tagged Questions
The wow tag has no wiki summary.
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");
...
2
votes
4answers
662 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
2answers
351 views
Selecting XML nodes with same name but different attribute inner text in C#
<item>
<title>Aerie Peak</title>
<link>http://www.wow-europe.com/realmstatus/index.html#Aerie Peak</link>
<description>Aerie Peak - Realm Down - Lang ...
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
140 views
Physic engine for sandy 3d
I develop a small game to learn AS and sandy 3D. I want to include a physic engine in my 3D scene. I wanted to use WOW like the sandy tutorial say but the WOW web site is down so it's difficult to ...
1
vote
3answers
644 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
0answers
29 views
How can i make a button target another program that's open, do the enter command, write some things and click enter again instantly?
I'm making a program for my WoW Private Server and i need to code my buttons so they target the open WoW windows, clicks enter (to enter chat) and types some text, then clicks enter again instantly, ...
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
305 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
0answers
274 views
Issue with the x64 installer and Wow6432Node registry node
I have a certain bluetooth installer (x86 and x64), which installs the bluetooth stack on my pc.There were no problems when i used to install the bluetooth stack on Win XP SP3 x86 machine with the x86 ...
0
votes
5answers
237 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
3answers
120 views
how do i get an always changing value from a string c#
I am working on a program that will automatically get your characters stats and whatnot from the wow armory. I already have the html, and i can identify where the string is, but i need to get the ...
0
votes
2answers
531 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 ...