world-of-warcraft

World of Warcraft image processing

狂风中的少年 提交于 2020-01-03 05:14:15
问题 As I´ve looked for a way to create an addon, which checks the WoW-PvP-Queue-Status, for creating a REST service, I was told that it`s not possible to have a real-time connection between an addon and a REST service. So I was thinking about another way to solve my problem and came to the point, where I thought about analyzing the WoW-Window and searching for a visual pattern to accomplish for what I´m looking for. My program should check and tell me, whenever a user of the program is queuing

Where is Blizzards official World of Warcraft API?

*爱你&永不变心* 提交于 2019-12-19 15:00:35
问题 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: No. They do not allow any "outside" software to interact with the game's executable environment. Google "wow glider lawsuit" to find out more. 回答2: Blizzard has now released a Community API that allows you to fetch information directly from the Blizzard Services; such as Realm Status, Player and Auction data. https://dev.battle.net/io

World of Warcraft Lua - Changing frame:SetAttribute()

荒凉一梦 提交于 2019-12-11 06:32:34
问题 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" for my mage. I would like it to change what spell it casts based on what is optimal at any given time. It doesn't cast the spell automatically, it just presents the next best option for the user. Here is my code so far: print "Interface Overhaul : LOADED" heatingUpIsActive = false print

Using Lua to detect a combination of keyboard key presses

╄→гoц情女王★ 提交于 2019-12-11 04:11:33
问题 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 protected WoW API functions now but the following are still able to be used by addons: IsAltKeyDown() IsControlKeyDown() IsShiftKeyDown() What I'd like to be able to do is perform a function based on any one of those keys down or a combination there of. This is what I've got working: function

How do you make a combo of two emotes in lua in World of Warcraft work?

穿精又带淫゛_ 提交于 2019-12-09 17:35:00
问题 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"); DoEmote("sit"); DoEmote("dance"); DoEmote("beckon"); end I am using Wow Addon Studio to make a fart application on Wow. I used this function, and only the sit motion showed, and beckon and moon only showed on the chat window. The dance emote didn't show up anywhere. 回答1: Blizzard has explicitly prohibited anything

Where is Blizzards official World of Warcraft API?

六月ゝ 毕业季﹏ 提交于 2019-12-01 15:57:45
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. No. They do not allow any "outside" software to interact with the game's executable environment. Google "wow glider lawsuit" to find out more. Blizzard has now released a Community API that allows you to fetch information directly from the Blizzard Services; such as Realm Status, Player and Auction data. https://dev.battle.net/io-docs I don't think that this was what the original question was intended for, but I think this can help other

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

萝らか妹 提交于 2019-11-26 06:19:11
问题 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 the code I\'m using: public static final String USER_AGENT = \"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 (.NET CLR 3.5.30729)\"; public static class MyHttpClient extends DefaultHttpClient { final Context context; public MyHttpClient(Context context)