(edited by Naranek.2570)
Showing Posts For Naranek.2570:
It’s sad that a server that is running on the top of the match up needs to use hacks to kick the underdog.
Good job TC. Specifically EP and CERN. Nice job with those zoom hacks to take Hills and NW Tower on our home bl.
Funny, EP was complaining that EBay was doing the zoom hack.
If we’re talking about the same event. I was the only one on the ac and no matter how hard I tried, I just couldn’t make it reach OVER the wall to hit your ac. Your group, however, did not have that issue.
Uh? we didn’t take any AC with another AC in hills, we only had catapults on inner and rams on outter.
Do you realize we had 5+ necros and we can take any AC near the walls right ? no need for AC, it is faster with necros. L2NECRO :-P
Edit: I just remember we had to put an AC before going to lord rooms, you guys had a ballista just in the way, and that doesn’t require skills to take it down.
Hi TC!!!!
“I feel lag coming in”
Upgrade the wood PC?
Hey EP, you guys are really good. It’s like Agg but with necros and blindspam. Cool.
Thanks for showing up on the open field, It is always exciting to fight like that
Hey Naranek,
I doubt you will see any negative outcomes to that report and it’s very obvious that Necros can’t drop portals.
Sorry for the report but as you can see there was a lot happening. Hopefully you accept my apology.
Thats ok, I understand now, it happens
Few of my guildies (EP) sent screenshots/logs to ANet in hopes that it gets fixed, we have a vague idea of what happened and will avoid it until fixed, it can’t be discussed on the forums as you may know.
That’s so awful you guys.
You are already completely pounding us in to the dirt and then stuff like that happens to add insult to injury.
Then we get spawn camped on top of it.
Really shameful. I was looking forward to this match-up and now its complete garbage in my mind. The apology from you guys doesn’t make up for the other 30 players that enjoyed the reward and essentially gloated.
I hope you enjoy the rest of the week. At this point there really isn’t much left for you guys to prove.
In case you want to see it from our side, I’ll be posting the video for you shortly.
GG
I’m the asura you reported as botting (not sure why), I got ported inside the gate, was a little confused, ran to the stairs all the way out of the keep.
I play a necro (as you can see I have signet of locust up), when I was running outside I saw the portal and started yelling people to NOT take the portal, sadly they did
You ran next to the guy that opened the portal, I couldn’t see the guild tag but if you have a better quality recording maybe you can, we don’t like that kind of attitude on our server either.
See you in the field !
I did a Ruby wrapper, planning on doing more but this is something people can start using :-)
https://github.com/koshrf/rgw2
Note: it accepts all SSL certificates, this is something that need to be fixed (by whoever is going to use it).
I did a Ruby wrapper, planning on doing more but this is something people can start using :-)
- Language: Ruby
- Admin: Naranek.2570
- URL: https://github.com/koshrf/rgw2
(edited by Naranek.2570)
Hi,
Whats the point of “lang” on recipe_details.json ? so far I’ve tried 80+ different items and none of them have a description at all or something that requires a localization, have anyone find any ?
I’m just trying to finish my wrapper and I just notice that I can’t test the localization on recipe_details.json because I can’t find one!
Just an update, more example code, nothing fancy.
BTW, I wish they didn’t put arrays inside hashes inside more hashes when you retrieve the item_details hash, also arrays with keys and arrays without keys….. not cool anet! not cool! >.>
EDIT: I just did more code to share so I’ll just update this post atm :-)
NOTE: run this on IRB so you can track the code easier
NOTE2: You want json gem (gem install json)
WARNING I’m trusting all SSL certs, you should NOT do that if you want to do something bigger. If I have the time I may post how to get their certs and use them in the right way. WARNING
I was just testing the API with ruby and this is a basic idea of how to get access to it:
=SIMPLE TEST=
require ’net/http’
require ’net/https’
uri = URI.parse(“https://api.guildwars2.com/”)
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
http.get(“/v1/items.json”)
response = http.get(“/v1/items.json”)
response.body
==MORE CODE (print item_details)=
require 'net/http'
require 'net/https'
require 'json'
#Just some paths I'll use
items_list = "/v1/items.json"
item_details = "/v1/item_details.json?item_id="
#I need this method to recurse through the item_details hash, need better formating
def item_details_print(item_details)
if item_details.is_a?(Hash) || item_details.is_a?(Array) then
item_details.each do |key, value|
if value.nil?
puts " #{value}"
item_details_print(key)
else
print "#{key} : "
item_details_print(value)
end
end
else
print "#{item_details} \n"
end
end
#Connection to the API server
uri = URI.parse("https://api.guildwars2.com/")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
##JSON to Ruby hash: items.json
response_list = JSON.parse(http.get(items_list).body)
#Print the first item. Just uncomment the puts
#WARNING: do not do a response["items"] on a console
#It will take forever to print it on the screen sometimes.
puts response_list["items"][1]
#Ok, we have the items list, details now!
details = item_details + response_list["items"][1].to_s
response_details = JSON.parse(http.get(details).body)
#Lets see thoses details
item_details_print(response_details)
===
I’ll probably be doing some more code, I kinda want a “console” program when playing since my 3rd screen is a linux machine :D
I’ll post around here if I do more.
Happy coding!
(edited by Naranek.2570)