apoch on master
/v2/pvp/seasons: add .ranks. Merge pull request #535 from ar… (compare)
apoch on master
add missing name tag to /v2/rac… Merge pull request #609 from Th… (compare)
Map name Event name Event ID Coordinates Level Flags
1316 Mists Rift Defeat the Riftstalker to close the rift. 72921F19-7984-4954-A9EA-3C35D5188635 [3261,13765] 80 ["group_event","map_wide"]
1316 Mists Rift Escape the collapsing rift! 1E3B3CA9-B40A-4839-8889-636B14B87C74 [3261,13765] 80 ["group_event","map_wide"]
Map ID | Map name | Event name | Event ID | Coordinates | Level | Flags |
---|---|---|---|---|---|---|
1316 | Mists Rift | Defeat the Riftstalker to close the rift. | 72921F19-7984-4954-A9EA-3C35D5188635 | [3261,13765] | 80 | ["group_event","map_wide"] |
1316 | Mists Rift | Escape the collapsing rift! | 1E3B3CA9-B40A-4839-8889-636B14B87C74 | [3261,13765] | 80 | ["group_event","map_wide"] |
SAB API
by shadowolflo.6870 in API DevelopmentHi, can you update the API for SAB with boomerang and Mega Bomb ?
Chat API
by Raseus.2543 in API DevelopmentI know it is an old wish that we get access to a chat API and was asked very often but I want to know if anything has changed.
Is a Chat API planned or is there any other way to access the chat logs because this would already help very much. I mean lets face it the gw2 chat works but that's it and if you are someone like me who does RP with 15+ people in the say channel you can easy miss something or lose track. That is why I think we could create a better chatbox with the chat logs or a chat api.
With this we could create a chat window where you can highlight certain words or character names so it is easier to keep track of the chat.
I'm looking for help exposing the appearance portion of the character data. The data itself is stored pretty compactly on the character record as an array. What each value in the array means depends on the race+sex combination of the character.
Here's how the data looks for my test character:
[ 100, 0, 8, 50.2, 4, 0, 50.2, 50.2, 50.2, 50.2, 50.2, 50.2, 6, 0, 0, 16, 9, 0,
50.2, 50.2, 50.2, 50.2, 50.2, 50.2, 50.2, 50.2, 50.2, null, 3.14, null, 62, 4, 8,
50.2, 50.2, 50.2, 50.2, 0, 50.2, 50.2, 50.2, 50.2, 50.2, 50.2, 7 ]
I can modify the v2/races/:race
endpoint to include an interpretation of these numbers per-sex-per-index.
Maybe something like:
{
...,
"appearance": {
"female": [
{
"name": "Hair Style",
"category": "Hair Styles & Color",
"type": "PictureChoice"
},
{
"name": "Hair Color",
"category": "Hair Styles & Color",
"type": "ColorPalette",
"colors": [
{
"brightness": -13,
"contrast": 1,
"hue": 275,
"saturation": 0.0234375,
"lightness": 1.09375
},
{
"brightness": -13,
"contrast": 1,
"hue": 275,
"saturation": 0.0234375,
"lightness": 1.09375
},
...
]
},
...
],
"male": [...]
}
}
Finally, the real question: I can expose the raw per-character array in the next day or two, but the static data will take weeks for some backend server changes to make it through. Should I
I can argue for both options, so I'm asking here.