Showing Posts For mav.3904:

WvW- Condi Front Line - Feedback

in Revenant

Posted by: mav.3904

mav.3904

Hi,

I’m currently working on a pure condi build for WvW: http://en.gw2skills.net/editor/?vlIQNAS5nn3geNSuQvJRboJlsP0jS4I6SJ4EtrklTlRNjQOJNgEWwe93vH-ThyCABOcQAlgAcBAO+IAkiuBsUeYsJOh2fwH1fo4BAckSMSBAzcA-e

I think direct damage (Zerker) is a better choice for the zerg but i like Mallyx more then the other legends

Now I have some questions

  • Does it make sense to use a condi build at the WvW-Zerg (Front Line)?
  • Are ~3200 Armor and ~19k HP too much?
  • Do you have any suggestions to optimize my build?

regards
mav

List of apps/websites using the API

in API Development

Posted by: mav.3904

mav.3904

Hi

this is my Account Android App für GW2: https://play.google.com/store/apps/details?id=de.mav.accountwatch

regards
mav

New Android traiding app

in Community Creations

Posted by: mav.3904

mav.3904

Hi,

I am very proud to present my first Android App.

Account Watch for Guild Wars 2

The trading post is your second home? Do you want to know which items you just sold in game or which order has been received? Then the Account Watch for Guild Wars 2 is just the thing for you!

The following features are available for you:

Guild Wars 2 News Reader
List of items that you want to buy
List of items that you want to sell
List of items you’ve bought
List of items that you sold
Choose between 2 designs
Optimized display for tablets
Languages: English and German

Coming up next:

Nothing is from the table. ;-) Currently there are a lot of new features in the pipeline. The feature list above is just the beginning. So please stay tuned and give me some feedback. If you want to support me please rate my app with a few stars, write comments in the google play store or share the app link via social media.

Who am I:

Just call me mav. I play Guild Wars since 2006 and it’s still my favorite game. I am gamer and software developer from Germany. In the past years I have done a lot of things around Guild Wars like fanart, a podcast (just 1 episode for Eye of the North in 2007) or articles on websites. The project “Account Watch for Guild Wars 2” is really exciting for me and I hope some of you may like it.

Google Play Store: https://play.google.com/store/apps/details?id=de.mav.accountwatch

best regards and cu in game

mav

(edited by mav.3904)

Cross-Origin: v2/transactions

in API Development

Posted by: mav.3904

mav.3904

Hi,

this is my first try to make an app using the GW2 API. Every time i tested my code in Firefox a Cross-Origin error pops up.

This is my simple code


      var config = {
		headers: {
			'Access-Control-Allow-Origin': '*',
			'Authorization': 'Bearer TOKEN ID'
			
		}
	};
	
	$http.get('https://api.guildwars2.com/v2/commerce/transactions/history/sells',config)
	.success(function(data) {
		$scope.output = "success";
	}).error(function (data) {
		$scope.output = "Request failed";
		console.log(JSON.stringify(data));
	});

If i use jsonp instead of method get i get a 403 forbidden as response.

Does anyone have an idea what I’m doing wrong?

p.s.
I build my apps with the ionic framework and angularJS.

best regards
mav