Planetside-2-API-Tracker icon indicating copy to clipboard operation
Planetside-2-API-Tracker copied to clipboard

Non-existent `facility_id`/`map_region` emitted under `FacilityControl` events during continent locks

Open fredkilbourn opened this issue 3 years ago • 0 comments

Minor issue of annoyance, but I have the following facilities that are referenced by FacilityControl events during continent locks.

I cannot find any definition or reference to these facilities from any official or unofficial data source, and it would be nice to either have them added so they can be looked up, or stopped from emitting via the streaming API.

List of missing facilities:

//{##} indicates facility_id
Map region missing: Amerish — {400127}
Map region missing: Indar — {253}
Map region missing: Oshur — {400389}
Map region missing: Oshur — {400408}

Listening with the following subscription:

{
  eventNames: [ 'FacilityControl', 'ContinentUnlock', 'ContinentLock' ],
  logicalAndCharactersWithWorlds: false,
  worlds: [ '13', '17', '1', '10' ]
}

Example events:

//these have been read into my own object types, but should be clear enough
{
  facility_id: 400389,
  outfit_id: null,
  old_faction_id: 2,
  new_faction_id: 1,
  duration_held: 65586,
  event_name: 'FacilityControl',
  timestamp: 2022-02-20T15:30:27.000Z,
  world_id: 13,
  zone_id: 344,
  zone_id_base: 344,
  zone_id_instance: null
}
{
  facility_id: 400408,
  outfit_id: null,
  old_faction_id: 2,
  new_faction_id: 1,
  duration_held: 65586,
  event_name: 'FacilityControl',
  timestamp: 2022-02-20T15:30:27.000Z,
  world_id: 13,
  zone_id: 344,
  zone_id_base: 344,
  zone_id_instance: null
}

fredkilbourn avatar Dec 09 '22 16:12 fredkilbourn