View Single Post
Old 04/28/08, 12:59 PM   #1907 (permalink)
Cheeky
Bastard
 
Cheeky
Troll Hunter
 
No WoW Account
Originally Posted by karvin View Post
Hi@ All,

To Connect via Proxy try that it works for me:

Function GetData(url, searchterm)
Set objXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP.4.0")
objXMLHTTP.Open "GET", url, False
objXMLHTTP.SetRequestHeader "User-Agent", "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-GB; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4"
objXMLHTTP.SetRequestHeader "Content-Type", "text/xml"
objXMLHTTP.SetRequestHeader "Accept-Language", "en"
objXMLHTTP.SetProxy 2, "proxy.lol.de:8080" ' <- Your Proxy!
objXMLHTTP.Send ""
Set xmlPG = objXMLHTTP.responseXML 'Get the XML in xmlPg
If xmlPG Is Nothing Or xmlPG.documentElement Is Nothing Then
Set GetData = Nothing
Else
Set GetData = xmlPG.documentElement.selectNodes(searchterm)
End If
Set objXMLHTTP = Nothing
Set xmlPG = Nothing
End Function

Have Fun.
Thanks, I'll use this and provide a place to supply a proxy server.

Originally Posted by peterk0 View Post
Cheeky, I do believe internal cooldown is 60 seconds. I did just checked all the old combat logs, from brutallus trying, and it never proced less then 60 sec from the previous buff. It's true also according to Proc Rate Determination thread, here on EJ forums.
My version here at work has a 60 second cooldown, with 10% chance on proc. I may have been looking at the wrong item when I posted above. I'm seeing a proc every 70.5s and an average benefit just under 20 AP.

 
User is offline.
Reply With Quote