Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » The Dung Heap » The Dung Heap

 
 
LinkBack Thread Tools
Old 02/23/11, 9:19 AM   #25006
Ramides
Glass Joe
 
Dwarf Warrior
 
Gul'dan (EU)
Hello,

I'm not rly sure if you can help me... but I'll try

I want to make an application (c#) to search in the auction house. So I used firebug to look at the login process of battle.net and tryed to reproduce it. But I have a problem ...

That is my Login Function + SendPOSTRequest (not perfect at all but for the beginning ... )
public string Login(string AccountName, string Password)
{
    string URL = "https://eu.battle.net/login/de/login.frag?secureOrigin=true";
    string Post = "accountName=" + AccountName + "&password=" + Password;

    string ServerResponse = SendPOSTRequest(URL, Post);

    if (ServerResponse.IndexOf("success") > 0 && ServerResponse.IndexOf("loginTicket") > 0)
    {
        int Start = ServerResponse.IndexOf("loginTicket")+16;
        ServerResponse = ServerResponse.Substring(Start);

        int End = ServerResponse.IndexOf("\"}")-1;
        ServerResponse = ServerResponse.Substring(0,End);

        LoginKey = ServerResponse;

        return ServerResponse;
    }

    return String.Empty;
}

private string SendPOSTRequest(string URL, string Post)
{
    HttpWebRequest Request = (HttpWebRequest)WebRequest.Create(URL);
    Request.Method = "POST";
    Request.ContentType = "application/x-www-form-urlencoded";
    Request.CookieContainer = new CookieContainer();

    Byte[] byteArray = Encoding.UTF8.GetBytes(Post);
    Request.ContentLength = byteArray.Length;

    Stream DataStream = Request.GetRequestStream();
    DataStream.Write(byteArray, 0, byteArray.Length);
    DataStream.Close();

    HttpWebResponse Response = (HttpWebResponse)Request.GetResponse();
    DataStream = Response.GetResponseStream();
    cookies = Response.Cookies;
    StreamReader reader = new StreamReader(DataStream);
    string ServerResponse = reader.ReadToEnd();
    reader.Close();
    DataStream.Close();
    Response.Close();

    return ServerResponse;
}
I get back a Login-Key in JSON and 4 cookies (JSESSIONID, BA-tassadar, login.key, cl). I save the Login-Key in String and the cookies in a CookieCollection.

Now I want to go further and pull some Auctionhouse data... my code:
public string Test()
{
    if (!LoginOK) return String.Empty;
    string URL = "https://eu.battle.net/wow/de/vault/character/auction/alliance/?ST=" + LoginKey;
            
    string ServerResponse = SendGETRequest(URL);

    return ServerResponse;
}
private string SendGETRequest(string URL)
{
    HttpWebRequest Request = (HttpWebRequest)WebRequest.Create(URL);
    Request.Method = "GET";
    Request.CookieContainer = new CookieContainer();
    Request.CookieContainer.Add(cookies);

    HttpWebResponse Response = (HttpWebResponse)Request.GetResponse();
    Stream DataStream = Response.GetResponseStream();
    cookies = Response.Cookies;
    StreamReader reader = new StreamReader(DataStream);
    string ServerResponse = reader.ReadToEnd();
    reader.Close();
    DataStream.Close();
    Response.Close();

    return ServerResponse;
}
But every time I send this... I get an error 404 at:
HttpWebResponse Response = (HttpWebResponse)Request.GetResponse();
Do you know what's going wrong there?

Thanks a lot for your help!

Ramides

Offline
Old 02/23/11, 9:39 AM   #25007
castorjay
Glass Joe
 
Human Paladin
 
Kil'Jaeden
My question is in regards to the PVP gloves vs the Engineering helm. I currently only have 2pc (Chest/Legs) and the PVP gloves. I also have the Engineering head. Is building 4pc around the PVP gloves as off piece still better or would using the Engineering helm as the off piece and getting T11 gloves be higher DPS?

Offline
Old 02/23/11, 9:55 AM   #25008
ceelion22
Von Kaiser
 
ceelion22's Avatar
 
Tauren Druid
 
Uldaman
My hunter is a BE and I made a little macro to cast Fervor and Arcane Torrent at the same time, giving 65 focus in one button press.

#showtooltip Fervor
/cast Arcane Torrent
/cast Fervor
As long as Arcane Torrent is first (it's not on the GCD) you'll cast them both for a slightly bigger chunk of mana.

Offline
Old 02/23/11, 10:34 AM   #25009
Chubaka999
Glass Joe
 
Chubaka999's Avatar
 
Orc Hunter
 
Taerar (EU)
The Hotfix is live,

Keep in mind that "One with Nature" in the BM tree, is way more valuable now.

Offline
Old 02/23/11, 10:46 AM   #25010
kuhvacako
Glass Joe
 
Worgen Hunter
 
Turalyon (EU)
Doing some quick trail runs on female dwarf I have found dropping Si'c Em and the one point I had in Bestial Discipline for 3/3 OwN is the go for max dps. Ofc the way to go for max dps in burn phases is to drop CA rather than Sic Em.

Great Britain Offline
Old 02/23/11, 10:46 AM   #25011
Arrox
Glass Joe
 
Night Elf Priest
 
Argent Dawn (EU)
Here are logs of me as disc in 25man raid.

Part heroic kills and part normal.

I am most of the time raid healing.

World of Logs - Real Time Raid Analysis

I hope it can help people determine if raid healing as disc is worthwhile.

E Pluribus Unmn!

You can cut my wings away, but i will never forget how it was to fly!

Offline
Old 02/23/11, 11:25 AM   #25012
S7rider
Glass Joe
 
Night Elf Hunter
 
Stormrage (EU)
Now that we are going to be placing 3 points into one with nature, which would be the preferable option: 3 points in besital discipline and 1 in frenzy or 2 in each?

Offline
Old 02/23/11, 12:17 PM   #25013
Flyx
Glass Joe
 
Night Elf Death Knight
 
Outland (EU)
As everyone knows our runes as frost sometimes (nearly always) jump back half a second when using Rime.

I think I might have figured out why.


When you use howling blast, the rune regen rate is updated based on your Spell Haste, due to howling blast being considered a spell. This is always going to be slower than melee haste due to Icy Talons etc, so it pushes our runes back as the game thinks we have just lost a haste buff and so need to lose some time on runes. When you use a melee attack, like obliterate, the game then goes back to judging rune regen rate based on melee haste, and so we get the same rune regen as normal back.

It's hard to try and confirm this, but it's the only explanation I can come up with. If anyone can do some tests further to help confirm then maybe blizzard will be able to implement a fix.

Last edited by Flyx : 02/23/11 at 12:57 PM.

Offline
Old 02/23/11, 12:22 PM   #25014
Sneakyßstrd
Glass Joe
 
Sneakyßstrd's Avatar
 
Human Rogue
 
Ysera
I am having some serious personal gear choice issues as far as the set bonuses go. I am having a hard time giving up certain pieces to make bonuses. For instance, I have the gloves and the shoulders, but after using them for a week of raiding I felt that I did worse. I decided to break the bonus and put Poison Protocol shoulders back on. After reforging it gave me the same base agility but with an increase to mastery about 200 points.

Now I have the tier helm and I'm thinking after I get the chest or legs, that I will dawn all this equipment for the 4 piece bonus. My question is, are the bonuses together worth losing a whole lot of mastery? Or should the helm be my off piece? I have the spreadsheet, I've read every forum on here, but losing all that mastery is a hard pill to swallow. Some advice concerning this would be very helpful. Mind you, this is all concerning non-heroic gear, as my guild is just beginning to tackle heroics.

Offline
Old 02/23/11, 1:10 PM   #25015
MrT
Glass Joe
 
Tauren Warrior
 
Термоштепсель (EU)
Is 372 T11 chest a part of BiS set? Or there's any better chests ingame (want to keep 4T11)? I believe BiS is head, chest, legs and hands + great ettin pauldrons, am I right?

Last edited by MrT : 02/23/11 at 1:19 PM.

Offline
Old 02/23/11, 1:20 PM   #25016
Fujitive
 
Orc Warrior
 
Shattered Hand
Hit cap

Has anyone tried the high hit cap? I'm sitting at 23.6 hit now.

Offline
Old 02/23/11, 1:24 PM   #25017
Schmoopy
Von Kaiser
 
Schmoopy's Avatar
 
Gnome Rogue
 
Stormrage
Originally Posted by Sneakyßstrd View Post
I am having some serious personal gear choice issues as far as the set bonuses go. I am having a hard time giving up certain pieces to make bonuses. For instance, I have the gloves and the shoulders, but after using them for a week of raiding I felt that I did worse. I decided to break the bonus and put Poison Protocol shoulders back on. After reforging it gave me the same base agility but with an increase to mastery about 200 points.

Now I have the tier helm and I'm thinking after I get the chest or legs, that I will dawn all this equipment for the 4 piece bonus. My question is, are the bonuses together worth losing a whole lot of mastery? Or should the helm be my off piece? I have the spreadsheet, I've read every forum on here, but losing all that mastery is a hard pill to swallow. Some advice concerning this would be very helpful. Mind you, this is all concerning non-heroic gear, as my guild is just beginning to tackle heroics.
It seems like you answered your own question there. Whether or not you can "swallow the pill" is up to you. But if shadowcraft says you'll do more dps with the set bonuses at the loss of mastery then that is the best information you can find, but it only applies to the long run averages. In any given boss fight RNG can make it "feel" like one set up is clearly on top of the other.

Personally I can't wait to pick up tier shoulders so I can get my set bonus. Mastery is a nice stat and all, but going by shadowcraft the lead it has over my other stats is very narrow.

So you might find the pill easier to swallow if you went and looked at what your current EP value is for mastery. Maybe its not as high as you think it is.

Offline
Old 02/23/11, 4:42 PM   #25018
Dreadeddwarf
 
Dwarf Hunter
 
Eldre'Thalas
hit

maybe i missed it some where, but what should the Hit # be for a Raid ready SV Hunter?

United States Offline
Old 02/23/11, 4:51 PM   #25019
Teer
Von Kaiser
 
Blood Elf Hunter
 
Sunstrider (EU)
Originally Posted by Dreadeddwarf View Post
maybe i missed it some where, but what should the Hit # be for a Raid ready SV Hunter?
First page > stats > hit.

Offline
Old 02/23/11, 7:09 PM   #25020
Infrantic
Glass Joe
 
Blood Elf Hunter
 
Defias Brotherhood (EU)
I was reading a bit on Warcrafthuntersunion.com and Frostheim was saying that some people had sent him data about the Darkmoon Card Hurricane, that it indeed procced off the physical hit chance rather than spell hit, and this might mean that it will rank as one of the, if not the best in slot trinket for Tier 11.
Does anyone have any numbers or information on the numbers of DMC: Hurricane? Is it actually worth getting rather than Fluid Death and Essence of the Cyclone?

Offline
 

Go Back   Elitist Jerks » The Dung Heap » The Dung Heap

Thread Tools

« For Jazdia | - »