World of Warcraft is an MMO from Blizzard Enterainment
0
votes
0answers
61 views
PHP WoW Battle.net Armory API library: Pulling data from cache in db
I am using this library: https://sourceforge.net/p/wowarmoryapi/home/Home/ which seriously lacks documentation. The forums there are mostly unanswered.
I've been able to successfully pull data from ...
0
votes
2answers
126 views
Convert Lua data to JSON
This EPGP World of Warcraft addon outputs an epgp.lua database file.
I wrote a plugin to convert the Lua data into a JSON object for display on a guild website. It was working in older versions of ...
0
votes
1answer
65 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
47 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 ...
1
vote
1answer
147 views
Using a custom component
I'm making an application that has to do with World of Warcraft.
To keep it short; You can pick talents that give you certain skills, in my application I added a talent calculator. Here you can pick ...
0
votes
1answer
175 views
AutoHotkey + World of Wacraft: repeated jumping
I'm actually playing with AutoHotkey: I read this tutorial and I created my first script.
It should make my character jump by pressing spacebar every 1 seconds:
#NoEnv ; Recommended for performance ...
1
vote
3answers
507 views
Finding it difficult to process JSON in delphi
I'm currently working on an application that will get data of your character from the WoW armory.
Example character: My WoW Character(link)
I will get all the info I want by calling the API provided ...
0
votes
1answer
126 views
Is there any way to use socket in a World Of Warcraft Lua script?
I've tried to use: require("socket"), but I red on forums about WoW that I can't use the require command. Is there any other way to accomplish this? I'd like to pass data from the Lua thread to a Java ...
3
votes
1answer
174 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 ...
1
vote
1answer
112 views
How to get spell information in items by Blizaard API?
I can get a node "itemSpells" by the item api.
But if i want to get the detail information, how i can get it?
Just like :
"itemSpells": [
{
"spellId": 109848,
"spell":
...
2
votes
4answers
452 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 ...
1
vote
2answers
204 views
World-of-Warcraft Chat Frame Filter Conflict
I have a WoW/LUA script that I am attempting to start, but it seems to conflict with the Stubby addon, which is a part of the Auctioneer addon, I believe. Here is the message I receive:
Error ...
0
votes
2answers
443 views
WoW Java emulator stuck on authentication [closed]
I've been working on a WoW emulator in Java.
I'm stuck though, on the server Logon Proof.
The client just disconnects after sending the server Logon Proof packet (line 207 in Auth.java).
The M values ...
0
votes
0answers
104 views
Making Warcraft 3 TFT Map with world editor [closed]
Okay so I am currently in progress of creating a Warcraft 3 TFT custom map
And I am making a game that you have a "Basic Worker" that can 'Build TOWERS' to attacks creeps.
Spawning right..?
Well I ...
0
votes
2answers
172 views
Compiling SkyFireEMU error, sizeof(void *) is neither
I'm trying to compile SkyFireEMU (https://github.com/ProjectSkyfire/SkyFireEMU) with Visual Studio 2010 (32 BIT) but I get an error (On almost all files of "worldserver"):
fatal error C1189: #error : ...
1
vote
2answers
1k views
PhP convert special letters (á,â etc.) to UTF 8(hex)
I have a problem which i cant seem to find the solution to.
I am trying to pull data from the World of Warcraft armory with the provided tools, which works fine:
<?php
$toon = ...
1
vote
1answer
87 views
How does Glide work?
For those of you who don't know, Glide is a program for World of Warcraft that allows automation of the game by modifying its memory and essentially simulating input. I've seen snippets of code from ...
1
vote
2answers
667 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 ...
0
votes
1answer
565 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", ...
1
vote
0answers
184 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
87 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 ...
-2
votes
1answer
160 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?
2
votes
1answer
163 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 ...
1
vote
1answer
330 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
270 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
...
3
votes
1answer
339 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 ...
0
votes
1answer
276 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 ?
-1
votes
1answer
292 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.
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 ...
5
votes
5answers
3k 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.
1
vote
1answer
2k 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, ...
16
votes
7answers
12k 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 ...
0
votes
5answers
353 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 | ...
3
votes
2answers
1k 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 ...
0
votes
1answer
335 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
1k 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
882 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 ...
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
342 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, ...
4
votes
2answers
1k 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 / ...
0
votes
3answers
128 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
655 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?
5
votes
2answers
4k 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");
...
3
votes
12answers
6k views
Accessing World of Warcraft data from the web
I'm aware of the WoW add-on programming community, but what I can find no documentation on is any API for accessing WoW's databases from the web. I see third-party sites like WoWHeroes.com and Wowhead ...
2
votes
3answers
1k 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 ...
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 ...
