WoW Armory EUROPE

Hi !!

I was trying to use your module, but I found out that it is set up to only look to wowarmory US, and not EU.

Would it be complicated to add a dropbox to select in which continent the user is playing?

If not, can you tell me where I can modify the code so it will look up at eu.wowarmory.com and not wowarmory.com?

Many thanks

EU modifcation

Good idea.  I'll add it to the "to do" list.  For now, you can modify this line in wowcharsheet.update.inc

line 14:

$url = sprintf('http://www.wowarmory.com/character-sheet.xml?r=%s&n=%s', urlencode($realm),urlencode(($name)));
$url = sprintf('http://eu.wowarmory.com/character-sheet.xml?r=%s&n=%s', urlencode($realm),urlencode(($name)));

I'm just guessing that's how you access EU armory toons.

wowitemcache.module also references www.wowarmory.com

line 285: $url = 'http://www.wowarmory.com/item-tooltip.xml?i=' . $itemid;

 

Good luck!